zhangchengsong
19 小时以前 f59f3b24814387573b5bca9a9b6c832a3720ee7e
ÏîÄ¿´úÂë/WIDESEAWCS_Client/src/views/taskinfo/task.vue
@@ -26,8 +26,45 @@
      url: "/Task/",
      sortName: "CreateDate",
    });
    const editFormFields = ref({});
    const editFormOptions = ref([]);
    const editFormFields = ref({
      taskNum: "",
      palletCode: "",
      roadway: "",
      taskType:"",
      sourceAddress: "",
      targetAddress: "",
      currentAddress: "",
      nextAddress: "",
      creater: "",
      createDate: "",
      wmStaskid:"",
      deviceuuid:""
    });
    const editFormOptions = ref([
        [{
          title: "任务状态",
          field: "taskState",
          type: "select",
          dataKey: "",
          data: [{ value: "新建出库任务", key: 100 },
            { value: "堆垛机出库执行中", key: 110 },
            { value: "出库任务完成", key: 190 },
            { value: "出库任务挂起", key: 198 },
            { value: "出库任务取消", key: 199 },
            { value: "新建入库任务", key: 200 },
            { value: "堆垛机入库执行中", key: 210 },
            { value: "入库任务完成", key: 290 },
            { value: "入库任务挂起", key: 298 },
            { value: "入库任务取消", key: 299 },
            { value: "新建盘点任务", key: 300 },
            { value: "堆垛机盘点执行中", key: 310 },
            { value: "盘点任务完成", key: 390 },
            { value: "盘点任务挂起", key: 398 },
            { value: "盘点任务取消", key: 399 }],
        }]
    ]);
    const searchFormFields = ref({
      taskNum: "",
      palletCode: "",
@@ -85,14 +122,14 @@
        field: "taskNum",
        title: "WCS任务号",
        type: "int",
        width: 90,
        width: 100,
        align: "left",
      },
      {
        field: "WMStaskid",
        field: "wmStaskid",
        title: "WMS任务号",
        type: "string",
        width: 90,
        width: 180,
        align: "left",
      },
      {
@@ -115,7 +152,14 @@
        type: "int",
        width: 90,
        align: "left",
        bind: { key: "taskType", data: [] },
        bind: {
          key: "",
          data:[
              { value: "出库", key: 100 },
              { value: "入库", key: 200 },
              { value: "盘点", key: 300 },
          ]
        }
      },
      {
        field: "taskState",
@@ -123,7 +167,27 @@
        type: "int",
        width: 150,
        align: "left",
        bind: { key: "taskState", data: [] },
        bind: {
              key: "",
              data: [
                { value: "新建出库任务", key: 100 },
                { value: "堆垛机出库执行中", key: 110 },
                { value: "出库任务完成", key: 190 },
                { value: "出库任务挂起", key: 198 },
                { value: "出库任务取消", key: 199 },
                { value: "新建入库任务", key: 200 },
                { value: "堆垛机入库执行中", key: 210 },
                { value: "入库任务完成", key: 290 },
                { value: "入库任务挂起", key: 298 },
                { value: "入库任务取消", key: 299 },
                { value: "新建盘点任务", key: 300 },
                { value: "堆垛机盘点执行中", key: 310 },
                { value: "盘点任务完成", key: 390 },
                { value: "盘点任务挂起", key: 398 },
                { value: "盘点任务取消", key: 399 }
          ]},
      },
      {
        field: "sourceAddress",
@@ -157,9 +221,8 @@
        field: "exceptionMessage",
        title: "异常信息",
        type: "string",
        width: 90,
        width: 200,
        align: "left",
        hidden: true,
      },
      // {
      //   field: "grade",
@@ -195,6 +258,7 @@
        type: "string",
        width: 90,
        align: "left",
        bind: { key: "", data: [{value:"WCS",key:"WCS"},{value:"WMS",key:"WMS"}] },
      },
      {
        field: "createDate",