duyongjia
2024-11-26 0c0ac28fc5784ac64612811c65be7dca8318d8c6
´úÂë¹ÜÀí/WCS/WIDESEAWCS_Client/src/views/basic/locationInfo.vue
@@ -56,32 +56,52 @@
          field: "layer",
          type: "string",
        },
        {
          title: "货位深度",
          required: true,
          field: "depth",
          type: "string",
        },
        // {
        //   title: "货位深度",
        //   required: true,
        //   field: "depth",
        //   type: "string",
        // },
      ],
      [
        {
          title: "货位类型",
          required: true,
          field: "locationType",
          type: "string",
          type: "select",
          dataKey:"",
          data:[
            {key:1,value:'正常货位'},
            {key:2,value:'暂存位'},
            {key:3,value:'提升机'},
            {key:4,value:'输送线'},
            {key:5,value:'组立机'},
          ]
        },
         {
          title: "禁用状态",
          required: true,
          field: "enableStatus",
          type: "select",
          dataKey:"",
          data:[
            {key:0,value:'正常'},
            {key:1,value:'禁用'},
          ]
        },
        {
          title: "区域主键",
          required: true,
          field: "areaId",
          type: "string",
          hidden:true,
        },
        {
          title: "巷道编号",
          required: true,
          field: "roadwayNo",
          type: "string",
        },
        // {
        //   title: "巷道编号",
        //   required: true,
        //   field: "roadwayNo",
        //   type: "string",
        // },
      ],
    ]);
    const searchFormFields = ref({
@@ -91,7 +111,20 @@
    const searchFormOptions = ref([
      [
        { title: "货位编号", field: "locationCode" },
        { title: "巷道编号", field: "roadwayNo" },
        {
          title: "货位类型",
          field: "locationType",
          type: "selectList",
          dataKey: "locationTypeEnum",
          data: [],
        },
         {
          title: "货位状态",
          field: "locationStatus",
          type: "selectList",
          dataKey: "locationStatusEnum",
          data: [],
        },
      ],
    ]);
    const columns = ref([
@@ -110,6 +143,7 @@
        title: "区域主键",
        type: "string",
        width: 90,
        hidden:true,
        align: "left",
        bind: {
          key: "areainfo",