1
dengjunjie
2025-09-29 d9c99e0480b4910cdb134778dd5c314b35ec4cf2
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSClient/src/views/stock/inventoryBatch.vue
@@ -27,8 +27,36 @@
      sortName: "id",
    });
    const editFormFields = ref({
      productStatus: "",
      certificateNumber: "",
      materielCode:"",
      materielName:"",
      shelfLife:"",
      boxQuantity:"",
      outboundQuantity:"",
      stockQuantity:"",
      productionDate:"",
      remark:"",
      validityPeriod:"",
      batchNo:""
    });
    const editFormOptions = ref([]);
    const editFormOptions = ref([
      [
        {
          title: "产品状态",
          field: "productStatus",
          type: "select",
          dataKey: "productStatusEmun",
          data: [],
        },
        {
          title: "合格证号",
          required: true,
          field: "certificateNumber",
          type: "string",
        },
      ],
    ]);
    const searchFormFields = ref({
      deviceCode: "",
      deviceType: "",
@@ -36,13 +64,12 @@
    });
    const searchFormOptions = ref([
      [
        { title: "托盘编号", field: "palletCode", type: "like" },
        { title: "货位编号", field: "locationCode", type: "like" },
        { title: "批号", field: "batchNo", type: "like" },
        {
          title: "库存状态",
          field: "stockStatus",
          title: "产品状态",
          field: "productStatus",
          type: "select",
          dataKey: "stockStatusEmun",
          dataKey: "productStatusEmun",
          data: [],
        },
      ],