liulijun
2026-03-31 35b1af99c388b5f03b8bf8de53852e5b5e9e60c4
ÏîÄ¿´úÂë/WMS/WMSClient/src/extension/outbound/extend/SelectedStock.vue
@@ -124,6 +124,18 @@
          width: 150,
        },
        {
          prop: "materialWide",
          title: "物料幅宽",
          type: "string",
          width: 100,
        },
        {
          prop: "materialWeight",
          title: "物料重量",
          type: "string",
          width: 100,
        },
        {
          prop: "stockId",
          title: "库存主键",
          type: "string",
@@ -150,7 +162,7 @@
        },
        {
          prop: "taskNum",
          title: "出库任务号",
          title: "出库任务",
          type: "string",
          width: 100,
        },
@@ -158,13 +170,13 @@
          prop: "palletCode",
          title: "条码编号",
          type: "string",
          width: 150,
          width: 130,
        },
        {
          prop: "locationCode",
          title: "货位编号",
          type: "string",
          width: 180,
          width: 200,
        },
        {
          prop: "status",
@@ -196,11 +208,12 @@
              { label: '出库中', value: 1 },
              { label: '出库完成', value: 2 },
              { label: '拣选完成', value: 3 },
              { label: '撤销', value: 99 }
              { label: '撤销', value: 99 },
              { label: '关闭', value: 100 }
          ]
          this.tableData=x.map((i) => ({
            ...i,
            status:label.find((j) => j.value === i.status).label
            status:label.find((j) => j.value === i.status)?.label || i.status
          }))
        });
    },