فهرست منبع

fix(财务模块): 修正应付管理页面字段命名错误

liujt 4 ماه پیش
والد
کامیت
c557b5eef1
2فایلهای تغییر یافته به همراه9 افزوده شده و 8 حذف شده
  1. 1 0
      src/views/financialManage/invoiceManage/index.vue
  2. 8 8
      src/views/financialManage/payableManage/index.vue

+ 1 - 0
src/views/financialManage/invoiceManage/index.vue

@@ -400,6 +400,7 @@
         });
       },
       remove(row) {
+        console.log(row,'row~~~删除')
         invoiceApplyRemoveAPI(row).then((res) => {
           this.$message.success('删除成功!');
           this.reload();

+ 8 - 8
src/views/financialManage/payableManage/index.vue

@@ -282,26 +282,26 @@
           },
           {
             minWidth: 100,
-            prop: 'receivableTotalPrice',
+            prop: 'payableTotalPrice',
             label: '应付金额',
             align: 'center',
-            slot: 'receivableTotalPrice',
+            slot: 'payableTotalPrice',
             showOverflowTooltip: true
           },
           {
             minWidth: 100,
-            prop: 'receivedTotalPrice',
+            prop: 'paidTotalPrice',
             label: '已付金额',
             align: 'center',
-            slot: 'receivedTotalPrice',
+            slot: 'paidTotalPrice',
             showOverflowTooltip: true
           },
           {
             minWidth: 100,
-            prop: 'unreceiveTotalPrice',
+            prop: 'unpaidTotalPrice',
             label: '未付金额',
             align: 'center',
-            slot: 'unreceiveTotalPrice',
+            slot: 'unpaidTotalPrice',
             showOverflowTooltip: true
           },
           {
@@ -322,9 +322,9 @@
           },
           {
             minWidth: 140,
-            prop: 'receivableDate',
+            prop: 'payableDate',
             label: '实际付款日期',
-            slot: 'receivableDate',
+            slot: 'payableDate',
             align: 'center',
             showOverflowTooltip: true
           },