IncidentListFilter.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546
  1. <template>
  2. <view class="container" @touchmove.stop.prevent v-if="pageData.pageRouter === 'default'">
  3. <view class="container_form">
  4. <view class="hospital" v-if="!showDept">
  5. <text class="name">院区</text>
  6. <text class="value">{{loginUserStore.loginUser.user.currentHospital.hosName}}</text>
  7. </view>
  8. <view class="category" v-if="showDept">
  9. <text class="name">维修科室</text>
  10. <text class="value flex-1">
  11. <uni-data-picker @change="deptChange" v-model="searchData.deptValue" :localdata="pageData.deptList" popup-title="请选择维修科室" :map="{text:'hosName',value:'id'}">
  12. </uni-data-picker>
  13. </text>
  14. </view>
  15. <view class="tabs">
  16. <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>
  17. </view>
  18. <view class="area" @click="clickPageRouter('area')">
  19. <text class="name">楼栋</text>
  20. <text class="value ellipsis">{{searchData.area ? searchData.area.buildingName : ''}}</text>
  21. </view>
  22. <view class="category">
  23. <text class="name">故障现象</text>
  24. <text class="value flex-1">
  25. <uni-data-picker @change="categoryChange" v-model="searchData.categoryValue" :localdata="pageData.categoryList" popup-title="请选择故障信息" :map="{text:'category',value:'id'}">
  26. </uni-data-picker>
  27. </text>
  28. </view>
  29. <view class="acceptDate" @click="changeIsShowDate()">
  30. <text class="name">登记时间</text>
  31. <text class="value ellipsis" v-if="searchData.acceptDate.length">{{searchData.acceptDate[0] || ''}}至{{searchData.acceptDate[1] || ''}}</text>
  32. <text class="value ellipsis" v-else>全部</text>
  33. </view>
  34. </view>
  35. <view class="container_foot">
  36. <view class="clear" @click="clear">清除选项</view>
  37. <view class="foot_btns">
  38. <view class="cancel" @click="cancel">取消</view>
  39. <view class="confirm" @click="confirm">确认</view>
  40. </view>
  41. </view>
  42. <PyhRdtpicker
  43. :show="isShowDate"
  44. :start="start"
  45. :end="end"
  46. @showchange="showDatechange"
  47. :value="searchData.acceptDate"
  48. @change="bindDateChange"
  49. :themeColor="primaryColor"
  50. ></PyhRdtpicker>
  51. </view>
  52. <view class="container" @touchmove.stop.prevent v-else-if="pageData.pageRouter === 'area'">
  53. <view class="container_form">
  54. <view class="hospital">
  55. <text class="name">楼栋</text>
  56. </view>
  57. <scroll-view scroll-y class="areas">
  58. <view class="areas_item" v-for="area in pageData.areaList" :key="area.id" @click="clickArea(area)">{{area.buildingName}}</view>
  59. </scroll-view>
  60. </view>
  61. <view class="container_foot">
  62. <view class="foot_btns">
  63. <view class="cancel" @click="clickPageRouter('default')">取消</view>
  64. </view>
  65. </view>
  66. </view>
  67. <!-- <view class="container" @touchmove.stop.prevent v-else-if="pageData.pageRouter === 'category'">
  68. <view class="container_form">
  69. <view class="hospital">
  70. <text class="name">故障现象</text>
  71. </view>
  72. <scroll-view scroll-y class="categorys">
  73. <view class="categorys_item" v-for="category in pageData.categoryList" :key="category.id" @click="clickCategory(category)">{{category.category}}</view>
  74. </scroll-view>
  75. </view>
  76. <view class="container_foot">
  77. <view class="foot_btns">
  78. <view class="cancel" @click="clickPageRouter('default')">取消</view>
  79. </view>
  80. </view>
  81. </view> -->
  82. <view class="mask" @touchmove.stop.prevent></view>
  83. <view class="line" @touchmove.stop.prevent></view>
  84. </template>
  85. <script setup>
  86. import PyhRdtpicker from '@/components/PyhRdtpicker/PyhRdtpicker.vue';
  87. import { defineEmits, ref, reactive, defineProps } from 'vue'
  88. import { startOfYear, endOfYear, format, add } from 'date-fns'
  89. import { onLoad } from '@dcloudio/uni-app'
  90. import { useLoginUserStore } from '@/stores/loginUser'
  91. import { api_area, getFetchDataList, api_incidentcategory } from "@/http/api.js"
  92. import { defaultColor } from '@/static/js/theme.js'
  93. import { transform } from '@/utils/index.js'
  94. const emit = defineEmits(['cancelEmit', 'confirmEmit']);
  95. const { evt } = defineProps({
  96. evt: {
  97. type: Object,
  98. required: true,
  99. },
  100. });
  101. const loginUserStore = useLoginUserStore();
  102. // 主题颜色
  103. const primaryColor = ref(defaultColor)
  104. // 登记时间
  105. const isShowDate = ref(false)
  106. const start = ref(format(startOfYear(add(new Date(), { years: -5})), 'yyyy-MM-dd'));
  107. const end = ref(format(endOfYear(add(new Date(), { years: 0})), 'yyyy-MM-dd'));
  108. const tabs = reactive([
  109. // { name: '全部事件', value: 'all' },
  110. { name: '待我处理', value: 'todoingAll' },
  111. { name: '与我关联', value: 'owns' },
  112. { name: '由我解决', value: 'resolve' },
  113. ])
  114. // 页面数据
  115. const pageData = reactive({
  116. pageRouter: 'default',
  117. areaList: [],
  118. categoryList: [],
  119. deptList:[]
  120. });
  121. // 是否开启跨科查看
  122. const showDept = ref(false);
  123. const searchData = reactive({
  124. hospital: {},
  125. selected: 'todoingAll',
  126. area: {id: 0, area: '全部'},
  127. category: {},
  128. categoryValue:{},
  129. acceptDate: [],
  130. deptValue: {}
  131. })
  132. // 显示登记时间
  133. function showDatechange(){
  134. isShowDate.value = !isShowDate.value;
  135. }
  136. // 登记时间确定
  137. function bindDateChange(e){
  138. console.log(e);
  139. searchData.acceptDate = e;
  140. }
  141. // 点击tab
  142. function clickTab(tab){
  143. searchData.selected = tab.value;
  144. }
  145. // 点击区域
  146. function clickArea(area){
  147. pageData.pageRouter = 'default';
  148. searchData.area = area;
  149. }
  150. // 点击故障现象
  151. function clickCategory(category){
  152. pageData.pageRouter = 'default';
  153. searchData.category = category;
  154. }
  155. // 清空
  156. function clear(){
  157. setHospital();
  158. searchData.selected = 'todoingAll';
  159. searchData.area = {id: 0, area: '全部'};
  160. searchData.category = {};
  161. searchData.acceptDate = [];
  162. searchData.categoryValue = {};
  163. searchData.deptValue = {};
  164. console.log(searchData.acceptDate)
  165. }
  166. // 取消
  167. function cancel(){
  168. emit('cancelEmit')
  169. }
  170. // 确认
  171. function confirm(){
  172. emit('confirmEmit', searchData);
  173. }
  174. // 设置院区
  175. function setHospital(){
  176. if (loginUserStore.loginUser.user.duty) {
  177. // 当前的所属责任科室
  178. searchData.hospital = {
  179. id: loginUserStore.loginUser.user.duty.branch,
  180. hosName: loginUserStore.loginUser.user.duty.branchName
  181. };
  182. } else if (loginUserStore.loginUser.user.branch) {
  183. // 当前的所属院区
  184. searchData.hospital = {
  185. id: loginUserStore.loginUser.user.branch.id,
  186. hosName: loginUserStore.loginUser.user.branch.hosName
  187. };
  188. }
  189. }
  190. // 选择维修科室
  191. function deptChange(val){
  192. searchData.deptValue = val.detail.value[val.detail.value.length-1]
  193. }
  194. // 选择故障现象
  195. function categoryChange(val){
  196. searchData.category = val.detail.value[val.detail.value.length-1]
  197. }
  198. // 获取楼栋列表
  199. function getAreaList(){
  200. uni.showLoading({
  201. title: "加载中",
  202. mask: true,
  203. });
  204. // let postData = {
  205. // idx: 0,
  206. // sum: 9999,
  207. // area: {
  208. // branch: searchData.hospital.id,
  209. // },
  210. // }
  211. // api_area(postData).then(res => {
  212. // uni.hideLoading();
  213. // if(res.status == 200){
  214. // let list = res.list || [];
  215. // pageData.areaList = [{ id: 0, area: '全部' }, ...list];
  216. // }else{
  217. // uni.showToast({
  218. // icon: 'none',
  219. // title: res.msg || '请求数据失败!'
  220. // });
  221. // }
  222. // })
  223. let postData = {
  224. idx: 0,
  225. sum: 9999,
  226. building:{
  227. hosId: null
  228. }
  229. };
  230. if(loginUserStore.loginUser.user.currentHospital.parent){
  231. postData.building.hosId = loginUserStore.loginUser.user.currentHospital.parent.id
  232. }else{
  233. postData.building.hosId = loginUserStore.loginUser.user.currentHospital.id
  234. }
  235. getFetchDataList("simple/data", "building", postData)
  236. .then((res) => {
  237. uni.hideLoading();
  238. let list = res.list || [];
  239. pageData.areaList = [{ id: 0, area: '全部' }, ...list];
  240. });
  241. }
  242. // 获取故障现象列表
  243. function getCategoryList(){
  244. uni.showLoading({
  245. title: "加载中",
  246. mask: true,
  247. });
  248. let postData = {
  249. hasThird:true,
  250. category: {
  251. dutyIds: loginUserStore.loginUser.user.currentHospital.id,
  252. },
  253. }
  254. // if(loginUserStore.loginUser.user.duty){
  255. // postData.incidentcategory.dutyToCategory = loginUserStore.loginUser.user.duty.id;
  256. // }else if(loginUserStore.loginUser.user.branch){
  257. // postData.incidentcategory.selectType = 'one';
  258. // }
  259. // api_incidentcategory(postData).then(res => {
  260. // uni.hideLoading();
  261. // if(res.status == 200){
  262. // let list = res.list || [];
  263. // pageData.categoryList = [{ id:0, category: '全部' }, ...list];
  264. // }else{
  265. // uni.showToast({
  266. // icon: 'none',
  267. // title: res.msg || '请求数据失败!'
  268. // });
  269. // }
  270. // })
  271. api_incidentcategory(postData).then(res => {
  272. uni.hideLoading();
  273. if(res.status == 200){
  274. let list = res.data || [];
  275. list = list.map(i=> ({...i, parentid: i.parent?.id}))
  276. pageData.categoryList = transform(list, 'id', 'parentid')
  277. }else{
  278. uni.showToast({
  279. icon: 'none',
  280. title: res.msg || '请求数据失败!'
  281. });
  282. }
  283. })
  284. }
  285. // 页面路由跳转
  286. function clickPageRouter(type){
  287. pageData.pageRouter = type;
  288. switch(type){
  289. case 'area':
  290. getAreaList();
  291. break;
  292. }
  293. }
  294. // 显示登记时间
  295. function changeIsShowDate(type){
  296. isShowDate.value = true;
  297. }
  298. onLoad((option) => {
  299. getCategoryList()
  300. // searchData.hospital = evt.hospital;
  301. for (let i = 0; i < loginUserStore.loginUser.menu.length; i++) {
  302. if(loginUserStore.loginUser.menu[i].link === 'incidentManagement'){
  303. let currentMenu = loginUserStore.loginUser.menu[i].children;
  304. for (let j = 0; j < currentMenu; j++) {
  305. if (currentMenu[j].link == "all") {
  306. tabs.splice(0, 0 , { name: '全部事件', value: 'all' });
  307. }
  308. }
  309. }
  310. }
  311. let menu = JSON.parse(uni.getStorageSync("menuList")) || []; //菜单
  312. console.log(9555,menu)
  313. showDept.value = false
  314. menu.forEach((e) => {
  315. if (e.title=='故障管理') {
  316. e.childrens.forEach((el) => {
  317. if(el.link=='incidentManagement'){
  318. el.childrens.forEach(item =>{
  319. if(item.link=='strideLook'){
  320. showDept.value = true
  321. }
  322. })
  323. }
  324. });
  325. }
  326. });
  327. let data = loginUserStore.loginUser.infoPermission
  328. pageData.deptList = data.dutyList
  329. setHospital();
  330. searchData.selected = evt.selected;
  331. searchData.area = evt.area;
  332. searchData.category = evt.category;
  333. searchData.categoryValue = evt.categoryValue;
  334. searchData.acceptDate = evt.acceptDate;
  335. searchData.deptValue = evt.deptValue.value;
  336. })
  337. </script>
  338. <style lang="scss" scoped>
  339. .mask{
  340. position: fixed;
  341. left: 0;
  342. top: 0;
  343. right: 0;
  344. bottom: 0;
  345. background-color: rgba(0, 0, 0, 0.4);
  346. z-index: 999;
  347. }
  348. .line{
  349. content: '';
  350. position: fixed;
  351. top: 0;
  352. left: 0;
  353. z-index: 9999;
  354. height: 8rpx;
  355. width: 100%;
  356. background-color: #EBEBEB;
  357. }
  358. .container{
  359. position: fixed;
  360. left: 125rpx;
  361. top: 0;
  362. right: 0;
  363. bottom: 0;
  364. z-index: 9999;
  365. background-color: #F7F7F7;
  366. display: flex;
  367. flex-direction: column;
  368. justify-content: space-between;
  369. .container_form{
  370. height: 100%;
  371. display: flex;
  372. flex-direction: column;
  373. flex: 1;
  374. min-height: 0;
  375. }
  376. .hospital{
  377. display: flex;
  378. justify-content: space-between;
  379. align-items: center;
  380. padding: 32rpx 24rpx 24rpx;
  381. background-color: #fff;
  382. .name{
  383. font-size: 30rpx;
  384. flex-shrink: 0;
  385. margin-right: 24rpx;
  386. }
  387. .value{
  388. font-size: 26rpx;
  389. color: #5DAAB6;
  390. }
  391. }
  392. .areas{
  393. flex: 1;
  394. min-height: 0;
  395. margin-top: 16rpx;
  396. background-color: #fff;
  397. .areas_item{
  398. padding: 24rpx;
  399. border-bottom: 1rpx solid #DEDEDE;
  400. }
  401. }
  402. .categorys{
  403. flex: 1;
  404. min-height: 0;
  405. margin-top: 16rpx;
  406. background-color: #fff;
  407. .categorys_item{
  408. padding: 24rpx;
  409. border-bottom: 1rpx solid #DEDEDE;
  410. }
  411. }
  412. .tabs{
  413. margin-top: 16rpx;
  414. background-color: #FBFBFB;
  415. display: flex;
  416. flex-wrap: wrap;
  417. justify-content: space-between;
  418. gap: 16rpx 0;
  419. padding: 24rpx 16rpx;
  420. .tab{
  421. width: 180rpx;
  422. height: 60rpx;
  423. display: flex;
  424. justify-content: center;
  425. align-items: center;
  426. background-color: #F7F7F7;
  427. font-size: 28rpx;
  428. position: relative;
  429. .newicon-xuanzejiaobiao{
  430. opacity: 0;
  431. position: absolute;
  432. right: 0;
  433. bottom: 0;
  434. font-size: 38rpx;
  435. color: #53B9BB;
  436. }
  437. &.active{
  438. background-color: rgba(149, 220, 231, 0.30);
  439. .newicon-xuanzejiaobiao{
  440. opacity: 1;
  441. }
  442. }
  443. }
  444. }
  445. .area,
  446. .category,
  447. .acceptDate{
  448. display: flex;
  449. justify-content: space-between;
  450. align-items: center;
  451. padding: 24rpx;
  452. background-color: #fff;
  453. margin-top: 24rpx;
  454. .name{
  455. font-size: 28rpx;
  456. flex-shrink: 0;
  457. margin-right: 24rpx;
  458. }
  459. .flex-1{
  460. flex: 3;
  461. }
  462. }
  463. .container_foot{
  464. .clear{
  465. padding: 24rpx;
  466. font-size: 28rpx;
  467. background-color: #fff;
  468. margin: 0 16rpx;
  469. display: flex;
  470. align-items: center;
  471. justify-content: center;
  472. }
  473. .foot_btns{
  474. margin-top: 24rpx;
  475. display: flex;
  476. border-top: 1rpx solid #BFBFBF;
  477. .cancel{
  478. flex: 1;
  479. background-color: #fff;
  480. font-size: 32rpx;
  481. padding: 24rpx;
  482. display: flex;
  483. justify-content: center;
  484. }
  485. .confirm{
  486. flex: 1;
  487. font-size: 32rpx;
  488. padding: 24rpx;
  489. background-color: $uni-primary;
  490. display: flex;
  491. justify-content: center;
  492. color: #fff;
  493. }
  494. }
  495. }
  496. }
  497. </style>