chenrui il y a 4 ans
Parent
commit
fb99dda078

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

@@ -116,7 +116,7 @@ export default {
         { title: '序号', dataIndex: 'no', width: 80, align: 'center' },
         { title: '采购单号', dataIndex: 'purchaseBillNo', align: 'center', customRender: function (text) { return text || '--' } },
         { title: '采购入库单号', scopedSlots: { customRender: 'receivingBillNo' }, width: 220, align: 'center' },
-        { title: '总款数', dataIndex: 'totalCategory', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
+        { title: '总款数', dataIndex: 'totalPutCategory', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
         { title: '入库总数量', dataIndex: 'totalPutQty', width: 110, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
         { title: '入库总成本', dataIndex: 'totalPutAmount', width: 110, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
         { title: '签收入库时间', dataIndex: 'stockPutTime', width: 160, align: 'center', customRender: function (text) { return text || '--' } },

+ 0 - 2
src/views/salesManagement/salesQuery/queryPart.vue

@@ -322,13 +322,11 @@ export default {
       let w = 0
       for (let i = 0; i < r.length; i++) {
         const row = this.columnsBak.find(item => item.dataIndex == r[i])
-        console.log(row)
         if (row) {
           w = w + row.width
           d.push(row)
         }
       }
-      console.log(w)
       this.tableWidth = w
       this.columns = d
     },