lilei 1 week ago
parent
commit
a9c4d4e8c5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/views/salesManagement/waitDispatchNew/detailProductList.vue

+ 1 - 1
src/views/salesManagement/waitDispatchNew/detailProductList.vue

@@ -163,7 +163,7 @@ export default {
       const arr = [
         { title: '', field: '', key: 'acheck', width: 60, type: 'checkbox', align: 'center' },
         { title: '序号', field: 'no', key: 'a', width: 60, align: 'center', operationColumn: false },
-        { title: '产品编码', field: 'productCode', key: 'b', align: 'left', operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return codeFormat(row, row[column.field], h) } },
+        { title: '产品编码', field: 'productCode', key: 'b', width: 350, align: 'left', operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return codeFormat(row, row[column.field], h) } },
         { title: '出库仓库', field: 'warehouseName', key: 'e', width: 150, align: 'center', operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return row[column.field] || '--' } },
         { title: '待下推数量', field: 'surplusQty', key: 'o', width: 150, align: 'center', operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return numsFormat(row[column.field]) } },
         { title: '本次下推数', field: 'qty', key: 'r', width: 150, align: 'center', operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return inputFormat(row, row[column.field], h) } },