声脉桥梁云监控平台

linkage.vue 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <template>
  2. <div class="linkage">
  3. <el-select
  4. v-model="sheng"
  5. @change="choseProvince"
  6. placeholder="省">
  7. <el-option
  8. v-for="item in province"
  9. :key="item.id"
  10. :label="item.value"
  11. :value="item.id">
  12. </el-option>
  13. </el-select>
  14. <el-select
  15. v-model="shi"
  16. @change="choseCity"
  17. placeholder="市">
  18. <el-option
  19. v-for="item in shi1"
  20. :key="item.id"
  21. :label="item.value"
  22. :value="item.id">
  23. </el-option>
  24. </el-select>
  25. <el-select
  26. v-model="qu"
  27. @change="choseBlock"
  28. placeholder="区(县)">
  29. <el-option
  30. v-for="item in qu1"
  31. :key="item.id"
  32. :label="item.value"
  33. :value="item.id">
  34. </el-option>
  35. </el-select>
  36. </div>
  37. </template>
  38. <script>
  39. import axios from 'axios'
  40. export default {
  41. props: ['addrCode'],
  42. data() {
  43. return {
  44. mapJson: '../../static/map.json',
  45. province: [],
  46. sheng: '',
  47. shi: '',
  48. shi1: [],
  49. qu: '',
  50. qu1: [],
  51. city: '',
  52. block: ''
  53. }
  54. },
  55. watch: {
  56. addrCode: function() {
  57. if (!this.addrCode) {
  58. this.sheng = ''
  59. this.shi = ''
  60. this.qu = ''
  61. return
  62. }
  63. const s = this.addrCode.substring(0, 2) + '0000'
  64. const si = this.addrCode.substring(0, 4) + '00'
  65. const x = this.addrCode
  66. this.province.map(item => {
  67. if (item.id === s) {
  68. this.sheng = item.value
  69. item.children.map(item => {
  70. if (item.id === si) {
  71. this.shi = item.value
  72. item.children.map(item => {
  73. if (x === item.id) {
  74. this.qu = item.value
  75. }
  76. })
  77. }
  78. })
  79. }
  80. })
  81. }
  82. },
  83. methods: {
  84. getCityData: function() {
  85. var that = this
  86. axios.get('/ajax/dict/items?dict=XZQH').then(function(response) {
  87. if (response.status === 200) {
  88. var data = response.data.data.sort((obj1, obj2) => {
  89. return obj1.code - obj2.code
  90. })
  91. that.province = []
  92. that.city = []
  93. that.block = []
  94. data.map(item => {
  95. if (item.code.match(/0000$/)) {
  96. that.province.push({ id: item.code, value: item.caption, children: [] })
  97. } else if (item.code.match(/00$/)) {
  98. that.city.push({ id: item.code, value: item.caption, children: [] })
  99. } else {
  100. that.block.push({ id: item.code, value: item.caption })
  101. }
  102. })
  103. for (var index in that.province) {
  104. for (var index1 in that.city) {
  105. if (that.province[index].id.slice(0, 2) === that.city[index1].id.slice(0, 2)) {
  106. that.province[index].children.push(that.city[index1])
  107. }
  108. }
  109. }
  110. for (var item1 in that.city) {
  111. for (var item2 in that.block) {
  112. if (that.block[item2].id.slice(0, 4) === that.city[item1].id.slice(0, 4)) {
  113. that.city[item1].children.push(that.block[item2])
  114. }
  115. }
  116. }
  117. } else {
  118. console.log(response.status)
  119. }
  120. })
  121. },
  122. choseProvince: function(e) {
  123. for (var index2 in this.province) {
  124. if (e === this.province[index2].id) {
  125. this.shi1 = this.province[index2].children
  126. this.shi = this.province[index2].children[0].value
  127. this.qu1 = this.province[index2].children[0].children
  128. this.qu = this.province[index2].children[0].children[0].value
  129. this.E = this.qu1[0].id
  130. this.sheng = this.province[index2].value
  131. }
  132. }
  133. this.$emit('paren', this.E)
  134. },
  135. choseCity: function(e) {
  136. for (var index3 in this.city) {
  137. if (e === this.city[index3].id) {
  138. this.qu1 = this.city[index3].children
  139. this.qu = this.city[index3].children[0].value
  140. this.E = this.qu1[0].id
  141. this.shi = this.city[index3].value
  142. }
  143. }
  144. this.$emit('paren', this.E)
  145. },
  146. choseBlock: function(e) {
  147. for (var index3 in this.qu1) {
  148. if (e === this.qu1[index3].id) {
  149. this.qu = this.qu1[index3].value
  150. }
  151. }
  152. this.E = e
  153. this.$emit('paren', this.E)
  154. }
  155. },
  156. created: function() {
  157. this.getCityData()
  158. }
  159. }
  160. </script>