searchDept.vue 4.8 KB

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