|
@@ -25,6 +25,7 @@ export const columns: BasicColumn[] = [
|
|
|
title: '预付款日期(expect payment date)',
|
|
|
align:"center",
|
|
|
ellipsis:true,
|
|
|
+ width:250,
|
|
|
dataIndex: 'expectPaymentDate'
|
|
|
},
|
|
|
{
|
|
@@ -45,11 +46,12 @@ export const columns: BasicColumn[] = [
|
|
|
align:"center",
|
|
|
dataIndex: 'approveMoney',
|
|
|
ellipsis:true,
|
|
|
+ width:250,
|
|
|
+
|
|
|
},
|
|
|
{
|
|
|
title: '币种(curreny)',
|
|
|
align:"center",
|
|
|
- width:250,
|
|
|
ellipsis:true,
|
|
|
dataIndex: 'curreny'
|
|
|
},
|
|
@@ -69,3 +71,107 @@ export const columns: BasicColumn[] = [
|
|
|
dataIndex: 'payment',
|
|
|
},
|
|
|
];
|
|
|
+
|
|
|
+export const paymentDetailsColumns: JVxeColumn[] = [
|
|
|
+ {
|
|
|
+ title: '付款申请号(billCode)',
|
|
|
+ key: 'billCode',
|
|
|
+ type: JVxeTypes.normal,
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '申请日期(bill date)',
|
|
|
+ key: 'billDate',
|
|
|
+ type: JVxeTypes.normal,
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '申请金额(approve money)',
|
|
|
+ key: 'approveMoney',
|
|
|
+ type: JVxeTypes.normal,
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '币种(currency)',
|
|
|
+ key: 'currency',
|
|
|
+ type: JVxeTypes.normal,
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '付款编号(billCode)',
|
|
|
+ key: 'billCode',
|
|
|
+ type: JVxeTypes.normal,
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '付款日期(billDate)',
|
|
|
+ key: 'billDate',
|
|
|
+ type: JVxeTypes.normal,
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '付款金额(payment)',
|
|
|
+ key: 'payment',
|
|
|
+ type: JVxeTypes.normal,
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '币种(currency)',
|
|
|
+ key: 'currency',
|
|
|
+ type: JVxeTypes.normal,
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+]
|
|
|
+
|
|
|
+export const commissionDetailsColumns: JVxeColumn[] = [
|
|
|
+ {
|
|
|
+ title: '订单编号(billCode)',
|
|
|
+ key: 'billCode',
|
|
|
+ type: JVxeTypes.normal,
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '单据日期(bill date)',
|
|
|
+ key: 'billDate',
|
|
|
+ type: JVxeTypes.normal,
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '订单金额(order money)',
|
|
|
+ key: 'orderMoney',
|
|
|
+ type: JVxeTypes.normal,
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '收款金额(collected money)',
|
|
|
+ key: 'collectedMoney',
|
|
|
+ type: JVxeTypes.normal,
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '佣金率(commission rate)',
|
|
|
+ key: 'commissionRate',
|
|
|
+ type: JVxeTypes.normal,
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '佣金(commission)',
|
|
|
+ key: 'commission',
|
|
|
+ type: JVxeTypes.normal,
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+]
|