IncidentListFilter.vue 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399
  1. <template>
  2. <view class="container" @touchmove.stop.prevent v-if="pageData.pageRouter === 'default'">
  3. <view class="container_form">
  4. <view class="hospital">
  5. <text class="name">院区</text>
  6. <text class="value ellipsis">{{searchData.hospital ? searchData.hospital.hosName : ''}}</text>
  7. </view>
  8. <view class="tabs">
  9. <view class="tab" :class="{active: tab.value === searchData.selected}" v-for="tab in tabs" :key="tab.value" @click="clickTab(tab)">{{tab.name}}<text class="newicon newicon-xuanzejiaobiao"></text></view>
  10. </view>
  11. <view class="area" @click="clickPageRouter('area')">
  12. <text class="name">楼栋</text>
  13. <text class="value ellipsis">{{searchData.area ? searchData.area.area : ''}}</text>
  14. </view>
  15. <view class="category" @click="clickPageRouter('category')">
  16. <text class="name">故障现象</text>
  17. <text class="value ellipsis">{{searchData.category ? searchData.category.category : ''}}</text>
  18. </view>
  19. </view>
  20. <view class="container_foot">
  21. <view class="clear" @click="clear">清除选项</view>
  22. <view class="foot_btns">
  23. <view class="cancel" @click="cancel">取消</view>
  24. <view class="confirm" @click="confirm">确认</view>
  25. </view>
  26. </view>
  27. </view>
  28. <view class="container" @touchmove.stop.prevent v-else-if="pageData.pageRouter === 'area'">
  29. <view class="container_form">
  30. <view class="hospital">
  31. <text class="name">楼栋</text>
  32. </view>
  33. <scroll-view scroll-y class="areas">
  34. <view class="areas_item" v-for="area in pageData.areaList" :key="area.id" @click="clickArea(area)">{{area.area}}</view>
  35. </scroll-view>
  36. </view>
  37. <view class="container_foot">
  38. <view class="foot_btns">
  39. <view class="cancel" @click="clickPageRouter('default')">取消</view>
  40. </view>
  41. </view>
  42. </view>
  43. <view class="container" @touchmove.stop.prevent v-else-if="pageData.pageRouter === 'category'">
  44. <view class="container_form">
  45. <view class="hospital">
  46. <text class="name">故障现象</text>
  47. </view>
  48. <scroll-view scroll-y class="categorys">
  49. <view class="categorys_item" v-for="category in pageData.categoryList" :key="category.id" @click="clickCategory(category)">{{category.category}}</view>
  50. </scroll-view>
  51. </view>
  52. <view class="container_foot">
  53. <view class="foot_btns">
  54. <view class="cancel" @click="clickPageRouter('default')">取消</view>
  55. </view>
  56. </view>
  57. </view>
  58. <view class="mask" @touchmove.stop.prevent></view>
  59. <view class="line" @touchmove.stop.prevent></view>
  60. </template>
  61. <script setup>
  62. import { defineEmits, ref, reactive, defineProps } from 'vue'
  63. import { onLoad } from '@dcloudio/uni-app'
  64. import { useLoginUserStore } from '@/stores/loginUser'
  65. import { api_area, api_incidentcategory } from "@/http/api.js"
  66. const emit = defineEmits(['cancelEmit', 'confirmEmit']);
  67. const { evt } = defineProps({
  68. evt: {
  69. type: Object,
  70. required: true,
  71. },
  72. });
  73. const loginUserStore = useLoginUserStore();
  74. const tabs = reactive([
  75. { name: '全部事件', value: 'all' },
  76. { name: '待我处理', value: 'todoingAll' },
  77. { name: '与我关联', value: 'owns' },
  78. { name: '由我解决', value: 'resolve' },
  79. ])
  80. // 页面数据
  81. const pageData = reactive({
  82. pageRouter: 'default',
  83. areaList: [],
  84. categoryList: [],
  85. });
  86. const searchData = reactive({
  87. hospital: {},
  88. selected: 'todoingAll',
  89. area: {id: 0, area: '全部'},
  90. category: {id: 0, category: '全部'},
  91. })
  92. // 点击tab
  93. function clickTab(tab){
  94. searchData.selected = tab.value;
  95. }
  96. // 点击区域
  97. function clickArea(area){
  98. pageData.pageRouter = 'default';
  99. searchData.area = area;
  100. }
  101. // 点击故障现象
  102. function clickCategory(category){
  103. pageData.pageRouter = 'default';
  104. searchData.category = category;
  105. }
  106. // 清空
  107. function clear(){
  108. setHospital();
  109. searchData.selected = 'todoingAll';
  110. searchData.area = {id: 0, area: '全部'};
  111. searchData.category = {id: 0, category: '全部'};
  112. }
  113. // 取消
  114. function cancel(){
  115. emit('cancelEmit')
  116. }
  117. // 确认
  118. function confirm(){
  119. emit('confirmEmit', searchData);
  120. }
  121. // 设置院区
  122. function setHospital(){
  123. if (loginUserStore.loginUser.user.duty) {
  124. // 当前的所属责任科室
  125. searchData.hospital = {
  126. id: loginUserStore.loginUser.user.duty.branch,
  127. hosName: loginUserStore.loginUser.user.duty.branchName
  128. };
  129. } else if (loginUserStore.loginUser.user.branch) {
  130. // 当前的所属院区
  131. searchData.hospital = {
  132. id: loginUserStore.loginUser.user.branch.id,
  133. hosName: loginUserStore.loginUser.user.branch.hosName
  134. };
  135. }
  136. }
  137. // 获取楼栋列表
  138. function getAreaList(){
  139. uni.showLoading({
  140. title: "加载中",
  141. mask: true,
  142. });
  143. let postData = {
  144. idx: 0,
  145. sum: 9999,
  146. area: {
  147. branch: searchData.hospital.id,
  148. },
  149. }
  150. api_area(postData).then(res => {
  151. uni.hideLoading();
  152. if(res.status == 200){
  153. let list = res.list || [];
  154. pageData.areaList = [{ id: 0, area: '全部' }, ...list];
  155. }else{
  156. uni.showToast({
  157. icon: 'none',
  158. title: res.msg || '请求数据失败!'
  159. });
  160. }
  161. })
  162. }
  163. // 获取故障现象列表
  164. function getCategoryList(){
  165. uni.showLoading({
  166. title: "加载中",
  167. mask: true,
  168. });
  169. let postData = {
  170. idx: 0,
  171. sum: 9999,
  172. incidentcategory: {},
  173. }
  174. if(loginUserStore.loginUser.user.duty){
  175. postData.incidentcategory.dutyToCategory = loginUserStore.loginUser.user.duty.id;
  176. }else if(loginUserStore.loginUser.user.branch){
  177. postData.incidentcategory.selectType = 'one';
  178. }
  179. api_incidentcategory(postData).then(res => {
  180. uni.hideLoading();
  181. if(res.status == 200){
  182. let list = res.list || [];
  183. pageData.categoryList = [{ id:0, category: '全部' }, ...list];
  184. }else{
  185. uni.showToast({
  186. icon: 'none',
  187. title: res.msg || '请求数据失败!'
  188. });
  189. }
  190. })
  191. }
  192. // 页面路由跳转
  193. function clickPageRouter(type){
  194. pageData.pageRouter = type;
  195. switch(type){
  196. case 'area':
  197. getAreaList();
  198. break;
  199. case 'category':
  200. getCategoryList();
  201. break;
  202. }
  203. }
  204. onLoad((option) => {
  205. // searchData.hospital = evt.hospital;
  206. setHospital();
  207. searchData.selected = evt.selected;
  208. searchData.area = evt.area;
  209. searchData.category = evt.category;
  210. })
  211. </script>
  212. <style lang="scss" scoped>
  213. .mask{
  214. position: fixed;
  215. left: 0;
  216. top: 0;
  217. right: 0;
  218. bottom: 0;
  219. background-color: rgba(0, 0, 0, 0.4);
  220. z-index: 999;
  221. }
  222. .line{
  223. content: '';
  224. position: fixed;
  225. top: 0;
  226. left: 0;
  227. z-index: 9999;
  228. height: 8rpx;
  229. width: 100%;
  230. background-color: #EBEBEB;
  231. }
  232. .container{
  233. position: fixed;
  234. left: 150rpx;
  235. top: 0;
  236. right: 0;
  237. bottom: 0;
  238. z-index: 9999;
  239. background-color: #F7F7F7;
  240. display: flex;
  241. flex-direction: column;
  242. justify-content: space-between;
  243. .container_form{
  244. height: 100%;
  245. display: flex;
  246. flex-direction: column;
  247. flex: 1;
  248. min-height: 0;
  249. }
  250. .hospital{
  251. display: flex;
  252. justify-content: space-between;
  253. align-items: center;
  254. padding: 32rpx 24rpx 24rpx;
  255. background-color: #fff;
  256. .name{
  257. font-size: 30rpx;
  258. flex-shrink: 0;
  259. margin-right: 24rpx;
  260. }
  261. .value{
  262. font-size: 26rpx;
  263. color: #5DAAB6;
  264. }
  265. }
  266. .areas{
  267. flex: 1;
  268. min-height: 0;
  269. margin-top: 16rpx;
  270. background-color: #fff;
  271. .areas_item{
  272. padding: 24rpx;
  273. border-bottom: 1rpx solid #DEDEDE;
  274. }
  275. }
  276. .categorys{
  277. flex: 1;
  278. min-height: 0;
  279. margin-top: 16rpx;
  280. background-color: #fff;
  281. .categorys_item{
  282. padding: 24rpx;
  283. border-bottom: 1rpx solid #DEDEDE;
  284. }
  285. }
  286. .tabs{
  287. margin-top: 16rpx;
  288. background-color: #FBFBFB;
  289. display: flex;
  290. flex-wrap: wrap;
  291. justify-content: space-between;
  292. gap: 16rpx 0;
  293. padding: 24rpx 16rpx;
  294. .tab{
  295. width: 180rpx;
  296. height: 60rpx;
  297. display: flex;
  298. justify-content: center;
  299. align-items: center;
  300. background-color: #F7F7F7;
  301. font-size: 28rpx;
  302. position: relative;
  303. .newicon-xuanzejiaobiao{
  304. opacity: 0;
  305. position: absolute;
  306. right: 0;
  307. bottom: 0;
  308. font-size: 38rpx;
  309. color: #53B9BB;
  310. }
  311. &.active{
  312. background-color: rgba(149, 220, 231, 0.30);
  313. .newicon-xuanzejiaobiao{
  314. opacity: 1;
  315. }
  316. }
  317. }
  318. }
  319. .area,
  320. .category{
  321. display: flex;
  322. justify-content: space-between;
  323. align-items: center;
  324. padding: 24rpx;
  325. background-color: #fff;
  326. margin-top: 24rpx;
  327. .name{
  328. font-size: 28rpx;
  329. flex-shrink: 0;
  330. margin-right: 24rpx;
  331. }
  332. }
  333. .container_foot{
  334. .clear{
  335. padding: 24rpx;
  336. font-size: 28rpx;
  337. background-color: #fff;
  338. margin: 0 16rpx;
  339. display: flex;
  340. align-items: center;
  341. justify-content: center;
  342. }
  343. .foot_btns{
  344. margin-top: 24rpx;
  345. display: flex;
  346. border-top: 1rpx solid #BFBFBF;
  347. .cancel{
  348. flex: 1;
  349. background-color: #fff;
  350. font-size: 32rpx;
  351. padding: 24rpx;
  352. display: flex;
  353. justify-content: center;
  354. }
  355. .confirm{
  356. flex: 1;
  357. font-size: 32rpx;
  358. padding: 24rpx;
  359. background-color: $uni-primary;
  360. display: flex;
  361. justify-content: center;
  362. color: #fff;
  363. }
  364. }
  365. }
  366. }
  367. </style>