diff --git a/src/components/BasicForm/src/BasicForm.vue b/src/components/BasicForm/src/BasicForm.vue index 854ededeb..2df16c7e7 100644 --- a/src/components/BasicForm/src/BasicForm.vue +++ b/src/components/BasicForm/src/BasicForm.vue @@ -494,7 +494,7 @@ watch(()=>props.tableData,() => { }) watch(()=>unref(formRef)?.formModel,() => { if(props?.sumFormDataByForm&&unref(formRef)?.formModel){ - props?.sumFormDataByForm(formRef,unref(formRef)?.formModel) + props?.sumFormDataByForm(formRef,unref(formRef)?.formModel,props.tableData) } },{ deep:true diff --git a/src/views/wms/countManage/count/countPlanMain/countPlanMain.data.ts b/src/views/wms/countManage/count/countPlanMain/countPlanMain.data.ts index 4071a1df5..fd38865bb 100644 --- a/src/views/wms/countManage/count/countPlanMain/countPlanMain.data.ts +++ b/src/views/wms/countManage/count/countPlanMain/countPlanMain.data.ts @@ -783,8 +783,7 @@ export const CountPlanDetailRules = reactive({ { required: true, message: '请选择盘点范围类型', trigger: 'change' } ], value: [ - { required: true, message: '请选择盘点范围值', trigger: ['blur','change'] }, - { max: 50, message: '不得超过50个字符', trigger: ['blur','change'] } + { required: true, message: '请选择盘点范围值', trigger: ['blur','change'] } ], }) /** @@ -830,4 +829,4 @@ export const CountPlanMain1 = useCrudSchemas(reactive([ } } }, -])) \ No newline at end of file +]))