|
|
@@ -32,7 +32,7 @@
|
|
|
getDict('is_enable').find(val => val.value == agreementInfo.isEnable)?.label}}</el-tag>
|
|
|
<el-tag type="success">{{getDict('valid_status').find(val => val.value ==
|
|
|
agreementInfo.validStatus)?.label
|
|
|
- }}</el-tag>
|
|
|
+ }}</el-tag>
|
|
|
</div>
|
|
|
</div>
|
|
|
<el-descriptions :column="3" style="margin-top: 10px;">
|
|
|
@@ -50,9 +50,9 @@
|
|
|
</div>
|
|
|
<el-descriptions title="基本信息" class="m-top-20" :column="3">
|
|
|
<el-descriptions-item label="协议名称:">{{ agreementInfo.agreementTitle
|
|
|
- }}</el-descriptions-item>
|
|
|
+ }}</el-descriptions-item>
|
|
|
<el-descriptions-item label="协议简称:">{{ agreementInfo.agreementAbbreviation
|
|
|
- }}</el-descriptions-item>
|
|
|
+ }}</el-descriptions-item>
|
|
|
<el-descriptions-item label="协议生效时间:">{{ agreementInfo.startDate }}</el-descriptions-item>
|
|
|
<el-descriptions-item label="协议失效时间:">{{ agreementInfo.endDate }}</el-descriptions-item>
|
|
|
<el-descriptions-item label="是否含增值税结算:">
|
|
|
@@ -117,7 +117,7 @@
|
|
|
<div class="flex a-c">
|
|
|
<img src="../../../assets/images/fee.png" alt="">
|
|
|
<span style="margin-right: 30px;font-size: 16px;" class="strong m-left-10">承保规则一{{ index + 1
|
|
|
- }}</span>
|
|
|
+ }}</span>
|
|
|
</div>
|
|
|
<div class="flex">
|
|
|
<el-button link type="primary" :icon="CopyDocument" @click="handleCopy(item, {})">复制费用</el-button>
|
|
|
@@ -852,6 +852,15 @@ const columns = computed(() => [
|
|
|
return `起${row.effectiveTime}\n止${row.failureTime}`
|
|
|
}
|
|
|
},
|
|
|
+ {
|
|
|
+ prop: "approved", label: "审核状态", width: '200', component: "Tag", filters: getDict('audit_status').map(v => ({ text: v.label, value: Number(v.value) })),
|
|
|
+ formatter: (row: any) => {
|
|
|
+ let name = getDict('audit_status').find(val => val.value == row.approved).label
|
|
|
+ if (name) {
|
|
|
+ return { type: 'warning', text: name };
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
{ prop: "costDescribe", component: 'customSlot', label: "费用规则名称", width: '240', },
|
|
|
{ prop: "priorityLevel", label: "优先级", width: '100', },
|
|
|
{ prop: "costRules", component: 'customSlot', label: "费用规则", width: '240', },
|
|
|
@@ -908,15 +917,6 @@ const columns = computed(() => [
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
- {
|
|
|
- prop: "approved", label: "审核状态", width: '200', component: "Tag", filters: getDict('audit_status').map(v => ({ text: v.label, value: Number(v.value) })),
|
|
|
- formatter: (row: any) => {
|
|
|
- let name = getDict('audit_status').find(val => val.value == row.approved).label
|
|
|
- if (name) {
|
|
|
- return { type: 'warning', text: name };
|
|
|
- }
|
|
|
- }
|
|
|
- },
|
|
|
{
|
|
|
prop: "isValid", label: "有效状态", width: '200', filters: getDict('valid_status').map(v => ({ text: v.label, value: Number(v.value) })),
|
|
|
filteredValue: [0],
|
|
|
@@ -1533,7 +1533,7 @@ const submitUpdate1 = () => {
|
|
|
height: 18px;
|
|
|
margin-right: 20px;
|
|
|
content: "";
|
|
|
- margin-top: 2px;
|
|
|
+ margin-top: 6px;
|
|
|
background-color: #0083ff;
|
|
|
}
|
|
|
}
|