searchDept.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. <template>
  2. <view class="consumableList">
  3. <view class="head">
  4. <uni-search-bar v-model="dataInfo.keyWord" placeholder="请搜索报修科室" bgColor="#F8F8F8" @input="search" cancelButton="none" focus :radius="18" />
  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="clickItem(data)">
  8. {{data.dept}}
  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 { debounce } from 'lodash-es'
  21. import { ref, reactive} from 'vue'
  22. import { onLoad, onPullDownRefresh, onReachBottom } from '@dcloudio/uni-app'
  23. import { api_department, api_incidentDetail, api_addSummaryDoc } from "@/http/api.js"
  24. import { defaultColor } from '@/static/js/theme.js'
  25. import { useSetTitle } from '@/share/useSetTitle.js'
  26. import { useLoginUserStore } from '@/stores/loginUser'
  27. import { useIncidentBuildStore } from '@/stores/incidentBuild'
  28. import { useGoBack } from '@/share/useGoBack.js'
  29. useSetTitle();
  30. const loginUserStore = useLoginUserStore();
  31. const incidentBuildStore = useIncidentBuildStore();
  32. const { goBack } = useGoBack();
  33. // 主题颜色
  34. const primaryColor = ref(defaultColor)
  35. // 数据
  36. const dataInfo = reactive({
  37. list: [],//工单列表
  38. idx: 0,//页码
  39. hasMore: true,//是否有更多数据
  40. incidentData: {},//事件对象
  41. keyWord: '',//搜索的关键词
  42. })
  43. // 搜索
  44. const search = debounce(getList.bind(null, 0), 500);
  45. // 获取列表信息
  46. function getList(idx){
  47. if(dataInfo.keyWord.trim() === ''){
  48. dataInfo.list = [];
  49. uni.stopPullDownRefresh();
  50. return;
  51. }
  52. uni.showLoading({
  53. title: "加载中",
  54. mask: true,
  55. });
  56. dataInfo.idx = idx === undefined ? dataInfo.idx : idx;
  57. if(dataInfo.idx === 0){
  58. dataInfo.list = [];
  59. }
  60. let postData = {
  61. idx: dataInfo.idx,
  62. sum: 20,
  63. department: {
  64. branch: dataInfo.incidentData.branch,
  65. searchType: 'quickStart',
  66. selectType: 'pinyin_qs',
  67. dept: dataInfo.keyWord,
  68. }
  69. }
  70. api_department(postData).then(res => {
  71. uni.hideLoading();
  72. uni.stopPullDownRefresh();
  73. if(res.status == 200){
  74. let list = res.list || [];
  75. if(list.length){
  76. dataInfo.hasMore = true;
  77. dataInfo.list = dataInfo.idx === 0 ? list : dataInfo.list.concat(list);
  78. }else{
  79. dataInfo.hasMore = false;
  80. }
  81. }else{
  82. uni.showToast({
  83. icon: 'none',
  84. title: res.msg || '请求数据失败!'
  85. });
  86. }
  87. })
  88. }
  89. // 点击
  90. function clickItem(data){
  91. dataInfo.incidentData.department = data;
  92. incidentBuildStore.setIncidentBuildData(dataInfo.incidentData, incidentBuildStore.incidentBuild.type);
  93. uni.navigateTo({
  94. url: '/pages/buildIncident/buildIncident'
  95. })
  96. }
  97. onLoad((option) => {
  98. if(incidentBuildStore.incidentBuild.data){
  99. dataInfo.incidentData = incidentBuildStore.incidentBuild.data;
  100. }
  101. getList(0);
  102. })
  103. onPullDownRefresh(() => {
  104. getList(0)
  105. })
  106. onReachBottom(() => {
  107. dataInfo.idx += 1;
  108. if (dataInfo.hasMore) {
  109. getList(); // 当触底时加载更多数据
  110. }
  111. })
  112. </script>
  113. <style lang="scss" scoped>
  114. .consumableList{
  115. display: flex;
  116. flex-direction: column;
  117. justify-content: space-between;
  118. .head{
  119. height: 88rpx;
  120. display: flex;
  121. align-items: center;
  122. justify-content: center;
  123. padding: 0 24rpx;
  124. position: fixed;
  125. z-index: 99;
  126. width: 100%;
  127. box-sizing: border-box;
  128. background: linear-gradient( 90deg, #58CF66 0%, #DDE9FC 100%);
  129. }
  130. .body{
  131. margin-bottom: 140rpx;
  132. margin-top: 88rpx;
  133. font-size: 26rpx;
  134. .body_item{
  135. border-bottom: 1rpx solid #DEDEDE;
  136. padding: 24rpx;
  137. }
  138. }
  139. .zanwu{
  140. margin-bottom: 140rpx;
  141. margin-top: 88rpx;
  142. display: flex;
  143. justify-content: center;
  144. .newicon-zanwu{
  145. font-size: 256rpx;
  146. color: #D6D6D6;
  147. margin-top: 140rpx;
  148. }
  149. }
  150. .foot_common_btns{
  151. position: fixed;
  152. left: 0;
  153. bottom: 0;
  154. background-color: #fff;
  155. }
  156. }
  157. </style>