From 9ab6d4a5d9b5077d2212fc2fd63f41ace5469398 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E8=96=AA=E5=90=8D?= <942005050@qq.com> Date: Fri, 12 Jan 2024 10:56:20 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BA=93=E4=BD=8D=20=E5=88=A0=E9=99=A4?= =?UTF-8?q?=E7=94=A8=E6=88=B7=E7=BB=84=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../factoryModeling/location/index.vue | 1 + .../factoryModeling/location/location.data.ts | 12 ------------ 2 files changed, 1 insertion(+), 12 deletions(-) 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' } ],