|
@@ -11,7 +11,7 @@
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
<el-col :span="6">
|
|
|
- <el-form-item label="修改人">
|
|
|
|
|
|
|
+ <el-form-item label="修改人">
|
|
|
<el-input :size="overSize" clearable v-model.trim="queryForm.modifiedBy" placeholder="请输入"></el-input>
|
|
<el-input :size="overSize" clearable v-model.trim="queryForm.modifiedBy" placeholder="请输入"></el-input>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
@@ -104,11 +104,17 @@
|
|
|
<el-table-column prop="endDate" label="协议失效日期" align="center"></el-table-column>
|
|
<el-table-column prop="endDate" label="协议失效日期" align="center"></el-table-column>
|
|
|
<el-table-column prop="matchType" label="匹配日期类型" align="center" :formatter="matchtypeFormatter"></el-table-column>
|
|
<el-table-column prop="matchType" label="匹配日期类型" align="center" :formatter="matchtypeFormatter"></el-table-column>
|
|
|
<el-table-column prop="moneyTime" label="结算周期" align="center" :formatter="moneytimeFormatter"></el-table-column>
|
|
<el-table-column prop="moneyTime" label="结算周期" align="center" :formatter="moneytimeFormatter"></el-table-column>
|
|
|
- <el-table-column prop="validStatus" label="状态" align="center" :formatter="agreestatusFormatter"></el-table-column>
|
|
|
|
|
|
|
+ <el-table-column prop="auditStatus" label="状态" align="center" >
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <span :style="'color:'+agreestatusStyle(scope.row.auditStatus)">
|
|
|
|
|
+ {{auditstatusFormatter(scope.row)}}
|
|
|
|
|
+ </span>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
<el-table-column prop="updateTime" label="修改时间" align="center" :formatter="updatetimeFormatter"></el-table-column>
|
|
<el-table-column prop="updateTime" label="修改时间" align="center" :formatter="updatetimeFormatter"></el-table-column>
|
|
|
<el-table-column prop="validStatus" label="是否有效" align="center">
|
|
<el-table-column prop="validStatus" label="是否有效" align="center">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
- <span :size="overSize" type="primary">{{
|
|
|
|
|
|
|
+ <span :style="{ color: scope.row.validStatus == '1'?'#67c23a':'#909399' }">{{
|
|
|
scope.row.validStatus == 1 ? "有效" : "无效" }}</span>
|
|
scope.row.validStatus == 1 ? "有效" : "无效" }}</span>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
@@ -670,6 +676,55 @@
|
|
|
</el-dialog>
|
|
</el-dialog>
|
|
|
|
|
|
|
|
<el-dialog title="产品历史记录" :visible.sync="productHistoryRecordDialogVisible" width="70%" :fullscreen="true">
|
|
<el-dialog title="产品历史记录" :visible.sync="productHistoryRecordDialogVisible" width="70%" :fullscreen="true">
|
|
|
|
|
+ <el-row class="queryFrom">
|
|
|
|
|
+ <el-form ref="queryFormRef" :model="productHistoryRecordForm" label-width="80px">
|
|
|
|
|
+ <el-col :span="5">
|
|
|
|
|
+ <el-form-item label="操作人">
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ clearable
|
|
|
|
|
+ style="width:220px"
|
|
|
|
|
+ size="small"
|
|
|
|
|
+ placeholder="操作人"
|
|
|
|
|
+ v-model="productHistoryRecordForm.modifier"
|
|
|
|
|
+ ></el-input>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <el-col :span="5">
|
|
|
|
|
+ <el-form-item label="操作类型">
|
|
|
|
|
+ <el-select clearable size="small" v-model="productHistoryRecordForm.operatorType" placeholder="请选择">
|
|
|
|
|
+ <el-option
|
|
|
|
|
+ v-for="item in operationTypeOption"
|
|
|
|
|
+ :key="item.value"
|
|
|
|
|
+ :label="item.label"
|
|
|
|
|
+ :value="item.value">
|
|
|
|
|
+ </el-option>
|
|
|
|
|
+ </el-select>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <el-col :span="5">
|
|
|
|
|
+ <el-form-item label="操作时间">
|
|
|
|
|
+ <el-date-picker
|
|
|
|
|
+ clearable
|
|
|
|
|
+ v-model="productHistoryRecordForm.operatorTime"
|
|
|
|
|
+ type="date"
|
|
|
|
|
+ size="small"
|
|
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
|
|
+ placeholder="选择日期">
|
|
|
|
|
+ </el-date-picker>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <el-col :span="3">
|
|
|
|
|
+ <el-form-item label="">
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ size="small"
|
|
|
|
|
+ type="primary"
|
|
|
|
|
+ @click="productHistoryCostFindPage"
|
|
|
|
|
+ >查询</el-button
|
|
|
|
|
+ >
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ </el-form>
|
|
|
|
|
+ </el-row>
|
|
|
<kt-common-table :tableHeights="700" :SerialShow="false" :operationWidth="200" :showOperation="true"
|
|
<kt-common-table :tableHeights="700" :SerialShow="false" :operationWidth="200" :showOperation="true"
|
|
|
button2Name="详情" @handleButton2="productHistoryDetails" :showBatchDelete="false" :showBatchSettled="false"
|
|
button2Name="详情" @handleButton2="productHistoryDetails" :showBatchDelete="false" :showBatchSettled="false"
|
|
|
:showBatchPrint="false" :data="productHistoryRecordResult" :columns="productHistoryRecordColumns"
|
|
:showBatchPrint="false" :data="productHistoryRecordResult" :columns="productHistoryRecordColumns"
|
|
@@ -678,6 +733,55 @@
|
|
|
</el-dialog>
|
|
</el-dialog>
|
|
|
<el-dialog title="承保规则历史记录" :visible.sync="underwritingRulesHistoryRecordDialogVisible" width="70%"
|
|
<el-dialog title="承保规则历史记录" :visible.sync="underwritingRulesHistoryRecordDialogVisible" width="70%"
|
|
|
:fullscreen="true">
|
|
:fullscreen="true">
|
|
|
|
|
+ <el-row class="queryFrom">
|
|
|
|
|
+ <el-form ref="queryFormRef" :model="underwritingRulesHistoryCostFindForm" label-width="80px">
|
|
|
|
|
+ <el-col :span="5">
|
|
|
|
|
+ <el-form-item label="操作人">
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ clearable
|
|
|
|
|
+ style="width:220px"
|
|
|
|
|
+ size="small"
|
|
|
|
|
+ placeholder="操作人"
|
|
|
|
|
+ v-model="underwritingRulesHistoryCostFindForm.modifier"
|
|
|
|
|
+ ></el-input>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <el-col :span="5">
|
|
|
|
|
+ <el-form-item label="操作类型">
|
|
|
|
|
+ <el-select clearable size="small" v-model="underwritingRulesHistoryCostFindForm.operatorType" placeholder="请选择">
|
|
|
|
|
+ <el-option
|
|
|
|
|
+ v-for="item in operationTypeOption"
|
|
|
|
|
+ :key="item.value"
|
|
|
|
|
+ :label="item.label"
|
|
|
|
|
+ :value="item.value">
|
|
|
|
|
+ </el-option>
|
|
|
|
|
+ </el-select>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <el-col :span="5">
|
|
|
|
|
+ <el-form-item label="操作时间">
|
|
|
|
|
+ <el-date-picker
|
|
|
|
|
+ clearable
|
|
|
|
|
+ v-model="underwritingRulesHistoryCostFindForm.operatorTime"
|
|
|
|
|
+ type="date"
|
|
|
|
|
+ size="small"
|
|
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
|
|
+ placeholder="选择日期">
|
|
|
|
|
+ </el-date-picker>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <el-col :span="3">
|
|
|
|
|
+ <el-form-item label="">
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ size="small"
|
|
|
|
|
+ type="primary"
|
|
|
|
|
+ @click="underwritingRulesHistoryCostFindPage"
|
|
|
|
|
+ >查询</el-button
|
|
|
|
|
+ >
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ </el-form>
|
|
|
|
|
+ </el-row>
|
|
|
<kt-common-table :tableHeights="700" :SerialShow="false" :operationWidth="200" :showOperation="true"
|
|
<kt-common-table :tableHeights="700" :SerialShow="false" :operationWidth="200" :showOperation="true"
|
|
|
:showBatchDelete="false" :showBatchSettled="false" :showBatchPrint="false" button2Name="详情"
|
|
:showBatchDelete="false" :showBatchSettled="false" :showBatchPrint="false" button2Name="详情"
|
|
|
@handleButton2="underwritingRulesHistoryDetails" :data="underwritingRulesHistoryRecordResult"
|
|
@handleButton2="underwritingRulesHistoryDetails" :data="underwritingRulesHistoryRecordResult"
|
|
@@ -685,6 +789,55 @@
|
|
|
</kt-common-table>
|
|
</kt-common-table>
|
|
|
</el-dialog>
|
|
</el-dialog>
|
|
|
<el-dialog title="协议历史记录" :visible.sync="agreementHistoryRecordDialogVisible" width="70%" :fullscreen="true">
|
|
<el-dialog title="协议历史记录" :visible.sync="agreementHistoryRecordDialogVisible" width="70%" :fullscreen="true">
|
|
|
|
|
+ <el-row class="queryFrom">
|
|
|
|
|
+ <el-form ref="queryFormRef" :model="productpageRequestForm" label-width="80px">
|
|
|
|
|
+ <el-col :span="5">
|
|
|
|
|
+ <el-form-item label="操作人">
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ clearable
|
|
|
|
|
+ style="width:220px"
|
|
|
|
|
+ size="small"
|
|
|
|
|
+ placeholder="操作人"
|
|
|
|
|
+ v-model="productpageRequestForm.modifier"
|
|
|
|
|
+ ></el-input>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <el-col :span="5">
|
|
|
|
|
+ <el-form-item label="操作类型">
|
|
|
|
|
+ <el-select clearable size="small" v-model="productpageRequestForm.operatorType" placeholder="请选择">
|
|
|
|
|
+ <el-option
|
|
|
|
|
+ v-for="item in operationTypeOption"
|
|
|
|
|
+ :key="item.value"
|
|
|
|
|
+ :label="item.label"
|
|
|
|
|
+ :value="item.value">
|
|
|
|
|
+ </el-option>
|
|
|
|
|
+ </el-select>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <el-col :span="5">
|
|
|
|
|
+ <el-form-item label="操作时间">
|
|
|
|
|
+ <el-date-picker
|
|
|
|
|
+ clearable
|
|
|
|
|
+ v-model="productpageRequestForm.operatorTime"
|
|
|
|
|
+ type="date"
|
|
|
|
|
+ size="small"
|
|
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
|
|
+ placeholder="选择日期">
|
|
|
|
|
+ </el-date-picker>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <el-col :span="3">
|
|
|
|
|
+ <el-form-item label="">
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ size="small"
|
|
|
|
|
+ type="primary"
|
|
|
|
|
+ @click="agreementHistoryCostFindPage"
|
|
|
|
|
+ >查询</el-button
|
|
|
|
|
+ >
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ </el-form>
|
|
|
|
|
+ </el-row>
|
|
|
<kt-common-table :tableHeights="700" :SerialShow="false" :operationWidth="200" :showOperation="true"
|
|
<kt-common-table :tableHeights="700" :SerialShow="false" :operationWidth="200" :showOperation="true"
|
|
|
button2Name="详情" @handleButton2="agreementsHistory" :showBatchDelete="false" :showBatchSettled="false"
|
|
button2Name="详情" @handleButton2="agreementsHistory" :showBatchDelete="false" :showBatchSettled="false"
|
|
|
:showBatchPrint="false" :data="agreementHistoryRecordResult" :columns="agreementHistoryRecordColumns"
|
|
:showBatchPrint="false" :data="agreementHistoryRecordResult" :columns="agreementHistoryRecordColumns"
|
|
@@ -975,45 +1128,57 @@ export default {
|
|
|
},
|
|
},
|
|
|
data() {
|
|
data() {
|
|
|
return {
|
|
return {
|
|
|
|
|
+ operationTypeOption:[
|
|
|
|
|
+ {
|
|
|
|
|
+ label:'新增',
|
|
|
|
|
+ value:'add'
|
|
|
|
|
+ },{
|
|
|
|
|
+ label:'修改',
|
|
|
|
|
+ value:'update'
|
|
|
|
|
+ },{
|
|
|
|
|
+ label:'删除',
|
|
|
|
|
+ value:'delete'
|
|
|
|
|
+ },
|
|
|
|
|
+ ],
|
|
|
areaOptions: [],
|
|
areaOptions: [],
|
|
|
productCostCopyInfo: {},
|
|
productCostCopyInfo: {},
|
|
|
agreementHistoryRecordColumns: [
|
|
agreementHistoryRecordColumns: [
|
|
|
{ prop: "agreementCode", label: "协议代码", minWidth: 180 },
|
|
{ prop: "agreementCode", label: "协议代码", minWidth: 180 },
|
|
|
- { prop: "agreementName", label: " 协议名称", minWidth: 160 },
|
|
|
|
|
|
|
+ { prop: "agreementName", label: "协议名称", minWidth: 160 },
|
|
|
{ prop: "agreementAbbreviation", label: "协议简称", minWidth: 120 },
|
|
{ prop: "agreementAbbreviation", label: "协议简称", minWidth: 120 },
|
|
|
{
|
|
{
|
|
|
prop: "agreementType",
|
|
prop: "agreementType",
|
|
|
- label: " 协议类型",
|
|
|
|
|
|
|
+ label: "协议类型",
|
|
|
minWidth: 160,
|
|
minWidth: 160,
|
|
|
formatter: this.agreementtypeFormatter,
|
|
formatter: this.agreementtypeFormatter,
|
|
|
},
|
|
},
|
|
|
- { prop: "insuranceCompany", label: " 合作公司", minWidth: 160 },
|
|
|
|
|
- { prop: "dockingPerson", label: " 对接人", minWidth: 160 },
|
|
|
|
|
- { prop: "dockingPhone", label: " 联系方式(对接人)", minWidth: 160 },
|
|
|
|
|
- { prop: "withTax", label: " 含增值税结算", minWidth: 160 },
|
|
|
|
|
|
|
+ { prop: "insuranceCompany", label: "合作公司", minWidth: 160 },
|
|
|
|
|
+ { prop: "dockingPerson", label: "对接人", minWidth: 160 },
|
|
|
|
|
+ { prop: "dockingPhone", label: "联系方式(对接人)", minWidth: 160 },
|
|
|
|
|
+ { prop: "withTax", label: "含增值税结算", minWidth: 160 },
|
|
|
{
|
|
{
|
|
|
prop: "matchType",
|
|
prop: "matchType",
|
|
|
- label: " 保单日期类型",
|
|
|
|
|
|
|
+ label: "保单日期类型",
|
|
|
minWidth: 160,
|
|
minWidth: 160,
|
|
|
formatter: this.matchtypeFormatter,
|
|
formatter: this.matchtypeFormatter,
|
|
|
},
|
|
},
|
|
|
- { prop: "startDate", label: " 协议起期", minWidth: 160 },
|
|
|
|
|
- { prop: "endDate", label: " 协议止期", minWidth: 160 },
|
|
|
|
|
|
|
+ { prop: "startDate", label: "协议起期", minWidth: 160 },
|
|
|
|
|
+ { prop: "endDate", label: "协议止期", minWidth: 160 },
|
|
|
{
|
|
{
|
|
|
prop: "moneyType",
|
|
prop: "moneyType",
|
|
|
- label: " 佣金发放方式",
|
|
|
|
|
|
|
+ label: "佣金发放方式",
|
|
|
minWidth: 160,
|
|
minWidth: 160,
|
|
|
formatter: this.moneyTypeFormatter,
|
|
formatter: this.moneyTypeFormatter,
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
prop: "validStatus",
|
|
prop: "validStatus",
|
|
|
- label: " 有效状态",
|
|
|
|
|
|
|
+ label: "有效状态",
|
|
|
minWidth: 160,
|
|
minWidth: 160,
|
|
|
formatter: this.agreestatusFormatter,
|
|
formatter: this.agreestatusFormatter,
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
prop: "moneyTime",
|
|
prop: "moneyTime",
|
|
|
- label: " 结算周期",
|
|
|
|
|
|
|
+ label: "结算周期",
|
|
|
minWidth: 160,
|
|
minWidth: 160,
|
|
|
formatter: this.moneytimeFormatter,
|
|
formatter: this.moneytimeFormatter,
|
|
|
},
|
|
},
|
|
@@ -1022,8 +1187,10 @@ export default {
|
|
|
label: " 保险公司账号配置",
|
|
label: " 保险公司账号配置",
|
|
|
minWidth: 1060,
|
|
minWidth: 1060,
|
|
|
},
|
|
},
|
|
|
- { prop: "operator", label: " 操作人", minWidth: 160 },
|
|
|
|
|
- { prop: "operatorTime", label: " 操作时间", minWidth: 160 },
|
|
|
|
|
|
|
+ { prop: "operator", label: "操作人", minWidth: 160 },
|
|
|
|
|
+
|
|
|
|
|
+ { prop: "operatorType", label: "操作类型", formatter: this.operatorTypeFormatter },
|
|
|
|
|
+ { prop: "operatorTime", label: "操作时间", minWidth: 160 },
|
|
|
],
|
|
],
|
|
|
underwritingRulesHistoryRecordColumns: [
|
|
underwritingRulesHistoryRecordColumns: [
|
|
|
{ prop: "modifier", label: "操作人", minWidth: 120 },
|
|
{ prop: "modifier", label: "操作人", minWidth: 120 },
|
|
@@ -1842,6 +2009,11 @@ export default {
|
|
|
{ value: "2", label: "退回修改" },
|
|
{ value: "2", label: "退回修改" },
|
|
|
{ value: "99", label: "已失效" },
|
|
{ value: "99", label: "已失效" },
|
|
|
],
|
|
],
|
|
|
|
|
+ auditstatusoptions: [
|
|
|
|
|
+ { value: "0", label: "申请审核" },
|
|
|
|
|
+ { value: "1", label: "审核通过" },
|
|
|
|
|
+ { value: "2", label: "审核不通过" },
|
|
|
|
|
+ ],
|
|
|
prodInsurance: [],
|
|
prodInsurance: [],
|
|
|
schemeindex: "",
|
|
schemeindex: "",
|
|
|
productCostsindex: "",
|
|
productCostsindex: "",
|
|
@@ -1852,9 +2024,13 @@ export default {
|
|
|
productHistoryRecordResult: [],
|
|
productHistoryRecordResult: [],
|
|
|
underwritingRulesHistoryRecordDialogVisible: false,
|
|
underwritingRulesHistoryRecordDialogVisible: false,
|
|
|
underwritingRulesHistoryRecordResult: [],
|
|
underwritingRulesHistoryRecordResult: [],
|
|
|
|
|
+ productpageRequestForm:{},
|
|
|
|
|
+ productHistoryRecordForm:{},
|
|
|
|
|
+ underwritingRulesHistoryCostFindForm:{}
|
|
|
};
|
|
};
|
|
|
},
|
|
},
|
|
|
computed: {
|
|
computed: {
|
|
|
|
|
+
|
|
|
// 机构列表转属性数据
|
|
// 机构列表转属性数据
|
|
|
companyListTree() {
|
|
companyListTree() {
|
|
|
let cloneData = JSON.parse(JSON.stringify(this.companyList)); // 对源数据深度克隆
|
|
let cloneData = JSON.parse(JSON.stringify(this.companyList)); // 对源数据深度克隆
|
|
@@ -1942,6 +2118,18 @@ export default {
|
|
|
this.findLeftTreeData();
|
|
this.findLeftTreeData();
|
|
|
},
|
|
},
|
|
|
methods: {
|
|
methods: {
|
|
|
|
|
+ agreestatusStyle(val){
|
|
|
|
|
+ switch (val) {
|
|
|
|
|
+ case 0:
|
|
|
|
|
+ return '#409eff'
|
|
|
|
|
+ case 1:
|
|
|
|
|
+ return '#67c23a'
|
|
|
|
|
+ case 2:
|
|
|
|
|
+ return '#f56c6c'
|
|
|
|
|
+ default:
|
|
|
|
|
+ break;
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
productFilterListChange(e){
|
|
productFilterListChange(e){
|
|
|
let productstring=e.join(",")
|
|
let productstring=e.join(",")
|
|
|
this.agreement.productsCode=productstring;
|
|
this.agreement.productsCode=productstring;
|
|
@@ -2177,7 +2365,7 @@ export default {
|
|
|
}
|
|
}
|
|
|
this.productpageRequest["agreementId"] = this.agreementId;
|
|
this.productpageRequest["agreementId"] = this.agreementId;
|
|
|
this.$api.insCompany
|
|
this.$api.insCompany
|
|
|
- .agreementHistory(this.productpageRequest)
|
|
|
|
|
|
|
+ .agreementHistory({...this.productpageRequest,...this.productpageRequestForm})
|
|
|
.then((res) => {
|
|
.then((res) => {
|
|
|
this.agreementHistoryRecordResult = res.data;
|
|
this.agreementHistoryRecordResult = res.data;
|
|
|
});
|
|
});
|
|
@@ -2202,7 +2390,7 @@ export default {
|
|
|
}
|
|
}
|
|
|
this.productpageRequest["agreementId"] = this.agreementId;
|
|
this.productpageRequest["agreementId"] = this.agreementId;
|
|
|
this.$api.insCompany
|
|
this.$api.insCompany
|
|
|
- .productCostHistory(this.productpageRequest)
|
|
|
|
|
|
|
+ .productCostHistory({...this.productpageRequest,...this.productHistoryRecordForm})
|
|
|
.then((res) => {
|
|
.then((res) => {
|
|
|
this.productHistoryRecordResult = res.data;
|
|
this.productHistoryRecordResult = res.data;
|
|
|
});
|
|
});
|
|
@@ -2237,7 +2425,7 @@ export default {
|
|
|
}
|
|
}
|
|
|
this.productpageRequest["agreementId"] = this.agreementId;
|
|
this.productpageRequest["agreementId"] = this.agreementId;
|
|
|
this.$api.insCompany
|
|
this.$api.insCompany
|
|
|
- .undwrtRulesHistoryPage(this.productpageRequest)
|
|
|
|
|
|
|
+ .undwrtRulesHistoryPage({...this.productpageRequest,...this.underwritingRulesHistoryCostFindForm})
|
|
|
.then((res) => {
|
|
.then((res) => {
|
|
|
this.underwritingRulesHistoryRecordResult = res.data;
|
|
this.underwritingRulesHistoryRecordResult = res.data;
|
|
|
});
|
|
});
|
|
@@ -2782,15 +2970,6 @@ export default {
|
|
|
|
|
|
|
|
// 右侧列表的方法End
|
|
// 右侧列表的方法End
|
|
|
//-- formatter begin--
|
|
//-- formatter begin--
|
|
|
- operatorTypeFormatter(row, column) {
|
|
|
|
|
- let operatorType = row.operatorType;
|
|
|
|
|
- switch (operatorType) {
|
|
|
|
|
- case "add":
|
|
|
|
|
- return '新增'
|
|
|
|
|
- case "update":
|
|
|
|
|
- return '修改'
|
|
|
|
|
- }
|
|
|
|
|
- },
|
|
|
|
|
operatorTypeFormatter(row, column) {
|
|
operatorTypeFormatter(row, column) {
|
|
|
let operatorType = row.operatorType;
|
|
let operatorType = row.operatorType;
|
|
|
switch (operatorType) {
|
|
switch (operatorType) {
|
|
@@ -2851,6 +3030,15 @@ export default {
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
|
|
+ auditstatusFormatter(row, column) {
|
|
|
|
|
+ let status = row.auditStatus;
|
|
|
|
|
+ return CommonUtil.getDataName({
|
|
|
|
|
+ dataList: this.auditstatusoptions,
|
|
|
|
|
+ value: "value",
|
|
|
|
|
+ label: "label",
|
|
|
|
|
+ data: status,
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
validIndFormatter(row, column) {
|
|
validIndFormatter(row, column) {
|
|
|
let validInd = row.validInd;
|
|
let validInd = row.validInd;
|
|
|
if (validInd == 1) {
|
|
if (validInd == 1) {
|
|
@@ -3022,6 +3210,7 @@ export default {
|
|
|
};
|
|
};
|
|
|
</script>
|
|
</script>
|
|
|
<style scoped lang="scss">
|
|
<style scoped lang="scss">
|
|
|
|
|
+/* 图二 */
|
|
|
.el-divider {
|
|
.el-divider {
|
|
|
margin: 10px 0px 15px !important;
|
|
margin: 10px 0px 15px !important;
|
|
|
}
|
|
}
|