|
@@ -8,7 +8,7 @@
|
|
|
<el-tab-pane :label="`审核不通过(${reviewRejectedlength})`" name="reviewRejected">
|
|
<el-tab-pane :label="`审核不通过(${reviewRejectedlength})`" name="reviewRejected">
|
|
|
</el-tab-pane>
|
|
</el-tab-pane>
|
|
|
</el-tabs>
|
|
</el-tabs>
|
|
|
- <SearchForm :fields="visibleFields" :formInline="formInline" :onSearch="agreementQuery" :onReset="resetForm" />
|
|
|
|
|
|
|
+ <SearchForm :fields="visibleFields" :formInline="formInline" :onSearch="agreementQuery" :onReset="resetForm" :span="6" />
|
|
|
<ComplexTable :tableData="companylist" :columns="columns" :showIndex="false" :columnwidth="200" :showSelect="true"
|
|
<ComplexTable :tableData="companylist" :columns="columns" :showIndex="false" :columnwidth="200" :showSelect="true"
|
|
|
:pageInfo="pageInfo" @getList="getList" @selectionChange="selectionChange" uniqueIdName="costId">
|
|
:pageInfo="pageInfo" @getList="getList" @selectionChange="selectionChange" uniqueIdName="costId">
|
|
|
<template #ruleDescription="{ data, bodyCell }">
|
|
<template #ruleDescription="{ data, bodyCell }">
|
|
@@ -294,7 +294,7 @@ const getAgreement = () => {
|
|
|
}
|
|
}
|
|
|
const columns = [
|
|
const columns = [
|
|
|
{
|
|
{
|
|
|
- prop: "agreementAbbreviation", label: "协议信息", width: '300',
|
|
|
|
|
|
|
+ prop: "agreementAbbreviation", label: "协议信息", width: '300', fixed: 'left',
|
|
|
formatter: (row: any) => {
|
|
formatter: (row: any) => {
|
|
|
return `${row.agreementCode}\n${row.agreementAbbreviation}`
|
|
return `${row.agreementCode}\n${row.agreementAbbreviation}`
|
|
|
}
|
|
}
|
|
@@ -302,7 +302,7 @@ const columns = [
|
|
|
{ prop: "effectiveTime", label: "生效时间", width: '200' },
|
|
{ prop: "effectiveTime", label: "生效时间", width: '200' },
|
|
|
{ prop: "failureTime", label: "失效时间", width: '200' },
|
|
{ prop: "failureTime", label: "失效时间", width: '200' },
|
|
|
{
|
|
{
|
|
|
- prop: "ruleDescription", label: "承保规则", component: 'customSlot', width: '500'
|
|
|
|
|
|
|
+ prop: "ruleDescription", label: "承保规则", component: 'customSlot', width: '800'
|
|
|
},
|
|
},
|
|
|
{ prop: "productName", label: "险种", width: '120', },
|
|
{ prop: "productName", label: "险种", width: '120', },
|
|
|
{ prop: "costDescribe", label: "费用描述", width: '500', },
|
|
{ prop: "costDescribe", label: "费用描述", width: '500', },
|
|
@@ -566,6 +566,7 @@ const resetForm = () => {
|
|
|
formInline.validState = "";
|
|
formInline.validState = "";
|
|
|
formInline.effectiveTime = [];
|
|
formInline.effectiveTime = [];
|
|
|
formInline.failureTime = [];
|
|
formInline.failureTime = [];
|
|
|
|
|
+ formInline.companyId = '';//保险公司id
|
|
|
if (activeName.value == 'pendingReview') {
|
|
if (activeName.value == 'pendingReview') {
|
|
|
findpage("0");
|
|
findpage("0");
|
|
|
} else if (activeName.value == 'pass') {
|
|
} else if (activeName.value == 'pass') {
|