|
|
@ -424,6 +424,9 @@ export const UnplannedissueRequestMainRules = reactive({ |
|
|
|
remark: [ |
|
|
|
{ max: 50, message: '不得超过50个字符', trigger: 'blur' } |
|
|
|
], |
|
|
|
usageDescription:[ |
|
|
|
{ required: true, message: '请选择领用描述', trigger: 'blur' } |
|
|
|
], |
|
|
|
}) |
|
|
|
|
|
|
|
/** |
|
|
@ -585,6 +588,94 @@ export const UnplannedissueRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '成本中心代码', |
|
|
|
field: 'costcentreCode', |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
tableForm:{ |
|
|
|
isInpuFocusShow: true, // 开启查询弹窗
|
|
|
|
searchListPlaceholder: '选择成本中心', |
|
|
|
searchField: 'costcentreCode', |
|
|
|
searchTitle: '成本中心信息', |
|
|
|
searchAllSchemas: SubjectAccount.allSchemas, |
|
|
|
searchPage: SubjectAccountApi.getSubjectAccountPage, |
|
|
|
searchCondition: [{ |
|
|
|
key: 'code', // 查询列表中字段
|
|
|
|
value: 'usageCode', // 指查询具体值
|
|
|
|
message: '请选择领用描述!1111', // 当前置条件为空时 弹出信息提示
|
|
|
|
isMainValue: true // 表示查询条件不是主表的字段的值
|
|
|
|
}] |
|
|
|
}, |
|
|
|
form: { |
|
|
|
// labelMessage: '信息提示说明!!!',
|
|
|
|
componentProps: { |
|
|
|
isSearchList: true, // 开启查询弹窗
|
|
|
|
searchListPlaceholder: '选择成本中心', |
|
|
|
searchField: 'costcentreCode', |
|
|
|
searchTitle: '成本中心信息', |
|
|
|
searchAllSchemas: SubjectAccount.allSchemas, |
|
|
|
searchPage: SubjectAccountApi.getSubjectAccountPage, |
|
|
|
searchCondition: [{ |
|
|
|
key: 'code', // 查询列表中字段
|
|
|
|
value: 'usageCode', // 指查询具体值
|
|
|
|
message: '请选择领用描述!', // 当前置条件为空时 弹出信息提示
|
|
|
|
isMainValue: true // 表示查询条件不是主表的字段的值
|
|
|
|
}] |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '科目代码', |
|
|
|
field: 'qadProjectCode', |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
tableForm:{ |
|
|
|
isInpuFocusShow: true, // 开启查询弹窗
|
|
|
|
searchListPlaceholder: '选择科目代码', |
|
|
|
searchField: 'projectCode', |
|
|
|
searchTitle: '科目代码信息', |
|
|
|
searchAllSchemas: SubjectAccount.allSchemas, |
|
|
|
searchPage: SubjectAccountApi.getSubjectAccountPage, |
|
|
|
searchCondition: [{ |
|
|
|
key: 'code', // 查询列表中字段
|
|
|
|
value: 'usageCode', // 指查询具体值
|
|
|
|
message: '请选择领用描述!', // 当前置条件为空时 弹出信息提示
|
|
|
|
isMainValue: true // 表示查询条件不是主表的字段的值
|
|
|
|
},{ |
|
|
|
key: 'costcentreCode', // 查询列表中字段
|
|
|
|
value: 'costcentreCode', // 指查询具体值
|
|
|
|
message: '请成本中心代码!', // 当前置条件为空时 弹出信息提示
|
|
|
|
isMainValue: true // 表示查询条件不是主表的字段的值
|
|
|
|
}] |
|
|
|
}, |
|
|
|
form: { |
|
|
|
// labelMessage: '信息提示说明!!!',
|
|
|
|
componentProps: { |
|
|
|
isSearchList: true, // 开启查询弹窗
|
|
|
|
searchListPlaceholder: '选择成本中心', |
|
|
|
searchField: 'projectCode', |
|
|
|
searchTitle: '成本中心信息', |
|
|
|
searchAllSchemas: SubjectAccount.allSchemas, |
|
|
|
searchPage: SubjectAccountApi.getSubjectAccountPage, |
|
|
|
searchCondition: [{ |
|
|
|
key: 'code', // 查询列表中字段
|
|
|
|
value: 'usageCode', // 指查询具体值
|
|
|
|
message: '请选择领用描述!', // 当前置条件为空时 弹出信息提示
|
|
|
|
isMainValue: true // 表示查询条件不是主表的字段的值
|
|
|
|
},{ |
|
|
|
key: 'costcentreCode', // 查询列表中字段
|
|
|
|
value: 'costecentreCode', // 指查询具体值
|
|
|
|
message: '请成本中心代码!', // 当前置条件为空时 弹出信息提示
|
|
|
|
isMainValue: false // 表示查询条件不是主表的字段的值
|
|
|
|
}] |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '项目代码', |
|
|
|
field: 'projectCode', |
|
|
@ -594,6 +685,7 @@ export const UnplannedissueRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
|
}, |
|
|
|
isTableForm: false, |
|
|
|
isForm: false, |
|
|
|
isTable:false, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '从货主代码', |
|
|
@ -603,7 +695,8 @@ export const UnplannedissueRequestDetail = useCrudSchemas(reactive<CrudSchema[]> |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
isForm: false, |
|
|
|
isTableForm: false |
|
|
|
isTableForm: false, |
|
|
|
isTable:false, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '备注', |
|
|
@ -724,4 +817,10 @@ export const UnplannedissueRequestDetailRules = reactive({ |
|
|
|
remark: [ |
|
|
|
{ max: 50, message: '不得超过50个字符', trigger: 'blur' } |
|
|
|
], |
|
|
|
costcentreCode:[ |
|
|
|
{ required: true, message: '请选择成本中心代码', trigger: 'change' } |
|
|
|
], |
|
|
|
qadProjectCode:[ |
|
|
|
{ required: true, message: '请选择科目代码', trigger: 'change' } |
|
|
|
] |
|
|
|
}) |