searchArea.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. <template>
  2. <view class="categoryOne">
  3. <view class="head">
  4. 请选择楼栋
  5. </view>
  6. <view class="body" v-if="dataInfo.list.length">
  7. <view class="body_item ellipsis" v-for="data in dataInfo.list" :key="data.id" @click="toPlace(data)">
  8. {{data.area}}
  9. </view>
  10. </view>
  11. <view class="zanwu" v-else>
  12. <text class="newicon newicon-zanwu"></text>
  13. </view>
  14. <view class="foot_common_btns">
  15. <button @click="goBack" type="default" class="primaryButton btn">返回</button>
  16. </view>
  17. </view>
  18. </template>
  19. <script setup>
  20. import { ref, reactive} from 'vue'
  21. import { onLoad, onPullDownRefresh, onReachBottom } from '@dcloudio/uni-app'
  22. import { api_area } from "@/http/api.js"
  23. import { defaultColor } from '@/static/js/theme.js'
  24. import { useSetTitle } from '@/share/useSetTitle.js'
  25. import { useLoginUserStore } from '@/stores/loginUser'
  26. import { useIncidentBuildStore } from '@/stores/incidentBuild'
  27. import { useGoBack } from '@/share/useGoBack.js'
  28. useSetTitle();
  29. const loginUserStore = useLoginUserStore();
  30. const incidentBuildStore = useIncidentBuildStore();
  31. const { goBack } = useGoBack();
  32. // 主题颜色
  33. const primaryColor = ref(defaultColor)
  34. // 数据
  35. const dataInfo = reactive({
  36. list: [],//列表
  37. idx: 0,//页码
  38. hasMore: true,//是否有更多数据
  39. incidentId: undefined,//事件ID
  40. })
  41. // 跳转地点列表
  42. function toPlace(data){
  43. uni.navigateTo({
  44. url: `/pages/searchPlace/searchPlace?incidentId=${dataInfo.incidentId}&parentId=${data.id}&parentName=${data.area}`
  45. })
  46. }
  47. // 获取列表信息
  48. function getList(idx){
  49. if(!incidentBuildStore.incidentBuild.data.branch){
  50. dataInfo.list = [];
  51. uni.stopPullDownRefresh();
  52. dataInfo.hasMore = false;
  53. return;
  54. }
  55. uni.showLoading({
  56. title: "加载中",
  57. mask: true,
  58. });
  59. dataInfo.idx = idx === undefined ? dataInfo.idx : idx;
  60. if(dataInfo.idx === 0){
  61. dataInfo.list = [];
  62. }
  63. let postData = {
  64. "idx": 0,
  65. "sum": 9999,
  66. "area": {
  67. "branch": incidentBuildStore.incidentBuild.data.branch,
  68. "searchType": "quickStart",
  69. }
  70. };
  71. api_area(postData).then(res => {
  72. uni.hideLoading();
  73. uni.stopPullDownRefresh();
  74. if(res.status == 200){
  75. let list = res.list || [];
  76. if(list.length){
  77. dataInfo.hasMore = true;
  78. dataInfo.list = dataInfo.idx === 0 ? list : dataInfo.list.concat(list);
  79. }else{
  80. dataInfo.hasMore = false;
  81. }
  82. }else{
  83. uni.showToast({
  84. icon: 'none',
  85. title: res.msg || '请求数据失败!'
  86. });
  87. }
  88. })
  89. }
  90. onLoad((option) => {
  91. dataInfo.incidentId = option.incidentId;
  92. getList(0);
  93. })
  94. onPullDownRefresh(() => {
  95. getList(0)
  96. })
  97. onReachBottom(() => {
  98. dataInfo.idx += 1;
  99. if (dataInfo.hasMore) {
  100. getList(); // 当触底时加载更多数据
  101. }
  102. })
  103. </script>
  104. <style lang="scss" scoped>
  105. .categoryOne{
  106. display: flex;
  107. flex-direction: column;
  108. justify-content: space-between;
  109. .head{
  110. height: 88rpx;
  111. display: flex;
  112. align-items: center;
  113. padding: 0 24rpx;
  114. position: fixed;
  115. z-index: 99;
  116. width: 100%;
  117. box-sizing: border-box;
  118. background: #fff;
  119. font-size: 26rpx;
  120. color: $uni-primary;
  121. }
  122. .body{
  123. border-top: 1rpx solid #DEDEDE;
  124. margin-bottom: 140rpx;
  125. margin-top: 88rpx;
  126. font-size: 26rpx;
  127. .body_item{
  128. border-bottom: 1rpx solid #DEDEDE;
  129. padding: 24rpx;
  130. }
  131. }
  132. .zanwu{
  133. margin-bottom: 140rpx;
  134. margin-top: 88rpx;
  135. display: flex;
  136. justify-content: center;
  137. .newicon-zanwu{
  138. font-size: 256rpx;
  139. color: #D6D6D6;
  140. margin-top: 140rpx;
  141. }
  142. }
  143. .foot_common_btns{
  144. position: fixed;
  145. left: 0;
  146. bottom: 0;
  147. background-color: #fff;
  148. }
  149. }
  150. </style>