Browse Source

Q3明细中缺陷位置带出错误,缺陷位置需要支持手动输入 HL-5894

hella_online_20240906
YEJIAXING-PC\lenovo 2 weeks ago
parent
commit
e795034da8
  1. 26
      src/views/qms/inspectionQ3/inspectionQ3.data.ts

26
src/views/qms/inspectionQ3/inspectionQ3.data.ts

@ -323,16 +323,18 @@ export const InspectionQ3Detail = useCrudSchemas(
], ],
verificationPage: ProductionlineitemApi.getProductionLineCodelistByCodes, // tableForm下方输入框校验失去焦点之后是否正确的方法 verificationPage: ProductionlineitemApi.getProductionLineCodelistByCodes, // tableForm下方输入框校验失去焦点之后是否正确的方法
isShowTableFormSearch: true, //tableForm下方是否出现输入框 isShowTableFormSearch: true, //tableForm下方是否出现输入框
isRepeat: true,//tableForm下方输入框是否可以重复添加该条数据 isRepeat: true, //tableForm下方输入框是否可以重复添加该条数据
// 失去焦点校验参数 // 失去焦点校验参数
verificationParams: [{ verificationParams: [
key: 'itemCode', {
action: '==', key: 'itemCode',
value: '', action: '==',
isMainValue: false, value: '',
isSearch: 'true', isMainValue: false,
isFormModel: true, isSearch: 'true',
}] isFormModel: true
}
]
}, },
form: { form: {
// labelMessage: '信息提示说明!!!', // labelMessage: '信息提示说明!!!',
@ -485,7 +487,7 @@ export const InspectionQ3Detail = useCrudSchemas(
filterable: true, filterable: true,
options: [], options: [],
optionsAlias: { optionsAlias: {
labelField: 'name', labelField: 'code',
valueField: 'code' valueField: 'code'
} }
} }
@ -493,8 +495,8 @@ export const InspectionQ3Detail = useCrudSchemas(
tableForm: { tableForm: {
type: 'Select', type: 'Select',
filterable: true, filterable: true,
valueField: 'name', labelField: 'code',
labelField: 'code' valueField: 'code'
} }
}, },
{ {

Loading…
Cancel
Save