|
|
@ -6,6 +6,7 @@
|
|
|
|
v-model="queryParams.shequId"
|
|
|
|
v-model="queryParams.shequId"
|
|
|
|
placeholder="选择社区"
|
|
|
|
placeholder="选择社区"
|
|
|
|
clearable
|
|
|
|
clearable
|
|
|
|
|
|
|
|
v-show="deptXiaoqu"
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<el-option
|
|
|
|
<el-option
|
|
|
|
v-for="item in deptList"
|
|
|
|
v-for="item in deptList"
|
|
|
@ -283,13 +284,14 @@ export default {
|
|
|
|
dicts: ["b_color_type"],
|
|
|
|
dicts: ["b_color_type"],
|
|
|
|
components: { ColorCell },
|
|
|
|
components: { ColorCell },
|
|
|
|
computed: {
|
|
|
|
computed: {
|
|
|
|
...mapGetters(["leftColor", "rightTopColor", "queryParamsXiaoqu"]),
|
|
|
|
...mapGetters(["leftColor", "rightTopColor", "queryParamsXiaoqu", "dept"]),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
openInfo: false,
|
|
|
|
openInfo: false,
|
|
|
|
infoData: {},
|
|
|
|
infoData: {},
|
|
|
|
show_shequ_xiaoqu: true,
|
|
|
|
show_shequ_xiaoqu: true,
|
|
|
|
|
|
|
|
deptXiaoqu: true,
|
|
|
|
show_net: false,
|
|
|
|
show_net: false,
|
|
|
|
loading: true,
|
|
|
|
loading: true,
|
|
|
|
currentIndex: 0,
|
|
|
|
currentIndex: 0,
|
|
|
@ -301,9 +303,9 @@ export default {
|
|
|
|
],
|
|
|
|
],
|
|
|
|
optionList: [
|
|
|
|
optionList: [
|
|
|
|
{ name: "完整身份证号", value: 0 },
|
|
|
|
{ name: "完整身份证号", value: 0 },
|
|
|
|
// { name: "省级(前2位)", value: 1 },
|
|
|
|
{ name: "省级(前2位)", value: 1 },
|
|
|
|
// { name: "市级(前4位)", value: 2 },
|
|
|
|
{ name: "市级(前4位)", value: 2 },
|
|
|
|
// { name: "县级(前6位)", value: 3 },
|
|
|
|
{ name: "县级(前6位)", value: 3 },
|
|
|
|
],
|
|
|
|
],
|
|
|
|
isCheck: [],
|
|
|
|
isCheck: [],
|
|
|
|
isList: [
|
|
|
|
isList: [
|
|
|
@ -387,6 +389,10 @@ export default {
|
|
|
|
this.queryParams.xiaoquId = this.queryParamsXiaoqu.xiaoquId;
|
|
|
|
this.queryParams.xiaoquId = this.queryParamsXiaoqu.xiaoquId;
|
|
|
|
this.changeSelect(this.queryParams.xiaoquId, "netList");
|
|
|
|
this.changeSelect(this.queryParams.xiaoquId, "netList");
|
|
|
|
this.show_shequ_xiaoqu = false;
|
|
|
|
this.show_shequ_xiaoqu = false;
|
|
|
|
|
|
|
|
} else if (this.$route.query.deptId) {
|
|
|
|
|
|
|
|
this.queryParams.shequId = this.dept.xiaoquId;
|
|
|
|
|
|
|
|
this.deptXiaoqu = false;
|
|
|
|
|
|
|
|
this.changeSelect(this.queryParams.shequId, "xiaoquList");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
@ -488,7 +494,9 @@ export default {
|
|
|
|
this.keyWord = "";
|
|
|
|
this.keyWord = "";
|
|
|
|
this.credentialnoType = 0;
|
|
|
|
this.credentialnoType = 0;
|
|
|
|
this.queryParams.type = undefined;
|
|
|
|
this.queryParams.type = undefined;
|
|
|
|
this.queryParams.shequId = undefined;
|
|
|
|
this.queryParams.shequId = this.deptXiaoqu
|
|
|
|
|
|
|
|
? undefined
|
|
|
|
|
|
|
|
: this.dept.xiaoquId;
|
|
|
|
this.queryParams.xiaoquId =
|
|
|
|
this.queryParams.xiaoquId =
|
|
|
|
this.$route.path == "/xiaoqu"
|
|
|
|
this.$route.path == "/xiaoqu"
|
|
|
|
? this.queryParamsXiaoqu.xiaoquId
|
|
|
|
? this.queryParamsXiaoqu.xiaoquId
|
|
|
|