helongyang
2 天以前 753361f589444455fe1b20476c658201ccd92c38
´úÂë¹ÜÀí/WMS/WIDESEA_WMSClient/src/extension/outbound/extend/SelectedStock.vue
@@ -148,6 +148,12 @@
          width: 100,
        },
        {
          prop: "taskNum",
          title: "出库任务号",
          type: "string",
          width: 100,
        },
        {
          prop: "palletCode",
          title: "托盘编号",
          type: "string",
@@ -158,6 +164,20 @@
          title: "货位编号",
          type: "string",
          width: 180,
        },
        {
        prop: "productionDate",
        title: "生产日期",
        type: "string",
        width: 160,
        },
        {
          prop: "effectiveDate",
          title: "有效期",
          type: "string",
          width: 160,
        },
        {
          prop: "status",
@@ -182,7 +202,18 @@
          "查询中"
        )
        .then((x) => {
          this.tableData = x;
          var label=[
              { label: '已分配', value: 0 },
              { label: '出库中', value: 1 },
              { label: '出库完成', value: 2 },
              { label: '拣选完成', value: 3 },
              { label: '撤销', value: 99 }
          ]
          this.tableData=x.map((i) => ({
            ...i,
            status:label.find((j) => j.value === i.status).label
          }))
        });
    },
  },