|
|
@@ -214,31 +214,31 @@ const taDetailProps = [
|
|
|
|
|
|
/// 出入金明细
|
|
|
const logsTableColumns = shallowRef<Model.TableColumn[]>([
|
|
|
- { field: 'updatetime', label: t('report.bank.updatetime') },
|
|
|
- { field: 'executetypedisplay', label: t('report.bank.executetypedisplay') },
|
|
|
- { field: 'amount', label: t('report.bank.amount') },
|
|
|
- { field: 'applystatusdisplay', label: t('report.bank.applystatusdisplay') },
|
|
|
+ { field: 'updatetime', label: 'report.bank.updatetime' },
|
|
|
+ { field: 'executetypedisplay', label: 'report.bank.executetypedisplay' },
|
|
|
+ { field: 'amount', label: 'report.bank.amount' },
|
|
|
+ { field: 'applystatusdisplay', label: 'report.bank.applystatusdisplay' },
|
|
|
])
|
|
|
|
|
|
/// 持仓汇总
|
|
|
const dpostionsTableColumns = shallowRef<Model.TableColumn[]>([
|
|
|
- { field: 'goodsdisplay', label: t('report.position.goodsdisplay') },
|
|
|
- { field: 'buyorselldisplay', label: t('report.position.buyorselldisplay') },
|
|
|
- { field: 'curpositionqty', label: t('report.position.curpositionqty') },
|
|
|
- { field: 'frozenqty', label: t('report.position.frozenqty') },
|
|
|
- { field: 'curholderamount', label: t('report.position.curholderamount') },
|
|
|
- { field: 'avagepricedisplay', label: t('report.position.avagepricedisplay') },
|
|
|
+ { field: 'goodsdisplay', label: 'report.position.goodsdisplay' },
|
|
|
+ { field: 'buyorselldisplay', label: 'report.position.buyorselldisplay' },
|
|
|
+ { field: 'curpositionqty', label: 'report.position.curpositionqty' },
|
|
|
+ { field: 'frozenqty', label: 'report.position.frozenqty' },
|
|
|
+ { field: 'curholderamount', label: 'report.position.curholderamount' },
|
|
|
+ { field: 'avagepricedisplay', label: 'report.position.avagepricedisplay' },
|
|
|
])
|
|
|
|
|
|
/// 成交明细
|
|
|
const tradeDetailsTableColumns = shallowRef<Model.TableColumn[]>([
|
|
|
- { field: 'goodsdisplay', label: t('report.trade.goodsdisplay') },
|
|
|
- { field: 'buyorselldisplay', label: t('report.trade.buyorselldisplay'), width: 100 },
|
|
|
- { field: 'tradeqty', label: t('report.trade.tradeqty'), width: 80 },
|
|
|
- { field: 'tradeprice', label: t('report.trade.tradeprice'), width: 80 },
|
|
|
- { field: 'tradeamount', label: t('report.trade.tradeamount'), width: 100 },
|
|
|
- { field: 'charge', label: t('report.trade.charge'), width: 80 },
|
|
|
- { field: 'tradetime', label: t('report.trade.tradetime') },
|
|
|
+ { field: 'goodsdisplay', label: 'report.trade.goodsdisplay' },
|
|
|
+ { field: 'buyorselldisplay', label: 'report.trade.buyorselldisplay', width: 100 },
|
|
|
+ { field: 'tradeqty', label: 'report.trade.tradeqty', width: 80 },
|
|
|
+ { field: 'tradeprice', label: 'report.trade.tradeprice', width: 80 },
|
|
|
+ { field: 'tradeamount', label: 'report.trade.tradeamount', width: 100 },
|
|
|
+ { field: 'charge', label: 'report.trade.charge', width: 80 },
|
|
|
+ { field: 'tradetime', label: 'report.trade.tradetime' },
|
|
|
])
|
|
|
|
|
|
const selectList = [
|