|
|
@ -45,7 +45,7 @@ |
|
|
|
:apiDelete="ApplicationRecordDetailApi.deleteApplicationRecordDetail" |
|
|
|
@searchTableSuccessDetail="searchTableSuccessDetail" |
|
|
|
:isShowAddBtn="false" |
|
|
|
:detailButtonIsShow="true" /> |
|
|
|
:detailButtonIsShow="true" @detailSubmitForm="detailSubmitForm"/> |
|
|
|
<!-- 审批详情 --> |
|
|
|
<approveDetail ref="detailRef1" :isBasic="false" :allSchemas="ApplicationRecordMain.allSchemas" |
|
|
|
:detailAllSchemas="ApplicationRecordDetail.allSchemas" :detailAllSchemasRules="ApplicationRecordDetailRules" |
|
|
@ -332,7 +332,22 @@ |
|
|
|
} |
|
|
|
}) |
|
|
|
} |
|
|
|
|
|
|
|
const detailSubmitForm =async (formType, data, formRef) => { |
|
|
|
try { |
|
|
|
if (formType === 'create') { |
|
|
|
await ApplicationRecordDetailApi.createApplicationRecordDetail(data) |
|
|
|
message.success(t('common.createSuccess')) |
|
|
|
} else { |
|
|
|
await ApplicationRecordDetailApi.updateApplicationRecordDetail(data) |
|
|
|
message.success(t('common.updateSuccess')) |
|
|
|
} |
|
|
|
formRef.dialogVisible = false |
|
|
|
// 刷新当前列表 |
|
|
|
detailRef.value.getList() |
|
|
|
} finally { |
|
|
|
formRef.formLoading = false |
|
|
|
} |
|
|
|
} |
|
|
|
/** 初始化 **/ |
|
|
|
onMounted(async () => { |
|
|
|
getList() |
|
|
|