edit
This commit is contained in:
@ -30,7 +30,7 @@
|
||||
<nz-tab nzTitle="全部"></nz-tab>
|
||||
</nz-tabset>
|
||||
|
||||
<st #st [data]="service.$mock_url" [columns]="columns"
|
||||
<st #st [data]="service.$api_get_abnormal_gold_page" [columns]="columns"
|
||||
[req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }, process: beforeReq }"
|
||||
[res]="{ reName: { list: 'data.records', total: 'data.total' } }"
|
||||
[page]="{ show: true, showSize: true, pageSizes: [10, 20, 30, 50, 100, 200, 300, 500, 1000] }"
|
||||
|
||||
@ -76,30 +76,38 @@ export class AbnormalGoldComponent implements OnInit {
|
||||
hidden: true
|
||||
}
|
||||
},
|
||||
orderSn: {
|
||||
paySerialNumber: {
|
||||
type: 'string',
|
||||
title: '银行流水号',
|
||||
ui: {
|
||||
placeholder: '请输入'
|
||||
}
|
||||
},
|
||||
receiveName: {
|
||||
ltdid: {
|
||||
type: 'string',
|
||||
title: '网络货运人',
|
||||
enum: [{ label: '全部', value: '全部' }],
|
||||
ui: {
|
||||
widget: 'select',
|
||||
placeholder: '请选择'
|
||||
placeholder: '请选择',
|
||||
allowClear: true,
|
||||
asyncData: () => this.service.getNetworkFreightForwarder()
|
||||
}
|
||||
},
|
||||
orderSn22: {
|
||||
bankType: {
|
||||
type: 'string',
|
||||
title: '银行类型',
|
||||
enum: [
|
||||
{ label: '全部', value: '' },
|
||||
{ label: '平安银行', value: '1' },
|
||||
{ label: '浦发银行', value: '2' }
|
||||
],
|
||||
ui: {
|
||||
placeholder: '请输入'
|
||||
}
|
||||
widget: 'select',
|
||||
placeholder: '请选择',
|
||||
},
|
||||
default: ''
|
||||
},
|
||||
orderSn2: {
|
||||
transferBankAccount: {
|
||||
type: 'string',
|
||||
title: '付款账户',
|
||||
ui: {
|
||||
@ -109,7 +117,7 @@ export class AbnormalGoldComponent implements OnInit {
|
||||
}
|
||||
}
|
||||
},
|
||||
orderSn221: {
|
||||
transferBankCardNumber: {
|
||||
type: 'string',
|
||||
title: '付款账号',
|
||||
ui: {
|
||||
@ -119,7 +127,7 @@ export class AbnormalGoldComponent implements OnInit {
|
||||
}
|
||||
}
|
||||
},
|
||||
orderS2n221: {
|
||||
transferBankOpenName: {
|
||||
type: 'string',
|
||||
title: '付款银行',
|
||||
ui: {
|
||||
@ -129,13 +137,14 @@ export class AbnormalGoldComponent implements OnInit {
|
||||
}
|
||||
}
|
||||
},
|
||||
createTime: {
|
||||
transferDate: {
|
||||
title: '转账时间',
|
||||
type: 'string',
|
||||
ui: {
|
||||
widget: 'date',
|
||||
mode: 'range',
|
||||
widget: 'sl-from-to-search',
|
||||
format: 'yyyy-MM-dd',
|
||||
placeholder: '请选择',
|
||||
nzShowTime: true,
|
||||
visibleIf: {
|
||||
expand: (value: boolean) => value
|
||||
}
|
||||
@ -147,17 +156,17 @@ export class AbnormalGoldComponent implements OnInit {
|
||||
|
||||
private initST(): STColumn[] {
|
||||
return [
|
||||
{ title: '银行流水号', index: 'no', width: 150 },
|
||||
{ title: '网络货运人', index: 'callNo', width: 120 },
|
||||
{ title: '银行类型', index: 'callNo', width: 100 },
|
||||
{ title: '银行流水号', index: 'paySerialNumber', width: 150 },
|
||||
{ title: '网络货运人', index: 'ltdid', width: 120 },
|
||||
{ title: '银行类型', index: 'callNo', width: 100, type: 'enum', enum: { 1: '平安银行', 2: '浦发银行' } },
|
||||
{ title: '资金总账号', index: 'callNo', width: 120 },
|
||||
{ title: '充值金额', index: 'callNo', width: 100 },
|
||||
{ title: '付款账户', index: 'callNo', width: 100 },
|
||||
{ title: '付款账号', index: 'callNo', width: 100 },
|
||||
{ title: '付款银行', index: 'callNo', width: 100 },
|
||||
{ title: '转账时间', index: 'callNo', type: 'date', width: 150 },
|
||||
{ title: '转账备注', index: 'callNo', width: 100 },
|
||||
{ title: '操作人', index: 'callNo', width: 90 },
|
||||
{ title: '充值金额', index: 'rechargeAmount', width: 100 },
|
||||
{ title: '付款账户', index: 'transferBankAccount', width: 100 },
|
||||
{ title: '付款账号', index: 'transferBankCardNumber', width: 100 },
|
||||
{ title: '付款银行', index: 'transferBankOpenName', width: 100 },
|
||||
{ title: '转账时间', index: 'transferDate', type: 'date', width: 150 },
|
||||
{ title: '转账备注', index: 'rechargeRemark', width: 100 },
|
||||
{ title: '操作人', index: 'rechargeName', width: 90 },
|
||||
{ title: '操作时间', index: 'callNo', type: 'date', width: 150 },
|
||||
{ title: '状态', index: 'callNo', width: 90 },
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user