|
|
@@ -3,7 +3,7 @@
|
|
|
<div>
|
|
|
<el-drawer v-model="props.ruleFeeVisible" :direction="direction" :close-on-click-modal="true" size="57%" @close="close">
|
|
|
<template #header>
|
|
|
- <h4>{{ props.headerTitle }}费用编辑</h4>
|
|
|
+ <h4>{{ props.headerTitle }}{{ props.titleType || '费用编辑' }}</h4>
|
|
|
</template>
|
|
|
<template #default>
|
|
|
<div class="rejectionReason flex a-start" v-if="costitemEditInfo.reviewDescription">
|
|
|
@@ -187,6 +187,7 @@ const props = defineProps<{
|
|
|
RulesInfo: any,//费用信息
|
|
|
costitemEditInfo: any,//编辑回显数据
|
|
|
headerTitle?: string,//抽屉name
|
|
|
+ titleType?: string,//抽屉title类型
|
|
|
operationType?: string,//操作类型
|
|
|
}>();
|
|
|
const emits = defineEmits(["cancel", 'save', 'auditOperation', 'rejectOperation']);
|