|
|
@@ -137,6 +137,12 @@ export default {
|
|
|
userId: "",
|
|
|
},
|
|
|
retrievalFields: [
|
|
|
+ {
|
|
|
+ name: 'whole',
|
|
|
+ label: '总机构',
|
|
|
+ type: 'select',
|
|
|
+ options: []
|
|
|
+ },
|
|
|
{
|
|
|
name: 'provinceId',
|
|
|
label: '省机构名称',
|
|
|
@@ -162,6 +168,7 @@ export default {
|
|
|
type: 'select',
|
|
|
options: []
|
|
|
},
|
|
|
+
|
|
|
|
|
|
// {
|
|
|
// name: 'taskNo',
|
|
|
@@ -175,12 +182,22 @@ export default {
|
|
|
|
|
|
},
|
|
|
{
|
|
|
- name: 'managementSource',
|
|
|
- label: '业务来源',
|
|
|
- type: 'select',
|
|
|
- options: [],
|
|
|
- optionsIabel: "dictTag",
|
|
|
- optionsValue: "dictValue",
|
|
|
+ name: 'operatorId',
|
|
|
+ label: '代理人工号',
|
|
|
+ type: 'input',
|
|
|
+ Retained: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: 'operatorName',
|
|
|
+ label: '代理人姓名',
|
|
|
+ type: 'input',
|
|
|
+ Retained: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: 'auditId',
|
|
|
+ label: '受理人工号',
|
|
|
+ type: 'input',
|
|
|
+ Retained: true,
|
|
|
},
|
|
|
{
|
|
|
name: 'companyId',
|
|
|
@@ -188,7 +205,13 @@ export default {
|
|
|
type: 'select',
|
|
|
options: []
|
|
|
},
|
|
|
-
|
|
|
+ {
|
|
|
+ name: 'agreeId',
|
|
|
+ label: '协议选择',
|
|
|
+ type: 'select',
|
|
|
+ options: [],
|
|
|
+ optionsIabel: "agreementName",
|
|
|
+ },
|
|
|
{
|
|
|
name: 'insuredName',
|
|
|
label: '被保险人',
|
|
|
@@ -224,31 +247,20 @@ export default {
|
|
|
optionsIabel: "dictTag",
|
|
|
optionsValue: "dictTag",
|
|
|
},
|
|
|
+
|
|
|
{
|
|
|
- name: 'operatorId',
|
|
|
- label: '代理人工号',
|
|
|
- type: 'input',
|
|
|
- Retained: true,
|
|
|
- },
|
|
|
- {
|
|
|
- name: 'operatorName',
|
|
|
- label: '代理人姓名',
|
|
|
- type: 'input',
|
|
|
- Retained: true,
|
|
|
- },
|
|
|
- {
|
|
|
- name: 'auditId',
|
|
|
- label: '受理人工号',
|
|
|
- type: 'input',
|
|
|
- Retained: true,
|
|
|
- },
|
|
|
- {
|
|
|
- name: 'agreeId',
|
|
|
- label: '协议选择',
|
|
|
+ name: 'managementSource',
|
|
|
+ label: '业务来源',
|
|
|
type: 'select',
|
|
|
options: [],
|
|
|
- optionsIabel: "agreementName",
|
|
|
+ optionsIabel: "dictTag",
|
|
|
+ optionsValue: "dictValue",
|
|
|
},
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
{
|
|
|
name: 'isExternal',
|
|
|
label: '外部订单',
|
|
|
@@ -352,7 +364,7 @@ export default {
|
|
|
},
|
|
|
created() {
|
|
|
this.pageRequest.userId = Cookies.get("user");
|
|
|
- this.areaqueryList(1, 99, "provinceId");
|
|
|
+ this.areaqueryList(0, 9, "whole");
|
|
|
this.CompanyList();
|
|
|
this.agrmentlist();
|
|
|
this.$api.insCompany.dicType('productsType').then(res => {
|
|
|
@@ -451,15 +463,19 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
areaSelectChange(obj) {
|
|
|
+
|
|
|
switch (obj.filed) {
|
|
|
- case 'provinceId':
|
|
|
- this.areaqueryList(2, obj.id, 'cityId')
|
|
|
+ case "whole":
|
|
|
+ this.areaqueryList(1, obj.id, "provinceId");
|
|
|
+ break;
|
|
|
+ case "provinceId":
|
|
|
+ this.areaqueryList(2, obj.id, "cityId");
|
|
|
break;
|
|
|
- case 'cityId':
|
|
|
- this.areaqueryList(3, obj.id, 'countyId')
|
|
|
+ case "cityId":
|
|
|
+ this.areaqueryList(3, obj.id, "countyId");
|
|
|
break;
|
|
|
- case 'countyId':
|
|
|
- this.areaqueryList(4, obj.id, 'houseId')
|
|
|
+ case "countyId":
|
|
|
+ this.areaqueryList(4, obj.id, "houseId");
|
|
|
break;
|
|
|
default:
|
|
|
}
|