|
|
@@ -3,34 +3,34 @@
|
|
|
<template #header>
|
|
|
<DropdownMenu :close-on-click-outside="false" style="z-index:1;">
|
|
|
<DropdownItem v-model="reportTypeValue" :options="reportType" @change="onChange" />
|
|
|
- <DropdownItem ref="dropdownItemRef" :title="currentDate.length ? currentDate.join('-') : '结算日期'"
|
|
|
+ <DropdownItem ref="dropdownItemRef" :title="currentDate.length ? currentDate.join('-') : $t('report.reckondate')"
|
|
|
@open="showPicker = true" />
|
|
|
</DropdownMenu>
|
|
|
</template>
|
|
|
<div style="padding-bottom: 50px;">
|
|
|
- <CellGroup title="账户信息">
|
|
|
- <Cell title="账号" :value="currentAccount.accountid" />
|
|
|
- <Cell title="名称" :value="userInfo.customername" />
|
|
|
- <Cell title="币种" value="RMB" />
|
|
|
- <Cell title="结算日期" :value="tradeDate" />
|
|
|
+ <CellGroup :title="$t('report.accountinfo')">
|
|
|
+ <Cell :title="$t('report.accountid')" :value="currentAccount.accountid" />
|
|
|
+ <Cell :title="$t('report.customername')" :value="userInfo.customername" />
|
|
|
+ <Cell :title="$t('report.currency')" value="RMB" />
|
|
|
+ <Cell :title="$t('report.tradedate')" :value="tradeDate" />
|
|
|
</CellGroup>
|
|
|
- <CellGroup title="资金信息">
|
|
|
- <Cell title="期初余额" :value="handleAmount(taaccount?.balance)" />
|
|
|
- <Cell title="银行入金" :value="handleAmount(taaccount?.inamount)" />
|
|
|
- <Cell title="银行出金" :value="handleAmount(taaccount?.outamount)" />
|
|
|
- <Cell title="转让损益" :value="handleAmount(taaccount?.closepl)" />
|
|
|
- <Cell title="结算损益" :value="handleAmount(taaccount?.reckonpl)" />
|
|
|
- <Cell title="贸易服务费" :value="handleAmount(taaccount?.paycharge)" />
|
|
|
- <Cell title="期末余额" :value="handleAmount(taaccount?.currentbalance)" />
|
|
|
- <Cell title="占用资金" :value="handleAmount(taaccount?.oriusedmargin)" />
|
|
|
- <Cell title="可用资金" :value="handleAmount(taaccount?.avaiablemoney)" />
|
|
|
- <Cell title="冻结资金" :value="handleAmount(taaccount?.orioutamountfreeze)" />
|
|
|
- <Cell title="可出资金" :value="handleAmount(taaccount?.avaiableoutmoney)" />
|
|
|
+ <CellGroup :title="$t('report.fundsinfo')">
|
|
|
+ <Cell :title="$t('account.balance2')" :value="handleAmount(taaccount?.balance)" />
|
|
|
+ <Cell :title="$t('account.inamount')" :value="handleAmount(taaccount?.inamount)" />
|
|
|
+ <Cell :title="$t('account.outamount')" :value="handleAmount(taaccount?.outamount)" />
|
|
|
+ <Cell :title="$t('account.closepl')" :value="handleAmount(taaccount?.closepl)" />
|
|
|
+ <Cell :title="$t('account.reckonpl')" :value="handleAmount(taaccount?.reckonpl)" />
|
|
|
+ <Cell :title="$t('account.paycharge')" :value="handleAmount(taaccount?.paycharge)" />
|
|
|
+ <Cell :title="$t('account.currentbalance')" :value="handleAmount(taaccount?.currentbalance)" />
|
|
|
+ <Cell :title="$t('account.oriusedmargin')" :value="handleAmount(taaccount?.oriusedmargin)" />
|
|
|
+ <Cell :title="$t('account.availableFunds2')" :value="handleAmount(taaccount?.avaiablemoney)" />
|
|
|
+ <Cell :title="$t('account.orioutamountfreeze')" :value="handleAmount(taaccount?.orioutamountfreeze)" />
|
|
|
+ <Cell :title="$t('account.avaiableoutmoney')" :value="handleAmount(taaccount?.avaiableoutmoney)" />
|
|
|
</CellGroup>
|
|
|
- <CellGroup title="报表明细">
|
|
|
- <Cell title="出入金明细" is-link @click="openComponent('bank')" />
|
|
|
- <Cell title="订单汇总" is-link @click="openComponent('position')" />
|
|
|
- <Cell title="成交明细" is-link @click="openComponent('trade')" />
|
|
|
+ <CellGroup :title="$t('account.reportdetail')">
|
|
|
+ <Cell :title="$t('account.inoutamountdetail')" is-link @click="openComponent('bank')" />
|
|
|
+ <Cell :title="$t('account.ordersumary')" is-link @click="openComponent('position')" />
|
|
|
+ <Cell :title="$t('account.tradedetail')" is-link @click="openComponent('trade')" />
|
|
|
</CellGroup>
|
|
|
<Popup position="bottom" v-model:show="showPicker" round @click-overlay="dropdownItemRef.toggle()">
|
|
|
<DatePicker v-model="currentDate" :max-date="new Date()" :columns-type="columnsType"
|