searchPlace.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  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. incidentData: {}
  48. })
  49. // 选择
  50. function selectItem(e){
  51. dataInfo.placeObj = e.detail.data;
  52. }
  53. // 确认
  54. function confirm(){
  55. if(!dataInfo.place){
  56. uni.showToast({
  57. icon: 'none',
  58. title: '请选择地点'
  59. });
  60. return;
  61. }
  62. dataInfo.paramData.place = dataInfo.placeObj;
  63. incidentBuildStore.setIncidentBuildData(dataInfo.paramData, incidentBuildStore.incidentBuild.type, incidentBuildStore.incidentBuild.sign);
  64. uni.navigateTo({
  65. url: `/pages/${incidentBuildStore.incidentBuild.type}/${incidentBuildStore.incidentBuild.type}?incidentId=${dataInfo.incidentId}`,
  66. })
  67. }
  68. // 获取传递的数据
  69. function getParamData(){
  70. dataInfo.paramData = incidentBuildStore.incidentBuild.data || {};
  71. dataInfo.place = dataInfo.paramData.place ? dataInfo.paramData.place.id : undefined;
  72. dataInfo.placeObj = dataInfo.paramData.place || {};
  73. getList(0);
  74. }
  75. // 获取列表信息
  76. function getList(idx){
  77. uni.showLoading({
  78. title: "加载中",
  79. mask: true,
  80. });
  81. // dataInfo.idx = idx === undefined ? dataInfo.idx : idx;
  82. // if(dataInfo.idx === 0){
  83. // dataInfo.list = [];
  84. // }
  85. // let postData = {
  86. // idx: dataInfo.idx,
  87. // sum: 20,
  88. // place: {
  89. // areaId: dataInfo.parentId,
  90. // }
  91. // }
  92. // api_place(postData).then(res => {
  93. // uni.hideLoading();
  94. // uni.stopPullDownRefresh();
  95. // if(res.status == 200){
  96. // let list = res.list || [];
  97. // if(list.length){
  98. // dataInfo.hasMore = true;
  99. // dataInfo.list = dataInfo.idx === 0 ? list : dataInfo.list.concat(list);
  100. // }else{
  101. // dataInfo.hasMore = false;
  102. // }
  103. // }else{
  104. // uni.showToast({
  105. // icon: 'none',
  106. // title: res.msg || '请求数据失败!'
  107. // });
  108. // }
  109. // })
  110. let hosId = null
  111. if(dataInfo.incidentData && dataInfo.incidentData.branch){
  112. hosId = dataInfo.incidentData.branch
  113. }else{
  114. if(loginUserStore.loginUser.user.currentHospital.parent){
  115. hosId = loginUserStore.loginUser.user.currentHospital.parent.id
  116. }else{
  117. hosId = loginUserStore.loginUser.user.currentHospital.id
  118. }
  119. }
  120. let postData = {
  121. idx: 0,
  122. sum: 9999,
  123. floor:{
  124. hosId: hosId,
  125. buildId:dataInfo.parentId
  126. }
  127. };
  128. getFetchDataList("simple/data", "floor", postData)
  129. .then((res) => {
  130. uni.hideLoading();
  131. dataInfo.list = res.list
  132. });
  133. }
  134. onLoad((option) => {
  135. dataInfo.incidentId = option.incidentId;
  136. dataInfo.parentId = option.parentId;
  137. dataInfo.parentName = option.parentName;
  138. if(incidentBuildStore.incidentBuild.data){
  139. dataInfo.incidentData = incidentBuildStore.incidentBuild.data;
  140. }
  141. getParamData();
  142. })
  143. onPullDownRefresh(() => {
  144. // getList(0)
  145. })
  146. onReachBottom(() => {
  147. // dataInfo.idx += 1;
  148. // if (dataInfo.hasMore) {
  149. // getList(); // 当触底时加载更多数据
  150. // }
  151. })
  152. </script>
  153. <style lang="scss" scoped>
  154. .searchPlace{
  155. display: flex;
  156. flex-direction: column;
  157. justify-content: space-between;
  158. .head{
  159. height: 88rpx;
  160. display: flex;
  161. align-items: center;
  162. padding: 0 24rpx;
  163. position: fixed;
  164. z-index: 99;
  165. width: 100%;
  166. box-sizing: border-box;
  167. background: #fff;
  168. font-size: 26rpx;
  169. color: $uni-primary;
  170. .right{
  171. margin-top: 2rpx;
  172. }
  173. .two{
  174. flex: 1;
  175. }
  176. }
  177. .body{
  178. border-top: 1rpx solid #DEDEDE;
  179. margin-bottom: 140rpx;
  180. margin-top: 88rpx;
  181. font-size: 26rpx;
  182. .body_item{
  183. border-bottom: 1rpx solid #DEDEDE;
  184. padding: 24rpx;
  185. }
  186. }
  187. .zanwu{
  188. margin-bottom: 140rpx;
  189. margin-top: 88rpx;
  190. display: flex;
  191. justify-content: center;
  192. .newicon-zanwu{
  193. font-size: 256rpx;
  194. color: #D6D6D6;
  195. margin-top: 140rpx;
  196. }
  197. }
  198. .foot_common_btns{
  199. position: fixed;
  200. left: 0;
  201. bottom: 0;
  202. background-color: #fff;
  203. }
  204. }
  205. </style>