searchPlace.vue 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. <template>
  2. <view class="searchPlace">
  3. <view class="head">
  4. <view class="one">{{dataInfo.parentName}}<uni-icons class="right" type="right" :size="16" :color="primaryColor"></uni-icons></view>
  5. <text class="two ellipsis">{{dataInfo.placeObj.place}}</text>
  6. </view>
  7. <view class="body" v-if="dataInfo.list.length">
  8. <uni-data-checkbox v-model="dataInfo.place" :localdata="dataInfo.list" mode="list" wrap icon="right" :map="{text:'floorName',value:'id'}" @change="selectItem"></uni-data-checkbox>
  9. </view>
  10. <view class="zanwu" v-else>
  11. <text class="newicon newicon-zanwu"></text>
  12. </view>
  13. <view class="foot_common_btns">
  14. <button @click="goBack" type="default" class="primaryButton btn">上一级</button>
  15. <button @click="confirm" 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_place, 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 { useHandlerStore } from '@/stores/handler'
  27. import { useIncidentBuildStore } from '@/stores/incidentBuild'
  28. import { useGoBack } from '@/share/useGoBack.js'
  29. useSetTitle();
  30. const loginUserStore = useLoginUserStore();
  31. const handlerStore = useHandlerStore();
  32. const incidentBuildStore = useIncidentBuildStore();
  33. const { goBack } = useGoBack();
  34. // 主题颜色
  35. const primaryColor = ref(defaultColor)
  36. // 数据
  37. const dataInfo = reactive({
  38. list: [],//工单列表
  39. idx: 0,//页码
  40. hasMore: true,//是否有更多数据
  41. incidentId: undefined,//事件ID
  42. paramData: {},//传参
  43. parentId: undefined,//区域id
  44. parentName: '',//区域名称
  45. place: undefined,//地点-回显
  46. placeObj: {},//地点列表-已选择
  47. })
  48. // 选择
  49. function selectItem(e){
  50. dataInfo.placeObj = e.detail.data;
  51. }
  52. // 确认
  53. function confirm(){
  54. if(!dataInfo.place){
  55. uni.showToast({
  56. icon: 'none',
  57. title: '请选择地点'
  58. });
  59. return;
  60. }
  61. dataInfo.paramData.place = dataInfo.placeObj;
  62. incidentBuildStore.setIncidentBuildData(dataInfo.paramData, incidentBuildStore.incidentBuild.type, incidentBuildStore.incidentBuild.sign);
  63. uni.navigateTo({
  64. url: `/pages/${incidentBuildStore.incidentBuild.type}/${incidentBuildStore.incidentBuild.type}?incidentId=${dataInfo.incidentId}`,
  65. })
  66. }
  67. // 获取传递的数据
  68. function getParamData(){
  69. dataInfo.paramData = incidentBuildStore.incidentBuild.data || {};
  70. dataInfo.place = dataInfo.paramData.place ? dataInfo.paramData.place.id : undefined;
  71. dataInfo.placeObj = dataInfo.paramData.place || {};
  72. getList(0);
  73. }
  74. // 获取列表信息
  75. function getList(idx){
  76. uni.showLoading({
  77. title: "加载中",
  78. mask: true,
  79. });
  80. // dataInfo.idx = idx === undefined ? dataInfo.idx : idx;
  81. // if(dataInfo.idx === 0){
  82. // dataInfo.list = [];
  83. // }
  84. // let postData = {
  85. // idx: dataInfo.idx,
  86. // sum: 20,
  87. // place: {
  88. // areaId: dataInfo.parentId,
  89. // }
  90. // }
  91. // api_place(postData).then(res => {
  92. // uni.hideLoading();
  93. // uni.stopPullDownRefresh();
  94. // if(res.status == 200){
  95. // let list = res.list || [];
  96. // if(list.length){
  97. // dataInfo.hasMore = true;
  98. // dataInfo.list = dataInfo.idx === 0 ? list : dataInfo.list.concat(list);
  99. // }else{
  100. // dataInfo.hasMore = false;
  101. // }
  102. // }else{
  103. // uni.showToast({
  104. // icon: 'none',
  105. // title: res.msg || '请求数据失败!'
  106. // });
  107. // }
  108. // })
  109. let hosId = null
  110. if(loginUserStore.loginUser.user.currentHospital.parent){
  111. hosId = loginUserStore.loginUser.user.currentHospital.parent.id
  112. }else{
  113. hosId = loginUserStore.loginUser.user.currentHospital.id
  114. }
  115. let postData = {
  116. idx: 0,
  117. sum: 9999,
  118. floor:{
  119. hosId: hosId,
  120. buildId:dataInfo.parentId
  121. }
  122. };
  123. getFetchDataList("simple/data", "floor", postData)
  124. .then((res) => {
  125. uni.hideLoading();
  126. dataInfo.list = res.list
  127. });
  128. }
  129. onLoad((option) => {
  130. dataInfo.incidentId = option.incidentId;
  131. dataInfo.parentId = option.parentId;
  132. dataInfo.parentName = option.parentName;
  133. getParamData();
  134. })
  135. onPullDownRefresh(() => {
  136. // getList(0)
  137. })
  138. onReachBottom(() => {
  139. // dataInfo.idx += 1;
  140. // if (dataInfo.hasMore) {
  141. // getList(); // 当触底时加载更多数据
  142. // }
  143. })
  144. </script>
  145. <style lang="scss" scoped>
  146. .searchPlace{
  147. display: flex;
  148. flex-direction: column;
  149. justify-content: space-between;
  150. .head{
  151. height: 88rpx;
  152. display: flex;
  153. align-items: center;
  154. padding: 0 24rpx;
  155. position: fixed;
  156. z-index: 99;
  157. width: 100%;
  158. box-sizing: border-box;
  159. background: #fff;
  160. font-size: 26rpx;
  161. color: $uni-primary;
  162. .right{
  163. margin-top: 2rpx;
  164. }
  165. .two{
  166. flex: 1;
  167. }
  168. }
  169. .body{
  170. border-top: 1rpx solid #DEDEDE;
  171. margin-bottom: 140rpx;
  172. margin-top: 88rpx;
  173. font-size: 26rpx;
  174. .body_item{
  175. border-bottom: 1rpx solid #DEDEDE;
  176. padding: 24rpx;
  177. }
  178. }
  179. .zanwu{
  180. margin-bottom: 140rpx;
  181. margin-top: 88rpx;
  182. display: flex;
  183. justify-content: center;
  184. .newicon-zanwu{
  185. font-size: 256rpx;
  186. color: #D6D6D6;
  187. margin-top: 140rpx;
  188. }
  189. }
  190. .foot_common_btns{
  191. position: fixed;
  192. left: 0;
  193. bottom: 0;
  194. background-color: #fff;
  195. }
  196. }
  197. </style>