|
@@ -48,12 +48,13 @@
|
|
@keyup.enter.native="handleQuery"
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
/>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
- <el-form-item label="地区" prop="cityId">
|
|
|
|
|
|
+ <el-form-item label="地区" prop="cityId2">
|
|
<el-cascader
|
|
<el-cascader
|
|
- v-model="queryParams.cityId"
|
|
|
|
- placeholder="请选择省份/地市/区县"
|
|
|
|
|
|
+ v-model="queryParams.cityId2"
|
|
|
|
+ placeholder="请选择省份/地市"
|
|
:options="cityList"
|
|
:options="cityList"
|
|
@change="areaIdChange"
|
|
@change="areaIdChange"
|
|
|
|
+ :props="{ checkStrictly: true }"
|
|
clearable
|
|
clearable
|
|
size="small"
|
|
size="small"
|
|
></el-cascader>
|
|
></el-cascader>
|
|
@@ -115,7 +116,7 @@
|
|
<script>
|
|
<script>
|
|
import {
|
|
import {
|
|
getSystemList,
|
|
getSystemList,
|
|
- getCityAreaList,
|
|
|
|
|
|
+ getTreeProvinceCity,
|
|
getVerificationLogList,
|
|
getVerificationLogList,
|
|
getVerificationLogExport,
|
|
getVerificationLogExport,
|
|
} from "../../../common/js/home";
|
|
} from "../../../common/js/home";
|
|
@@ -135,6 +136,7 @@ export default {
|
|
system: null,
|
|
system: null,
|
|
userId: null,
|
|
userId: null,
|
|
cityId: null,
|
|
cityId: null,
|
|
|
|
+ cityId2: null,
|
|
startTime: null,
|
|
startTime: null,
|
|
endTime: null,
|
|
endTime: null,
|
|
value: [],
|
|
value: [],
|
|
@@ -154,7 +156,7 @@ export default {
|
|
getSystemList().then((res) => {
|
|
getSystemList().then((res) => {
|
|
this.systemList = res.data;
|
|
this.systemList = res.data;
|
|
});
|
|
});
|
|
- getCityAreaList().then((res2) => {
|
|
|
|
|
|
+ getTreeProvinceCity().then((res2) => {
|
|
this.cityList = res2.data;
|
|
this.cityList = res2.data;
|
|
});
|
|
});
|
|
},
|
|
},
|
|
@@ -181,6 +183,7 @@ export default {
|
|
// 重置
|
|
// 重置
|
|
resetQuery() {
|
|
resetQuery() {
|
|
this.resetForm("queryForm");
|
|
this.resetForm("queryForm");
|
|
|
|
+ this.queryParams.cityId = "";
|
|
this.queryParams.startTime = "";
|
|
this.queryParams.startTime = "";
|
|
this.queryParams.endTime = "";
|
|
this.queryParams.endTime = "";
|
|
this.queryParams.current = 1;
|
|
this.queryParams.current = 1;
|