diff --git a/src/views/wms/basicDataManage/factoryModeling/location/index.vue b/src/views/wms/basicDataManage/factoryModeling/location/index.vue index 5bb6eb929..905e9ef4e 100644 --- a/src/views/wms/basicDataManage/factoryModeling/location/index.vue +++ b/src/views/wms/basicDataManage/factoryModeling/location/index.vue @@ -67,6 +67,7 @@ import TableHead from '@/components/TableHead/src/TableHead.vue' import ImportForm from '@/components/ImportForm/src/ImportForm.vue' import Detail from '@/components/Detail/src/Detail.vue' +// 基础信息——库位 defineOptions({ name: 'Location' }) const message = useMessage() // 消息弹窗 diff --git a/src/views/wms/basicDataManage/factoryModeling/location/location.data.ts b/src/views/wms/basicDataManage/factoryModeling/location/location.data.ts index 3b4665a48..13577ded9 100644 --- a/src/views/wms/basicDataManage/factoryModeling/location/location.data.ts +++ b/src/views/wms/basicDataManage/factoryModeling/location/location.data.ts @@ -246,14 +246,6 @@ export const Location = useCrudSchemas(reactive([ } }, }, - { - label: '用户组代码', - field: 'userGroupCode', - sort: 'custom', - table: { - width: 150 - }, - }, { label: '是否可用', field: 'available', @@ -408,10 +400,6 @@ export const LocationRules = reactive({ pickPriority: [ { required: true, message: '请输入拣料优先级', trigger: 'blur' } ], - userGroupCode: [ - { required: true, message: '请输入用户组代码', trigger: 'blur' }, - { max: 50, message: '不得超过50个字符', trigger: 'blur' } - ], available: [ { required: true, message: '请选择是否可用', trigger: 'change' } ],