浏览代码

bug 修复

lilei 4 年之前
父节点
当前提交
4142c70cb3

+ 1 - 1
src/views/financialManagement/companyCollectionPayment/detail.vue

@@ -68,7 +68,7 @@ export default {
         { title: '单据号', dataIndex: 'bizNo', align: 'center', width: 220, customRender: function (text) { return text || '--' } },
         { title: '类型', dataIndex: 'bizTypeDictValue', align: 'center', width: 140, customRender: function (text) { return text || '--' } },
         { title: '金额', dataIndex: 'totalAmount', align: 'center', width: 100, customRender: function (text) { return ((text || text == 0) ? text : '--') } },
-        { title: '结算金额', dataIndex: 'settleAmount', align: 'center', width: 100, customRender: function (text) { return ((text || text == 0) ? text : '--') } }
+        { title: '结算金额', dataIndex: 'unsettleAmount', align: 'center', width: 100, customRender: function (text) { return ((text || text == 0) ? text : '--') } }
       ],
       // 加载数据方法 必须为 Promise 对象
       loadData: parameter => {

+ 2 - 2
src/views/financialManagement/financialCollection/detailModal.vue

@@ -14,8 +14,8 @@
         <a-descriptions-item label="收款单号">{{ detailsData.settleNo || '--' }}</a-descriptions-item>
         <a-descriptions-item label="关联单号">{{ detailsData.bizNo || '--' }}</a-descriptions-item>
         <a-descriptions-item label="商户名称">{{ detailsData.settleClientName || '--' }}</a-descriptions-item>
-        <a-descriptions-item label="收款金额">{{ ('¥'+detailsData.totalAmount) || '--' }}</a-descriptions-item>
-        <a-descriptions-item label="收款类型">{{ detailsData.bizName || '--' }}</a-descriptions-item>
+        <a-descriptions-item label="收款金额">{{ ('¥'+detailsData.unsettleAmount) || '--' }}</a-descriptions-item>
+        <a-descriptions-item label="收款类型">{{ detailsData.bizTypeDictValue || '--' }}</a-descriptions-item>
         <a-descriptions-item label="收款方式">{{ detailsData.settleStyleName || '--' }}</a-descriptions-item>
         <a-descriptions-item label="收款时间">{{ detailsData.settleTime || '--' }}</a-descriptions-item>
         <a-descriptions-item label="审核时间">{{ detailsData.auditTime || '--' }}</a-descriptions-item>

+ 1 - 1
src/views/financialManagement/financialCollection/list.vue

@@ -170,7 +170,7 @@ export default {
         },
         {
           title: '收款金额',
-          dataIndex: 'totalAmount',
+          dataIndex: 'unsettleAmount',
           width: 100,
           align: 'center',
           customRender: function (text) {

+ 2 - 2
src/views/financialManagement/financialPayment/detailModal.vue

@@ -14,8 +14,8 @@
         <a-descriptions-item label="付款单号">{{ detailsData.settleNo || '--' }}</a-descriptions-item>
         <a-descriptions-item label="关联单号">{{ detailsData.bizNo || '--' }}</a-descriptions-item>
         <a-descriptions-item label="商户名称">{{ detailsData.settleClientName || '--' }}</a-descriptions-item>
-        <a-descriptions-item label="付款金额">{{ ('¥'+detailsData.totalAmount) || '--' }}</a-descriptions-item>
-        <a-descriptions-item label="付款类型">{{ detailsData.bizName || '--' }}</a-descriptions-item>
+        <a-descriptions-item label="付款金额">{{ ('¥'+detailsData.unsettleAmount) || '--' }}</a-descriptions-item>
+        <a-descriptions-item label="付款类型">{{ detailsData.bizTypeDictValue || '--' }}</a-descriptions-item>
         <a-descriptions-item label="付款方式">{{ detailsData.settleStyleName || '--' }}</a-descriptions-item>
         <a-descriptions-item label="付款时间">{{ detailsData.settleTime || '--' }}</a-descriptions-item>
         <a-descriptions-item label="审核时间">{{ detailsData.auditTime || '--' }}</a-descriptions-item>

+ 1 - 1
src/views/financialManagement/financialPayment/list.vue

@@ -170,7 +170,7 @@ export default {
         },
         {
           title: '付款金额',
-          dataIndex: 'totalAmount',
+          dataIndex: 'unsettleAmount',
           width: 100,
           align: 'center',
           customRender: function (text) {