From 88539ebf9cfa11a1f5f585658fc73afd5c3c65a3 Mon Sep 17 00:00:00 2001 From: "YEJIAXING-PC\\lenovo" <591141169@qq.com> Date: Wed, 30 Jul 2025 17:26:11 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E5=93=81=E7=95=AA=E6=8B=89=E5=8A=A8?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E8=A1=A8=E3=80=91=E4=B8=AD=E6=8B=89=E5=8A=A8?= =?UTF-8?q?=E6=96=B9=E5=BC=8F=E6=94=B9=E4=B8=BA=E5=A4=9A=E9=80=89=EF=BC=8C?= =?UTF-8?q?=E8=BF=9B=E5=85=A5=E6=B6=88=E8=80=97=E8=A1=A8=E7=9A=84=E6=9D=A1?= =?UTF-8?q?=E4=BB=B6=E5=8F=98=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../basicDataManage/itemPull/itemPull.data.ts | 48 ++++++++++++++----- 1 file changed, 36 insertions(+), 12 deletions(-) diff --git a/src/views/wms/basicDataManage/itemPull/itemPull.data.ts b/src/views/wms/basicDataManage/itemPull/itemPull.data.ts index a8a7342b4..447f8b5b7 100644 --- a/src/views/wms/basicDataManage/itemPull/itemPull.data.ts +++ b/src/views/wms/basicDataManage/itemPull/itemPull.data.ts @@ -11,7 +11,9 @@ import { Area } from '@/views/wms/basicDataManage/factoryModeling/areabasic/area export const ItemPullRules = reactive({ defaultErpLocationCode: [required], replenishType: [required], - pullType: [required] + pullTypeList: [ + { required: true, message: '请选择拉动方式', trigger: 'change' } + ], }) export const ItemPull = useCrudSchemas( @@ -181,18 +183,40 @@ export const ItemPull = useCrudSchemas( width: 120 } }, - { - label: '拉动方式', - field: 'pullType', - sort: 'custom', - dictType: DICT_TYPE.PULL_TYPE, - dictClass: 'string', - isSearch: true, - isTable: true, - table: { - width: 120 - } + // { + // label: '拉动方式', + // field: 'pullType', + // sort: 'custom', + // dictType: DICT_TYPE.PULL_TYPE, + // dictClass: 'string', + // isSearch: true, + // isTable: true, + // multiple: true, + // table: { + // width: 120, + // } + // }, + + { + label: '拉动方式', + field: 'pullTypeList', + dictType: DICT_TYPE.PULL_TYPE, + dictClass: 'string', + // dictAllOption:true,// 全选按钮 + // dictAllValue:'全选', + isTable: true, + sort: 'custom', + table: { + width: 180 }, + form: { + component:'Select', + componentProps: { + multiple: true, + }, + } + }, + { label: '创建者', field: 'creator',