Browse Source

缺陷:HL-5787修复

hella_online_20240911
zhaoxuebing 2 weeks ago
parent
commit
a3430b066f
  1. 15
      src/views/wms/inventoryjobManage/scrap/scrapRequestMain/scrapRequestMain.data.ts

15
src/views/wms/inventoryjobManage/scrap/scrapRequestMain/scrapRequestMain.data.ts

@ -591,8 +591,9 @@ export const ScrapRequestMain = useCrudSchemas(
table: {
width: 150
},
isSearch: true,
isForm: false
isSearch: false,
isForm: false,
isTableForm: false,
},
{
label: '从库区代码范围',
@ -601,7 +602,9 @@ export const ScrapRequestMain = useCrudSchemas(
table: {
width: 150
},
isForm: false
isForm: false,
isTableForm: false,
isTable:false,
},
{
label: '业务类型',
@ -1154,7 +1157,7 @@ export const ScrapRequestDetail = useCrudSchemas(reactive<CrudSchema[]>([
isForm: false,
},
{
label: '原因',
label: '报废原因',
field: 'reason',
table: {
width: 150
@ -1191,6 +1194,7 @@ export const ScrapRequestDetail = useCrudSchemas(reactive<CrudSchema[]>([
},
isTableForm: false,
isForm: false,
isTable:false,
},
{
label: '明细备注',
@ -1305,4 +1309,7 @@ export const ScrapRequestDetailRules = reactive({
remark: [
{ max: 50, message: '不得超过50个字符', trigger: 'blur' }
],
reason: [
{ required: true, message: '请输入报废原因', trigger: 'change' }
],
})

Loading…
Cancel
Save