|
|
@@ -153,6 +153,7 @@ const formInline = reactive({
|
|
|
failureTime: [],
|
|
|
auditTimeBegin: "",//审核时间开始
|
|
|
auditTimeEnd: "",//审核时间结束
|
|
|
+ costDescribes: [],//费用描述
|
|
|
companyId: '',//保险公司id
|
|
|
})
|
|
|
const companylist = computed(() => {
|
|
|
@@ -193,6 +194,9 @@ const fields = ref([
|
|
|
{
|
|
|
label: "承保规则", model: "rulesName", type: "input", placeholder: "输入业务规则查找",
|
|
|
},
|
|
|
+ {
|
|
|
+ label: "费用描述", model: "costDescribes", type: "inputTag", placeholder: "输入费用描述关键字查找",
|
|
|
+ },
|
|
|
{
|
|
|
label: "费用规则", model: "costRules", type: "inputTag", placeholder: "输入费用规则关键字查找",
|
|
|
},
|
|
|
@@ -308,7 +312,7 @@ const columns = [
|
|
|
prop: "ruleDescription", label: "承保规则", component: 'customSlot', width: '800'
|
|
|
},
|
|
|
{ prop: "productName", label: "险种", width: '120', },
|
|
|
- { prop: "costDescribe", label: "费用描述", width: '500',component: 'customSlot', },
|
|
|
+ { prop: "costDescribes", label: "费用描述", width: '500',component: 'customSlot', },
|
|
|
{
|
|
|
prop: "costRules", label: "费用规则", component: 'customSlot', width: '500',
|
|
|
},
|
|
|
@@ -569,6 +573,7 @@ const resetForm = () => {
|
|
|
formInline.validState = "";
|
|
|
formInline.effectiveTime = [];
|
|
|
formInline.failureTime = [];
|
|
|
+ formInline.costDescribes = [];//费用描述
|
|
|
formInline.companyId = '';//保险公司id
|
|
|
if (activeName.value == 'pendingReview') {
|
|
|
findpage("0");
|