|
@@ -1,6 +1,10 @@
|
|
|
<!-- 模板区域 -->
|
|
<!-- 模板区域 -->
|
|
|
<template>
|
|
<template>
|
|
|
<div>
|
|
<div>
|
|
|
|
|
+ <div class="flex a-c">
|
|
|
|
|
+ <el-input v-model="pageRequest.companyName" clearable :size="overSize" placeholder="保险公司名称" style="width: 300px;margin: 10px 20px 10px 0;"></el-input>
|
|
|
|
|
+ <el-button type="primary" :size="overSize" @click="companyQuery">查询</el-button>
|
|
|
|
|
+ </div>
|
|
|
<kt-common-table :tableHeights="700" :SerialShow="false" :operationWidth="300" :showOperation="true"
|
|
<kt-common-table :tableHeights="700" :SerialShow="false" :operationWidth="300" :showOperation="true"
|
|
|
:showBatchDelete="false" :showBatchSettled="false" :showBatchPrint="false" :data="solutionResult" button2Name="规则配置"
|
|
:showBatchDelete="false" :showBatchSettled="false" :showBatchPrint="false" :data="solutionResult" button2Name="规则配置"
|
|
|
button2Type="text" @handleButton2="attrConfig" button3Name="已配置方案" button3Type="text" @handleButton3="solutionConfig"
|
|
button2Type="text" @handleButton2="attrConfig" button3Name="已配置方案" button3Type="text" @handleButton3="solutionConfig"
|
|
@@ -27,6 +31,7 @@ export default {
|
|
|
solutionResult: [],
|
|
solutionResult: [],
|
|
|
//操作符字典
|
|
//操作符字典
|
|
|
pageRequest: {
|
|
pageRequest: {
|
|
|
|
|
+ companyName:"",
|
|
|
pageNum: 1,
|
|
pageNum: 1,
|
|
|
pageSize: 20,
|
|
pageSize: 20,
|
|
|
},
|
|
},
|
|
@@ -38,6 +43,9 @@ export default {
|
|
|
},
|
|
},
|
|
|
// 方法函数
|
|
// 方法函数
|
|
|
methods: {
|
|
methods: {
|
|
|
|
|
+ companyQuery(){
|
|
|
|
|
+ this.companyFindPage();
|
|
|
|
|
+ },
|
|
|
companyFindPage(data) {
|
|
companyFindPage(data) {
|
|
|
if (data && data.pageRequest) {
|
|
if (data && data.pageRequest) {
|
|
|
this.pageRequest.pageNum = data.pageRequest.pageNum;
|
|
this.pageRequest.pageNum = data.pageRequest.pageNum;
|