searchDept.vue 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  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="goBackPage" 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. const loginType = ref(uni.getStorageSync('loginType')); //1:处理 2:报修
  51. // 获取列表信息
  52. function getList(idx){
  53. if(dataInfo.keyWord.trim() === ''){
  54. dataInfo.list = [];
  55. uni.stopPullDownRefresh();
  56. return;
  57. }
  58. uni.showLoading({
  59. title: "加载中",
  60. mask: true,
  61. });
  62. dataInfo.idx = idx === undefined ? dataInfo.idx : idx;
  63. if(dataInfo.idx === 0){
  64. dataInfo.list = [];
  65. }
  66. let postData = {
  67. idx: dataInfo.idx,
  68. sum: 20,
  69. department: {
  70. hospital:{
  71. id:''
  72. },
  73. // branch: dataInfo.incidentData.branch,
  74. // searchType: 'quickStart',
  75. // selectType: 'pinyin_qs',
  76. dept: dataInfo.keyWord,
  77. }
  78. }
  79. if(entranceType.value=='repair' || entranceType.value=='config'){
  80. if(branchId.value){
  81. postData.department.hospital.id = branchId.value
  82. }
  83. }else{
  84. if(dataInfo.incidentData && dataInfo.incidentData.branch){
  85. postData.department.hospital.id = dataInfo.incidentData.branch
  86. }else{
  87. if(loginUserStore.loginUser.user.currentHospital.parent){
  88. postData.department.hospital.id = loginUserStore.loginUser.user.currentHospital.parent.id
  89. }else{
  90. postData.department.hospital.id = loginUserStore.loginUser.user.currentHospital.id
  91. }
  92. }
  93. }
  94. api_department(postData).then(res => {
  95. uni.hideLoading();
  96. uni.stopPullDownRefresh();
  97. if(res.status == 200){
  98. let list = res.list || [];
  99. if(list.length){
  100. dataInfo.hasMore = true;
  101. dataInfo.list = dataInfo.idx === 0 ? list : dataInfo.list.concat(list);
  102. }else{
  103. dataInfo.hasMore = false;
  104. }
  105. }else{
  106. uni.showToast({
  107. icon: 'none',
  108. title: res.msg || '请求数据失败!'
  109. });
  110. }
  111. })
  112. }
  113. function goBackPage(){
  114. // goBack()
  115. if(entranceType.value=='config'){
  116. if(loginType.value==1){
  117. uni.navigateTo({
  118. url: '/pages/myRepair/myRepair?configType=selectDept&type=2'
  119. })
  120. }else{
  121. uni.reLaunch({
  122. url: '/pages/repair/config?configType=selectDept'
  123. })
  124. }
  125. }else{
  126. goBack()
  127. }
  128. }
  129. // 点击
  130. function clickItem(data){
  131. if(entranceType.value=='repair'){
  132. let query = {
  133. department:null,
  134. departmentName:null,
  135. branch:branchId.value
  136. }
  137. let rapidRepNextData = uni.getStorageSync('rapidRepNext')
  138. if(rapidRepNextData){
  139. let parseData = JSON.parse(rapidRepNextData)
  140. query.department = data.id//报修科室
  141. query.departmentName = data.dept//报修科室
  142. let repairData = {
  143. ...parseData,
  144. ...query
  145. }
  146. uni.setStorageSync('rapidRepNext',JSON.stringify(repairData))
  147. }else{
  148. query.department = data.id//报修科室
  149. query.departmentName = data.dept//报修科室
  150. uni.setStorageSync('rapidRepNext',JSON.stringify(query))
  151. }
  152. uni.navigateTo({
  153. url: '/pages/repair/rapidRepNext'
  154. })
  155. }else if(entranceType.value=='config'){
  156. let query = {
  157. dept:null,
  158. departmentName:null,
  159. branch:branchId.value
  160. }
  161. let configNewData = uni.getStorageSync('configData')
  162. if(configNewData){
  163. let parseData = JSON.parse(configNewData)
  164. query.dept = data.id//报修科室
  165. query.departmentName = data.dept//报修科室
  166. // parseData.dataType = true
  167. let configData = {
  168. ...parseData,
  169. ...query
  170. }
  171. uni.setStorageSync('configData',JSON.stringify(configData))
  172. if(loginType.value==1){
  173. uni.navigateTo({
  174. url: '/pages/myRepair/myRepair?configType=selectDept&type=2'
  175. })
  176. }else{
  177. uni.reLaunch({
  178. url: '/pages/repair/config?configType=selectDept'
  179. })
  180. }
  181. }else{
  182. query.dept = data.id//报修科室
  183. query.departmentName = data.dept//报修科室
  184. uni.setStorageSync('configData',JSON.stringify(query))
  185. }
  186. }else{
  187. dataInfo.incidentData.department = data;
  188. incidentBuildStore.setIncidentBuildData(dataInfo.incidentData, incidentBuildStore.incidentBuild.type, incidentBuildStore.incidentBuild.sign);
  189. uni.navigateTo({
  190. url: '/pages/buildIncident/buildIncident'
  191. })
  192. }
  193. }
  194. onLoad((option) => {
  195. if(option.type){
  196. entranceType.value = option.type
  197. branchId.value = option.branchId
  198. }
  199. if(incidentBuildStore.incidentBuild.data){
  200. dataInfo.incidentData = incidentBuildStore.incidentBuild.data;
  201. }
  202. if(incidentBuildStore.incidentBuild.type === 'buildIncident' && incidentBuildStore.incidentBuild.sign === 'department'){
  203. placeHolder.value = '请搜索报修科室'
  204. }
  205. getList(0);
  206. })
  207. onPullDownRefresh(() => {
  208. getList(0)
  209. })
  210. onReachBottom(() => {
  211. dataInfo.idx += 1;
  212. if (dataInfo.hasMore) {
  213. getList(); // 当触底时加载更多数据
  214. }
  215. })
  216. </script>
  217. <style lang="scss" scoped>
  218. .consumableList{
  219. display: flex;
  220. flex-direction: column;
  221. justify-content: space-between;
  222. .head{
  223. height: 88rpx;
  224. display: flex;
  225. align-items: center;
  226. justify-content: center;
  227. padding: 0 24rpx;
  228. position: fixed;
  229. z-index: 99;
  230. width: 100%;
  231. box-sizing: border-box;
  232. background: linear-gradient( 90deg, #58CF66 0%, #DDE9FC 100%);
  233. }
  234. .body{
  235. margin-bottom: 140rpx;
  236. margin-top: 88rpx;
  237. font-size: 26rpx;
  238. .body_item{
  239. border-bottom: 1rpx solid #DEDEDE;
  240. padding: 24rpx;
  241. }
  242. }
  243. .zanwu{
  244. margin-bottom: 140rpx;
  245. margin-top: 88rpx;
  246. display: flex;
  247. justify-content: center;
  248. .newicon-zanwu{
  249. font-size: 256rpx;
  250. color: #D6D6D6;
  251. margin-top: 140rpx;
  252. }
  253. }
  254. .foot_common_btns{
  255. position: fixed;
  256. left: 0;
  257. bottom: 0;
  258. background-color: #fff;
  259. }
  260. }
  261. </style>