wangcc 2 лет назад
Родитель
Сommit
a31899360a
2 измененных файлов с 25 добавлено и 21 удалено
  1. 22 16
      src/components/pickerAddr.vue
  2. 3 5
      src/views/index.vue

+ 22 - 16
src/components/pickerAddr.vue

@@ -1,5 +1,5 @@
 <!--
- * @LastEditors: wangcc 1053578651@qq.com
+ * @LastEditors: wangcc
 -->
 <template>
   <div class="pickerAddr u-flex">
@@ -188,23 +188,24 @@ export default {
           label: val.label,
           areaId: val.areaId
         });
-        
       }
-        this.parentId = val.value.substring(0, 6);
-        this.name = level;
-        this.$store.dispatch('searchArea', {
-          parentId: this.parentId,
-          name: val.label,
-          mapLevel: level
-        });
+      this.parentId = val.value.substring(0, 6);
+      this.name = level;
+      this.$store.dispatch('searchArea', {
+        parentId: this.parentId,
+        name: val.label,
+        mapLevel: level
+      });
     },
     provinceClick() {
       // console.log('provinceClick','provinceClick');
       this.$store.dispatch('searchArea', {
-       ...this.selectProvince 
+        ...this.selectProvince
       });
-    },
-    getSelectModel() {}
+      this.changeSelectCity({});
+      this.changeSelectDistrict({});
+      this.changeSelectStreet({});
+    }
   }
 };
 </script>
@@ -244,10 +245,15 @@ export default {
       // height: 50px;
       // line-height: 50px;
       color: var(--main-color);
-      background: linear-gradient(180deg, rgba(0,250,253,0.3) 0%, rgba(0,250,253,0) 54%, rgba(0,250,253,0.3) 100%);
-border-radius: 0px 0px 0px 0px;
-opacity: 0.9;
-border: 1px solid rgba(0,250,253,0.3);
+      background: linear-gradient(
+        180deg,
+        rgba(0, 250, 253, 0.3) 0%,
+        rgba(0, 250, 253, 0) 54%,
+        rgba(0, 250, 253, 0.3) 100%
+      );
+      border-radius: 0px 0px 0px 0px;
+      opacity: 0.9;
+      border: 1px solid rgba(0, 250, 253, 0.3);
       &::-webkit-input-placeholder {
         color: var(--main-color);
       }

+ 3 - 5
src/views/index.vue

@@ -2,9 +2,9 @@
  * @Description: 
  * @Author: wangcc
  * @Date: 2022-07-06 15:56:45
- * @LastEditors: gcz
- * @LastEditTime: 2022-11-04 14:48:39
- * @FilePath: \ntbigscreen\src\views\index.vue
+ * @LastEditors: wangcc
+ * @LastEditTime: 2022-11-04 16:15:40
+ * @FilePath: \castgroup_bigscreen\src\views\index.vue
  * @Copyright: Copyright (c) 2016~2022 by wangcc, All Rights Reserved. 
 -->
 <template>
@@ -411,8 +411,6 @@ export default {
     },
     '$store.state.addr.mapLevel': {
       handler(val) {
-        console.log(val);
-        console.log(this.$store.state.addr.selectCity.prop);
         if (val === 'city' && this.$store.state.addr.selectCity.prop == '2') {
           this.jumpDistrict();
         }