|
|
@@ -28,7 +28,6 @@
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
-
|
|
|
<el-col :span="6">
|
|
|
<el-form-item label="被保人">
|
|
|
<el-input
|
|
|
@@ -49,6 +48,50 @@
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+
|
|
|
+
|
|
|
+ <el-col :span="6">
|
|
|
+ <el-form-item label="险种">
|
|
|
+ <el-input
|
|
|
+ v-model="pageRequest.insuranceType"
|
|
|
+ placeholder="请输入险种"
|
|
|
+ class="widths"
|
|
|
+ clearable
|
|
|
+ ></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="6">
|
|
|
+ <el-form-item label="交强保单号:">
|
|
|
+ <el-input
|
|
|
+ v-model="pageRequest.jqPolicyId"
|
|
|
+ placeholder="请输入交强保单号"
|
|
|
+ class="widths"
|
|
|
+ clearable
|
|
|
+ ></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="6">
|
|
|
+ <el-form-item label="商业保单号:">
|
|
|
+ <el-input
|
|
|
+ v-model="pageRequest.syPolicyId"
|
|
|
+ placeholder="请输入商业保单号"
|
|
|
+ class="widths"
|
|
|
+ clearable
|
|
|
+ ></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="6">
|
|
|
+ <el-form-item label="非车保单号:">
|
|
|
+ <el-input
|
|
|
+ v-model="pageRequest.nonCarPolicyId"
|
|
|
+ placeholder="请输入非车保单号"
|
|
|
+ class="widths"
|
|
|
+ clearable
|
|
|
+ ></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+
|
|
|
+
|
|
|
<el-col :span="6">
|
|
|
<el-form-item label="运营团队">
|
|
|
<el-input
|
|
|
@@ -60,7 +103,17 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
- <el-form-item label="结算状态">
|
|
|
+ <el-form-item label="保司机构">
|
|
|
+ <el-input
|
|
|
+ v-model="pageRequest.insuranceDept"
|
|
|
+ placeholder="请输入保司机构"
|
|
|
+ class="widths"
|
|
|
+ clearable
|
|
|
+ ></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="6">
|
|
|
+ <el-form-item label="渠道结算状态">
|
|
|
<el-select v-model="pageRequest.clearingState" placeholder="请选择状态" class="widths">
|
|
|
<el-option label="未结算" value="0"></el-option>
|
|
|
<el-option label="已结算" value="1"></el-option>
|
|
|
@@ -188,6 +241,11 @@ export default {
|
|
|
insuredName: "",
|
|
|
licenseNo: "",
|
|
|
operationsTeam: "",
|
|
|
+ insuranceType:"",
|
|
|
+ insuranceDept:"",
|
|
|
+ jqPolicyId:"",
|
|
|
+ syPolicyId:"",
|
|
|
+ nonCarPolicyId:"",
|
|
|
},
|
|
|
// 右侧列表查询数据Start
|
|
|
pageResult: [],
|
|
|
@@ -195,7 +253,7 @@ export default {
|
|
|
//数据列
|
|
|
{ prop: "operationsTeam", label: "运营团队", minWidth: 160 },
|
|
|
{ prop: "channelClassification", label: "渠道分类", minWidth: 160 },
|
|
|
- { prop: "signDate", label: "签约日期", minWidth: 160 },
|
|
|
+ { prop: "signDate", label: "签单日期", minWidth: 160 },
|
|
|
{ prop: "channel", label: "渠道", minWidth: 100 },
|
|
|
{ prop: "licenseNo", label: "车牌号", minWidth: 160 },
|
|
|
{ prop: "insuredName", label: "被保险人", minWidth: 160 },
|