searchArea.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  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.buildingName}}
  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, getFetchDataList } 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. incidentData: {},//事件对象
  41. })
  42. // 跳转地点列表
  43. function toPlace(data){
  44. uni.navigateTo({
  45. url: `/pages/searchPlace/searchPlace?incidentId=${dataInfo.incidentId}&parentId=${data.id}&parentName=${data.buildingName}`
  46. })
  47. }
  48. // 获取列表信息
  49. function getList(idx){
  50. // if(!incidentBuildStore.incidentBuild.data.branch){
  51. // dataInfo.list = [];
  52. // uni.stopPullDownRefresh();
  53. // dataInfo.hasMore = false;
  54. // return;
  55. // }
  56. uni.showLoading({
  57. title: "加载中",
  58. mask: true,
  59. });
  60. // dataInfo.idx = idx === undefined ? dataInfo.idx : idx;
  61. // if(dataInfo.idx === 0){
  62. // dataInfo.list = [];
  63. // }
  64. let hosId = null
  65. if(dataInfo.incidentData && dataInfo.incidentData.branch){
  66. hosId = dataInfo.incidentData.branch
  67. }else{
  68. if(loginUserStore.loginUser.user.currentHospital.parent){
  69. hosId = loginUserStore.loginUser.user.currentHospital.parent.id
  70. }else{
  71. hosId = loginUserStore.loginUser.user.currentHospital.id
  72. }
  73. }
  74. let postData = {
  75. idx: 0,
  76. sum: 9999,
  77. building:{
  78. hosId: hosId,
  79. }
  80. };
  81. getFetchDataList("simple/data", "building", postData)
  82. .then((res) => {
  83. uni.hideLoading();
  84. dataInfo.list = res.list
  85. });
  86. // api_area(postData).then(res => {
  87. // uni.hideLoading();
  88. // uni.stopPullDownRefresh();
  89. // if(res.status == 200){
  90. // let list = res.list || [];
  91. // if(list.length){
  92. // dataInfo.hasMore = true;
  93. // dataInfo.list = dataInfo.idx === 0 ? list : dataInfo.list.concat(list);
  94. // }else{
  95. // dataInfo.hasMore = false;
  96. // }
  97. // }else{
  98. // uni.showToast({
  99. // icon: 'none',
  100. // title: res.msg || '请求数据失败!'
  101. // });
  102. // }
  103. // })
  104. }
  105. onLoad((option) => {
  106. dataInfo.incidentId = option.incidentId;
  107. if(incidentBuildStore.incidentBuild.data){
  108. dataInfo.incidentData = incidentBuildStore.incidentBuild.data;
  109. }
  110. getList(0);
  111. })
  112. onPullDownRefresh(() => {
  113. // getList(0)
  114. })
  115. onReachBottom(() => {
  116. // dataInfo.idx += 1;
  117. // if (dataInfo.hasMore) {
  118. // getList(); // 当触底时加载更多数据
  119. // }
  120. })
  121. </script>
  122. <style lang="scss" scoped>
  123. .categoryOne{
  124. display: flex;
  125. flex-direction: column;
  126. justify-content: space-between;
  127. .head{
  128. height: 88rpx;
  129. display: flex;
  130. align-items: center;
  131. padding: 0 24rpx;
  132. position: fixed;
  133. z-index: 99;
  134. width: 100%;
  135. box-sizing: border-box;
  136. background: #fff;
  137. font-size: 26rpx;
  138. color: $uni-primary;
  139. }
  140. .body{
  141. border-top: 1rpx solid #DEDEDE;
  142. margin-bottom: 140rpx;
  143. margin-top: 88rpx;
  144. font-size: 26rpx;
  145. .body_item{
  146. border-bottom: 1rpx solid #DEDEDE;
  147. padding: 24rpx;
  148. }
  149. }
  150. .zanwu{
  151. margin-bottom: 140rpx;
  152. margin-top: 88rpx;
  153. display: flex;
  154. justify-content: center;
  155. .newicon-zanwu{
  156. font-size: 256rpx;
  157. color: #D6D6D6;
  158. margin-top: 140rpx;
  159. }
  160. }
  161. .foot_common_btns{
  162. position: fixed;
  163. left: 0;
  164. bottom: 0;
  165. background-color: #fff;
  166. }
  167. }
  168. </style>