pickerAddr.vue 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. <!--
  2. * @LastEditors: wangcc
  3. -->
  4. <template>
  5. <div class="pickerAddr u-flex">
  6. <div class="select-wrap select-province" @click="provinceClick">
  7. 省:
  8. <el-select v-model="selectProvince.name" placeholder="请选择" disabled>
  9. <!-- <el-option
  10. v-for="item in vuexCityList"
  11. :key="item.areaCode"
  12. :label="item.areaName"
  13. :value="{value:item.areaCode,label:item.areaName,areaId:item.areaId}"
  14. ></el-option>-->
  15. </el-select>
  16. </div>
  17. <div class="select-wrap">
  18. 市:
  19. <el-select v-model="selectCity" placeholder="请选择" @change="cityChange($event,'city')">
  20. <el-option
  21. v-for="item in vuexCityList"
  22. :key="item.areaCode"
  23. :label="item.areaName"
  24. :value="{value:item.areaCode,label:item.areaName,areaId:item.areaId}"
  25. ></el-option>
  26. </el-select>
  27. </div>
  28. <div class="select-wrap">
  29. 县:
  30. <el-select v-model="selectDistrict" placeholder="请选择" @change="cityChange($event,'district')">
  31. <el-option
  32. v-for="item in vuexDistrictList"
  33. :key="item.areaCode"
  34. :label="item.areaName"
  35. :value="{value:item.areaCode,label:item.areaName,areaId:item.areaId}"
  36. ></el-option>
  37. </el-select>
  38. </div>
  39. <div class="select-wrap">
  40. 乡:
  41. <el-select v-model="selectStreet" placeholder="请选择" @change="cityChange($event,'street')">
  42. <el-option
  43. v-for="item in vuexStreetList"
  44. :key="item.areaCode"
  45. :label="item.areaName"
  46. :value="{value:item.areaCode,label:item.areaName,areaId:item.areaId}"
  47. ></el-option>
  48. </el-select>
  49. </div>
  50. </div>
  51. </template>
  52. <script>
  53. import { mapMutations, mapState, mapGetters } from 'vuex';
  54. export default {
  55. // props:{
  56. // selectCity:{},
  57. // selectDistrict:{},
  58. // selectStreet: {}
  59. // },
  60. name: '',
  61. components: {},
  62. data() {
  63. return {
  64. selectProvince: {
  65. parentId: '520000',
  66. name: '贵州省',
  67. mapLevel: 'province'
  68. },
  69. selectCity: {},
  70. selectDistrict: {},
  71. selectStreet: {},
  72. value: '',
  73. parentId: '520000',
  74. name: '',
  75. areaId: ''
  76. };
  77. },
  78. watch: {
  79. '$store.state.addr.selectCity'(val) {
  80. this.selectCity = val;
  81. },
  82. '$store.state.addr.selectDistrict'(val) {
  83. this.selectDistrict = val;
  84. },
  85. '$store.state.addr.selectStreet'(val) {
  86. this.selectStreet = val;
  87. }
  88. // '$store.state.addr.smallClassSearch': {
  89. // handler(val) {
  90. // console.log(val);
  91. // this.areaData = val;
  92. // this.getCityChange();
  93. // this.getDistrictChange();
  94. // // this.vuexStreetList.forEach((item) => {
  95. // // if (val.townId == item.areaId) {
  96. // // valCode = item.areaCode;
  97. // // }
  98. // // });
  99. // // this.selectStreet = {
  100. // // areaId: val.townId,
  101. // // label: val.townName,
  102. // // value: valCode
  103. // // };
  104. // // if (val.countyId && val.countyName) {
  105. // // console.log(this.selectDistrict);
  106. // // this.setcity();
  107. // // }
  108. // }
  109. // }
  110. },
  111. computed: {
  112. // 引入getters中的计算属性,需要在 computed 中引入
  113. ...mapGetters(['vuexCityList', 'vuexDistrictList', 'vuexStreetList'])
  114. },
  115. created() {
  116. this.$store.dispatch('searchArea', {
  117. parentId: this.parentId,
  118. name: this.name,
  119. mapLevel: 'province'
  120. });
  121. },
  122. mounted() {},
  123. methods: {
  124. ...mapMutations([
  125. 'changeSelectCity',
  126. 'changeSelectDistrict',
  127. 'changeSelectStreet',
  128. 'changeSelectProject'
  129. ]),
  130. // getCityChange() {
  131. // if (this.areaData.cityId && this.areaData.cityName) {
  132. // let valCode = '';
  133. // this.vuexCityList.forEach((item) => {
  134. // if (this.areaData.cityId == item.areaId) {
  135. // valCode = item.areaCode.substring(0, 6);
  136. // }
  137. // });
  138. // this.selectCity = {
  139. // areaId: this.areaData.cityId,
  140. // label: this.areaData.cityName,
  141. // value: valCode
  142. // };
  143. // this.$store.dispatch('searchArea', {
  144. // parentId: valCode,
  145. // name: this.areaData.cityName,
  146. // mapLevel: 'city'
  147. // });
  148. // }
  149. // },
  150. // getDistrictChange() {
  151. // let valCode = '';
  152. // this.vuexDistrictList.forEach((item) => {
  153. // if (this.areaData.countyId == item.areaId) {
  154. // valCode = item.areaCode.substring(0, 6);
  155. // }
  156. // });
  157. // this.selectDistrict = {
  158. // areaId: this.areaData.countyId,
  159. // label: this.areaData.countyName,
  160. // value: valCode
  161. // };
  162. // this.$store.dispatch('searchArea', {
  163. // parentId: valCode,
  164. // name: this.areaData.countyName,
  165. // mapLevel: 'district'
  166. // });
  167. // },
  168. cityChange(val, level) {
  169. if (level == 'city') {
  170. this.changeSelectCity({
  171. value: val.value,
  172. label: val.label,
  173. areaId: val.areaId,
  174. prop: '1'
  175. });
  176. } else if (level == 'district') {
  177. this.changeSelectDistrict({
  178. value: val.value,
  179. label: val.label,
  180. areaId: val.areaId,
  181. prop: '1'
  182. });
  183. } else if (level == 'street') {
  184. this.changeSelectStreet({
  185. value: val.value,
  186. label: val.label,
  187. areaId: val.areaId,
  188. prop: '1'
  189. });
  190. }
  191. this.parentId = val.value.substring(0, 6);
  192. this.name = level;
  193. this.$store.dispatch('searchArea', {
  194. parentId: this.parentId,
  195. name: val.label,
  196. mapLevel: level
  197. });
  198. },
  199. provinceClick() {
  200. // console.log('provinceClick','provinceClick');
  201. this.$store.dispatch('searchArea', {
  202. ...this.selectProvince
  203. });
  204. this.changeSelectCity({});
  205. this.changeSelectDistrict({});
  206. this.changeSelectStreet({});
  207. this.changeSelectProject({});
  208. }
  209. }
  210. };
  211. </script>
  212. <style lang='scss' scoped>
  213. .pickerAddr {
  214. font-size: 18px;
  215. color: var(--main-color);
  216. text-align: right;
  217. margin-bottom: 1vh;
  218. .select-wrap:not(:last-of-type) {
  219. margin-right: 10px;
  220. }
  221. .select-province {
  222. position: relative;
  223. &::after {
  224. content: '';
  225. width: 100%;
  226. height: 100%;
  227. position: absolute;
  228. left: 0;
  229. top: 0;
  230. background: transparent;
  231. cursor: pointer;
  232. }
  233. }
  234. .select-province.select-wrap {
  235. /deep/ .el-input__inner {
  236. cursor: pointer;
  237. }
  238. }
  239. .el-select {
  240. width: 8vw;
  241. /deep/ .el-input__inner {
  242. font-size: 18px;
  243. // height: 50px;
  244. // line-height: 50px;
  245. color: var(--main-color);
  246. background: linear-gradient(
  247. 180deg,
  248. rgba(0, 250, 253, 0.3) 0%,
  249. rgba(0, 250, 253, 0) 54%,
  250. rgba(0, 250, 253, 0.3) 100%
  251. );
  252. border-radius: 0px 0px 0px 0px;
  253. opacity: 0.9;
  254. border: 1px solid rgba(0, 250, 253, 0.3);
  255. &::-webkit-input-placeholder {
  256. color: var(--main-color);
  257. }
  258. &:hover {
  259. border-color: var(--main-color);
  260. }
  261. }
  262. /deep/ .el-input__icon {
  263. color: var(--main-color);
  264. }
  265. }
  266. }
  267. @media only screen and (max-width: 1200px) {
  268. .pickerAddr {
  269. font-size: 16px;
  270. .el-select {
  271. /deep/ .el-input__inner {
  272. font-size: 16px;
  273. }
  274. }
  275. }
  276. }
  277. </style>