lilei 2 years ago
parent
commit
0a43010503
2 changed files with 3 additions and 3 deletions
  1. 1 1
      public/version.json
  2. 2 2
      src/views/reportData/bulkReturnReport/detailList.vue

+ 1 - 1
public/version.json

@@ -1,5 +1,5 @@
 {
 {
   "message": "发现有新版本发布,确定更新系统?",
   "message": "发现有新版本发布,确定更新系统?",
   "vendorJsVersion": "",
   "vendorJsVersion": "",
-  "version": 1679467731943
+  "version": 1679467731111
 }
 }

+ 2 - 2
src/views/reportData/bulkReturnReport/detailList.vue

@@ -187,7 +187,7 @@ export default {
     }
     }
   },
   },
   computed: {
   computed: {
-    costColumns(){
+    costColumns () {
       const _this = this
       const _this = this
       return [
       return [
         { title: '批次号', dataIndex: 'stockBatchNo', width: '150px', align: 'center', customRender: function (text) { return text || '--' } },
         { title: '批次号', dataIndex: 'stockBatchNo', width: '150px', align: 'center', customRender: function (text) { return text || '--' } },
@@ -210,7 +210,7 @@ export default {
         { title: '审核时间', dataIndex: 'auditTime', width: '11%', align: 'center', customRender: function (text) { return text || '--' } }
         { title: '审核时间', dataIndex: 'auditTime', width: '11%', align: 'center', customRender: function (text) { return text || '--' } }
       ]
       ]
       if (this.$hasPermissions('M_ShowAllCost')) {
       if (this.$hasPermissions('M_ShowAllCost')) {
-        arr.splice(8, 0, { title: '成本', dataIndex: 'purchaseTotalCost',scopedSlots: { customRender: 'cost' }, width: '5%', align: 'right' })
+        arr.splice(8, 0, { title: '成本', dataIndex: 'purchaseTotalCost', scopedSlots: { customRender: 'cost' }, width: '5%', align: 'right' })
       }
       }
       return arr
       return arr
     }
     }