location.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. <template>
  2. <view class="content">
  3. <u-index-list :scrollTop="scrollTop" class="scroll-list">
  4. <view v-for="(item, index) in area" :key="index" class="list-box">
  5. <u-index-anchor :index="item.index" />
  6. <view v-for="(iitem,iindex) in item.child" :key="iindex" class="address_name row"
  7. @click="checked(index,iindex)">
  8. <view :style="iitem.checked?'color:#F6B301':''">{{iitem.title}}</view>
  9. <view class="icon">
  10. <u-icon v-if="iitem.checked" name="checkmark-circle" color="#F6B301"></u-icon>
  11. </view>
  12. </view>
  13. </view>
  14. </u-index-list>
  15. <view class="bottom-btn">
  16. <view class="buttom-dom row">
  17. <!-- <view class="all" @click="checkAll">
  18. 全选
  19. </view> -->
  20. <view class="push" @click="push">
  21. 确定
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. // import { area } from "@/utils/area.js"
  29. export default {
  30. data() {
  31. return {
  32. scrollTop: 0,
  33. area: [],
  34. type: 1,
  35. checkedArea: []
  36. }
  37. },
  38. onPageScroll(e) {
  39. this.scrollTop = e.scrollTop;
  40. },
  41. onLoad(e) {
  42. this.getLocation()
  43. console.log(e)
  44. if (e.area) {
  45. this.type = 2
  46. this.checkedArea = JSON.parse(e.area)
  47. }
  48. },
  49. methods: {
  50. // 点击确定
  51. push() {
  52. let data = []
  53. let areaStr = ""
  54. for (let key in this.area) {
  55. for (let s of this.area[key].child) {
  56. if (s.checked) {
  57. data.push(s.id)
  58. if (areaStr === "") {
  59. areaStr = s.title
  60. } else {
  61. areaStr = areaStr + "," + s.title
  62. }
  63. }
  64. }
  65. }
  66. this.$EventBus.$emit('listenSetArea', {
  67. data,
  68. areaStr
  69. })
  70. uni.navigateBack({
  71. delta: 1
  72. })
  73. },
  74. // 是否选中
  75. checked(index, iindex) {
  76. this.area[index].child[iindex].checked = !this.area[index].child[iindex].checked;
  77. this.$forceUpdate()
  78. },
  79. // 全选
  80. checkAll() {
  81. let data = this.area
  82. for (let key in data) {
  83. for (let ikey in data[key].child) {
  84. data[key].child[ikey].checked = true
  85. }
  86. }
  87. this.area = data
  88. this.$forceUpdate()
  89. },
  90. // 获取位置信息
  91. getLocation() {
  92. this.request("/common/area_sort", {}, "GET").then(res => {
  93. if (res.code === 1) {
  94. this.area = res.data
  95. if (this.type === 2) {
  96. let data = this.area
  97. let checked = this.checkedArea
  98. for (let key in data) {
  99. for (let ikey in data[key].child) {
  100. for (let s of checked) {
  101. if (data[key].child[ikey].id === s.id) {
  102. data[key].child[ikey].checked = true
  103. }
  104. }
  105. }
  106. }
  107. }
  108. }
  109. })
  110. }
  111. }
  112. }
  113. </script>
  114. <style lang="scss">
  115. .scroll-list {
  116. height: 90vh;
  117. .list-box {
  118. margin-bottom: 80rpx;
  119. }
  120. }
  121. .bottom-btn {
  122. position: fixed;
  123. bottom: 0;
  124. width: 100vw;
  125. height: 10vh;
  126. background-color: #FFFFFF;
  127. display: flex;
  128. flex-direction: column;
  129. align-items: center;
  130. justify-content: center;
  131. .row {
  132. justify-content: center;
  133. .all {
  134. width: 50%;
  135. text-align: center;
  136. }
  137. .push {
  138. width: 50%;
  139. text-align: center;
  140. }
  141. }
  142. .buttom-dom {
  143. height: 80rpx;
  144. width: 93%;
  145. background-color: #F6B301;
  146. color: #FFFFFF;
  147. text-align: center;
  148. line-height: 80rpx;
  149. color: #FFFFFF;
  150. border-radius: 80rpx;
  151. }
  152. }
  153. .address_name {
  154. padding: 30rpx;
  155. .icon {
  156. margin-right: 30rpx;
  157. }
  158. }
  159. </style>