From 6fc2d37aacca6785d1da68d895002b5509774928 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E8=96=AA=E5=90=8D?= <942005050@qq.com> Date: Wed, 27 Dec 2023 13:28:45 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=9F=E4=BA=A7=E7=BA=BF=E7=89=A9=E5=93=81?= =?UTF-8?q?=E5=85=B3=E7=B3=BB=E5=8E=BB=E6=8E=89=E6=88=90=E5=93=81=E5=BA=93?= =?UTF-8?q?=E5=8E=9F=E6=96=99=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../productionlineitem.data.ts | 100 +++++++++--------- 1 file changed, 50 insertions(+), 50 deletions(-) diff --git a/src/views/wms/basicDataManage/itemManage/productionlineitem/productionlineitem.data.ts b/src/views/wms/basicDataManage/itemManage/productionlineitem/productionlineitem.data.ts index a94a9d824..5b3c1f2b0 100644 --- a/src/views/wms/basicDataManage/itemManage/productionlineitem/productionlineitem.data.ts +++ b/src/views/wms/basicDataManage/itemManage/productionlineitem/productionlineitem.data.ts @@ -17,53 +17,53 @@ const { t } = useI18n() // 国际化 * @returns {Array} 生产线物料关系 */ export const Productionlineitem = useCrudSchemas(reactive([ - { - label: '完工收货库位', - field: 'fgLocationCode', - isSearch: true, - sort: 'custom', - table: { - width: 150, - fixed: 'left' - }, - form: { - // labelMessage: '信息提示说明!!!', - componentProps: { - isSearchList: true, - searchListPlaceholder: '请选择库位代码', - searchField: 'code', - searchTitle: '库位信息', - searchAllSchemas: Location.allSchemas, - searchPage: LocationApi.getLocationPage, - searchCondition: [{ - key: 'available', - value: 'TRUE', - isMainValue: false - }] - } - } - }, - { - label: '原料库位', - field: 'rawLocationCode', - isSearch: true, - sort: 'custom', - table: { - width: 150, - fixed: 'left' - }, - form: { - // labelMessage: '信息提示说明!!!', - componentProps: { - isSearchList: true, - searchListPlaceholder: '请选择库位代码', - searchField: 'code', - searchTitle: '库位信息', - searchAllSchemas: Location.allSchemas, - searchPage: LocationApi.getLocationPage - } - } - }, + // { + // label: '完工收货库位', + // field: 'fgLocationCode', + // isSearch: true, + // sort: 'custom', + // table: { + // width: 150, + // fixed: 'left' + // }, + // form: { + // // labelMessage: '信息提示说明!!!', + // componentProps: { + // isSearchList: true, + // searchListPlaceholder: '请选择库位代码', + // searchField: 'code', + // searchTitle: '库位信息', + // searchAllSchemas: Location.allSchemas, + // searchPage: LocationApi.getLocationPage, + // searchCondition: [{ + // key: 'available', + // value: 'TRUE', + // isMainValue: false + // }] + // } + // } + // }, + // { + // label: '原料库位', + // field: 'rawLocationCode', + // isSearch: true, + // sort: 'custom', + // table: { + // width: 150, + // fixed: 'left' + // }, + // form: { + // // labelMessage: '信息提示说明!!!', + // componentProps: { + // isSearchList: true, + // searchListPlaceholder: '请选择库位代码', + // searchField: 'code', + // searchTitle: '库位信息', + // searchAllSchemas: Location.allSchemas, + // searchPage: LocationApi.getLocationPage + // } + // } + // }, { label: '产线代码' , field: 'productionLineCode', @@ -237,9 +237,9 @@ export const Productionlineitem = useCrudSchemas(reactive([ //表单校验 export const ProductionlineitemRules = reactive({ - fgLocationCode: [ - { required: true, message: '请输入完工收货库位', trigger: 'change' } - ], + // fgLocationCode: [ + // { required: true, message: '请输入完工收货库位', trigger: 'change' } + // ], productionLineCode: [ { required: true, message: '请输入产线代码', trigger: 'change' } ],