Переглянути джерело

线上支付订单列表,添加采购单号

chenrui 5 місяців тому
батько
коміт
cef56e80ae
1 змінених файлів з 8 додано та 1 видалено
  1. 8 1
      src/views/salesManagement/onlinePayOrder/list.vue

+ 8 - 1
src/views/salesManagement/onlinePayOrder/list.vue

@@ -322,6 +322,12 @@ export default {
           key: 'refundData',
           disabled: false,
           checked: false
+        },
+        {
+          title: '采购单号',
+          key: 'purchaseBillNo',
+          disabled: false,
+          checked: false
         }
       ],
       showCell: []// 已选要显示的列
@@ -334,6 +340,7 @@ export default {
         { title: '序号', dataIndex: 'no', align: 'center', width: '4%' },
         { title: '来源', dataIndex: 'sourceTypeDictValue', width: '6%', align: 'center', customRender: function (text) { return text || '--' } },
         { title: '销售单号', scopedSlots: { customRender: 'salesBillNo' }, width: '6%', align: 'center' },
+        { title: '采购单号', dataIndex: 'purchaseBillNo', width: '7%', align: 'center', customRender: function (text) { return text || '--' } },
         { title: '客户名称', dataIndex: 'buyerNameCurrent', align: 'center', width: '10%', customRender: function (text) { return text || '--' }, ellipsis: true },
         { title: '客户关系', dataIndex: 'buyerRelationTypeDictValue', align: 'center', width: '8%', customRender: function (text) { return text || '--' } },
         { title: '总款数', dataIndex: 'totalCategory', align: 'center', width: '5%', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
@@ -349,7 +356,7 @@ export default {
         { title: '急件', scopedSlots: { customRender: 'oosFlag' }, width: '3%', align: 'center' },
         { title: '出库', scopedSlots: { customRender: 'waitOut' }, width: '3%', align: 'center' },
         { title: '收款', scopedSlots: { customRender: 'financial' }, width: '3%', align: 'center' },
-        { title: '操作', scopedSlots: { customRender: 'action' }, width: '6%', align: 'center' }
+        { title: '操作', scopedSlots: { customRender: 'action' }, width: '5%', align: 'center' }
       ]
       return arr.filter(item => !this.showCell.includes(item.dataIndex))
     }