searchArea.vue 4.2 KB

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