|
|
@ -145,7 +145,7 @@ export const ProductscrapRequestMain = useCrudSchemas( |
|
|
|
}], // 失去焦点校验参数
|
|
|
|
}, |
|
|
|
form: { |
|
|
|
value:'DEFC', |
|
|
|
// value:'DEFC',
|
|
|
|
// labelMessage: '信息提示说明!!!',
|
|
|
|
componentProps: { |
|
|
|
enterSearch: true, |
|
|
@ -178,12 +178,12 @@ export const ProductscrapRequestMain = useCrudSchemas( |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
form: { |
|
|
|
value:'SC99', |
|
|
|
componentProps: { |
|
|
|
disabled: true |
|
|
|
} |
|
|
|
} |
|
|
|
// form: {
|
|
|
|
// value:'SC99',
|
|
|
|
// componentProps: {
|
|
|
|
// disabled: true
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// tableForm: {
|
|
|
|
// enterSearch: true,
|
|
|
|
// isInpuFocusShow: true, // 开启查询弹窗
|
|
|
@ -216,36 +216,37 @@ export const ProductscrapRequestMain = useCrudSchemas( |
|
|
|
// isFormModel: true,
|
|
|
|
// }], // 失去焦点校验参数
|
|
|
|
// },
|
|
|
|
// form: {
|
|
|
|
// // labelMessage: '信息提示说明!!!',
|
|
|
|
// componentProps: {
|
|
|
|
// enterSearch: true,
|
|
|
|
// isSearchList: true, // 开启查询弹窗
|
|
|
|
// searchListPlaceholder: '请选择领用原因代码', // 输入框占位文本
|
|
|
|
// searchField: 'code', // 查询弹窗赋值字段
|
|
|
|
// searchTitle: '领用原因代码', // 查询弹窗标题
|
|
|
|
// searchAllSchemas: SubjectAccount.allSchemas, // 查询弹窗所需类
|
|
|
|
// searchPage: SubjectAccountApi.getSubjectAccountPage, // 查询弹窗所需分页方法
|
|
|
|
// searchCondition: [{
|
|
|
|
// key: 'available',
|
|
|
|
// value: 'TRUE',
|
|
|
|
// isMainValue: false
|
|
|
|
// },{
|
|
|
|
// key: 'costcentreType',
|
|
|
|
// value: 'costCenterType',
|
|
|
|
// message: '成本中心类型不能为空!',
|
|
|
|
// isMainValue: true
|
|
|
|
// }],
|
|
|
|
// verificationParams: [{
|
|
|
|
// key: 'code',
|
|
|
|
// action: '==',
|
|
|
|
// value: '',
|
|
|
|
// isMainValue: false,
|
|
|
|
// isSearch: true,
|
|
|
|
// isFormModel: true,
|
|
|
|
// }], // 失去焦点校验参数
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
form: { |
|
|
|
value:'SC99', |
|
|
|
// labelMessage: '信息提示说明!!!',
|
|
|
|
componentProps: { |
|
|
|
enterSearch: true, |
|
|
|
isSearchList: true, // 开启查询弹窗
|
|
|
|
searchListPlaceholder: '请选择领用原因代码', // 输入框占位文本
|
|
|
|
searchField: 'code', // 查询弹窗赋值字段
|
|
|
|
searchTitle: '领用原因代码', // 查询弹窗标题
|
|
|
|
searchAllSchemas: SubjectAccount.allSchemas, // 查询弹窗所需类
|
|
|
|
searchPage: SubjectAccountApi.getSubjectAccountPage, // 查询弹窗所需分页方法
|
|
|
|
searchCondition: [{ |
|
|
|
key: 'available', |
|
|
|
value: 'TRUE', |
|
|
|
isMainValue: false |
|
|
|
},{ |
|
|
|
key: 'costcentreType', |
|
|
|
value: 'costCenterType', |
|
|
|
message: '成本中心类型不能为空!', |
|
|
|
isMainValue: true |
|
|
|
}], |
|
|
|
verificationParams: [{ |
|
|
|
key: 'code', |
|
|
|
action: '==', |
|
|
|
value: '', |
|
|
|
isMainValue: false, |
|
|
|
isSearch: true, |
|
|
|
isFormModel: true, |
|
|
|
}], // 失去焦点校验参数
|
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '状态', |
|
|
@ -689,6 +690,9 @@ export const ProductscrapRequestMainRules = reactive({ |
|
|
|
costCenterCode: [ |
|
|
|
{ required: true, message: '请选择成本中心代码', trigger: 'change' } |
|
|
|
], |
|
|
|
reasonCodeRequisition: [ |
|
|
|
{ required: true, message: '请选择原因代码', trigger: 'change' } |
|
|
|
], |
|
|
|
// dueTime: [
|
|
|
|
// { required: true, message: '请选择截止时间', trigger: 'change' }
|
|
|
|
// ],
|
|
|
|