searchUser.vue 5.2 KB

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