diff --git a/src/assets/scss/modules/visual/search_1.scss b/src/assets/scss/modules/visual/search_1.scss index b082a462..55aaef76 100644 --- a/src/assets/scss/modules/visual/search_1.scss +++ b/src/assets/scss/modules/visual/search_1.scss @@ -81,6 +81,30 @@ } } } + .range-data2 { + ::v-deep .el-date-editor { + width: 360px; + position: relative; + + .el-range-input { + color: #fff; + background: #06186d; + margin-left: 10px; + } + .el-range-separator { + color: #fff; + } + .el-range__icon { + position: absolute; + right: 5px; + // float: right; + } + .el-input__prefix { + left: unset; + right: 5px; + } + } + } .one-date{ ::v-deep .el-date-editor { diff --git a/src/views/modules/visual/basicinfo/personCategory/index.vue b/src/views/modules/visual/basicinfo/personCategory/index.vue index fb48e03e..a3c01d52 100644 --- a/src/views/modules/visual/basicinfo/personCategory/index.vue +++ b/src/views/modules/visual/basicinfo/personCategory/index.vue @@ -22,29 +22,31 @@ 人员类别分析 -
- - -
-
- - - +
@@ -255,7 +257,7 @@ export default { async handleChangeAgency (value) { let arr = this.$refs["myCascader"].getCheckedNodes(); - if(!Array.isArray(arr) || arr.length==0) return; + if (!Array.isArray(arr) || arr.length == 0) return; let selAgency = arr[0].data // this.agencyName = this.$refs["myCascader"].getCheckedNodes()[0].label this.agencyName = selAgency.name @@ -268,7 +270,7 @@ export default { //下钻到下一级 type点击的类型:polygon 点击多边形(分为点击组织/小区) people 点击详情 async toSubAgency (userId) { - + return this.$router.push({ path: `/main-shuju/visual-basicinfo-people/${userId}` }); // this.selUserId = userId // this.orgLevel = 'people' @@ -308,3 +310,10 @@ export default { scoped > + + +