searchPlace.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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:'place',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 } 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);
  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. }
  110. onLoad((option) => {
  111. dataInfo.incidentId = option.incidentId;
  112. dataInfo.parentId = option.parentId;
  113. dataInfo.parentName = option.parentName;
  114. getParamData();
  115. })
  116. onPullDownRefresh(() => {
  117. getList(0)
  118. })
  119. onReachBottom(() => {
  120. dataInfo.idx += 1;
  121. if (dataInfo.hasMore) {
  122. getList(); // 当触底时加载更多数据
  123. }
  124. })
  125. </script>
  126. <style lang="scss" scoped>
  127. .searchPlace{
  128. display: flex;
  129. flex-direction: column;
  130. justify-content: space-between;
  131. .head{
  132. height: 88rpx;
  133. display: flex;
  134. align-items: center;
  135. padding: 0 24rpx;
  136. position: fixed;
  137. z-index: 99;
  138. width: 100%;
  139. box-sizing: border-box;
  140. background: #fff;
  141. font-size: 26rpx;
  142. color: $uni-primary;
  143. .right{
  144. margin-top: 2rpx;
  145. }
  146. .two{
  147. flex: 1;
  148. }
  149. }
  150. .body{
  151. border-top: 1rpx solid #DEDEDE;
  152. margin-bottom: 140rpx;
  153. margin-top: 88rpx;
  154. font-size: 26rpx;
  155. .body_item{
  156. border-bottom: 1rpx solid #DEDEDE;
  157. padding: 24rpx;
  158. }
  159. }
  160. .zanwu{
  161. margin-bottom: 140rpx;
  162. margin-top: 88rpx;
  163. display: flex;
  164. justify-content: center;
  165. .newicon-zanwu{
  166. font-size: 256rpx;
  167. color: #D6D6D6;
  168. margin-top: 140rpx;
  169. }
  170. }
  171. .foot_common_btns{
  172. position: fixed;
  173. left: 0;
  174. bottom: 0;
  175. background-color: #fff;
  176. }
  177. }
  178. </style>