|
|
@@ -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="是否含增值税结算:">
|
|
|
@@ -116,7 +116,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>
|
|
|
@@ -668,6 +668,8 @@ const agreementRulesList = () => {
|
|
|
RulesList.value = res.data.map(v => {
|
|
|
const index = RulesList.value.findIndex(k => k.id === v.id)
|
|
|
const ruleFeeShow = RulesList.value[index]?.ruleFeeShow
|
|
|
+ const date = RulesList.value[index]?.date
|
|
|
+ const searchInput = RulesList.value[index]?.searchInput
|
|
|
const ruleFeeActive = RulesList.value[index]?.ruleFeeActive ?? v.costVoList[0]?.productName
|
|
|
const arr = v.costVoList.map(k => k.ptlAgreementCostVoList)
|
|
|
const costAll = {
|
|
|
@@ -680,6 +682,8 @@ const agreementRulesList = () => {
|
|
|
...v,
|
|
|
costVoList: [...v.costVoList, costAll],
|
|
|
ruleFeeShow,
|
|
|
+ date,
|
|
|
+ searchInput,
|
|
|
ruleFeeActive,
|
|
|
}
|
|
|
});
|