searchDept.vue 5.9 KB

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