IncidentListFilter.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543
  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. dept: {},
  131. deptValue: {}
  132. })
  133. // 显示登记时间
  134. function showDatechange(){
  135. isShowDate.value = !isShowDate.value;
  136. }
  137. // 登记时间确定
  138. function bindDateChange(e){
  139. console.log(e);
  140. searchData.acceptDate = e;
  141. }
  142. // 点击tab
  143. function clickTab(tab){
  144. searchData.selected = tab.value;
  145. }
  146. // 点击区域
  147. function clickArea(area){
  148. pageData.pageRouter = 'default';
  149. searchData.area = area;
  150. }
  151. // 点击故障现象
  152. function clickCategory(category){
  153. pageData.pageRouter = 'default';
  154. searchData.category = category;
  155. }
  156. // 清空
  157. function clear(){
  158. setHospital();
  159. searchData.selected = 'todoingAll';
  160. searchData.area = {id: 0, area: '全部'};
  161. searchData.category = {};
  162. searchData.acceptDate = [];
  163. searchData.categoryValue = {};
  164. searchData.dept = {};
  165. searchData.deptValue = {};
  166. }
  167. // 取消
  168. function cancel(){
  169. emit('cancelEmit')
  170. }
  171. // 确认
  172. function confirm(){
  173. emit('confirmEmit', searchData);
  174. }
  175. // 设置院区
  176. function setHospital(){
  177. if (loginUserStore.loginUser.user.duty) {
  178. // 当前的所属责任科室
  179. searchData.hospital = {
  180. id: loginUserStore.loginUser.user.duty.branch,
  181. hosName: loginUserStore.loginUser.user.duty.branchName
  182. };
  183. } else if (loginUserStore.loginUser.user.branch) {
  184. // 当前的所属院区
  185. searchData.hospital = {
  186. id: loginUserStore.loginUser.user.branch.id,
  187. hosName: loginUserStore.loginUser.user.branch.hosName
  188. };
  189. }
  190. }
  191. // 选择维修科室
  192. function deptChange(val){
  193. searchData.dept = val.detail.value[val.detail.value.length-1]
  194. }
  195. // 选择故障现象
  196. function categoryChange(val){
  197. searchData.category = val.detail.value[val.detail.value.length-1]
  198. }
  199. // 获取楼栋列表
  200. function getAreaList(){
  201. uni.showLoading({
  202. title: "加载中",
  203. mask: true,
  204. });
  205. // let postData = {
  206. // idx: 0,
  207. // sum: 9999,
  208. // area: {
  209. // branch: searchData.hospital.id,
  210. // },
  211. // }
  212. // api_area(postData).then(res => {
  213. // uni.hideLoading();
  214. // if(res.status == 200){
  215. // let list = res.list || [];
  216. // pageData.areaList = [{ id: 0, area: '全部' }, ...list];
  217. // }else{
  218. // uni.showToast({
  219. // icon: 'none',
  220. // title: res.msg || '请求数据失败!'
  221. // });
  222. // }
  223. // })
  224. let postData = {
  225. idx: 0,
  226. sum: 9999,
  227. building:{
  228. hosId: null
  229. }
  230. };
  231. if(loginUserStore.loginUser.user.currentHospital.parent){
  232. postData.building.hosId = loginUserStore.loginUser.user.currentHospital.parent.id
  233. }else{
  234. postData.building.hosId = loginUserStore.loginUser.user.currentHospital.id
  235. }
  236. getFetchDataList("simple/data", "building", postData)
  237. .then((res) => {
  238. uni.hideLoading();
  239. let list = res.list || [];
  240. pageData.areaList = [{ id: 0, area: '全部' }, ...list];
  241. });
  242. }
  243. // 获取故障现象列表
  244. function getCategoryList(){
  245. uni.showLoading({
  246. title: "加载中",
  247. mask: true,
  248. });
  249. let postData = {
  250. hasThird:true,
  251. category: {
  252. dutyIds: loginUserStore.loginUser.user.currentHospital.id,
  253. },
  254. }
  255. // if(loginUserStore.loginUser.user.duty){
  256. // postData.incidentcategory.dutyToCategory = loginUserStore.loginUser.user.duty.id;
  257. // }else if(loginUserStore.loginUser.user.branch){
  258. // postData.incidentcategory.selectType = 'one';
  259. // }
  260. // api_incidentcategory(postData).then(res => {
  261. // uni.hideLoading();
  262. // if(res.status == 200){
  263. // let list = res.list || [];
  264. // pageData.categoryList = [{ id:0, category: '全部' }, ...list];
  265. // }else{
  266. // uni.showToast({
  267. // icon: 'none',
  268. // title: res.msg || '请求数据失败!'
  269. // });
  270. // }
  271. // })
  272. api_incidentcategory(postData).then(res => {
  273. uni.hideLoading();
  274. if(res.status == 200){
  275. let list = res.data || [];
  276. list = list.map(i=> ({...i, parentid: i.parent?.id}))
  277. pageData.categoryList = transform(list, 'id', 'parentid')
  278. }else{
  279. uni.showToast({
  280. icon: 'none',
  281. title: res.msg || '请求数据失败!'
  282. });
  283. }
  284. })
  285. }
  286. // 页面路由跳转
  287. function clickPageRouter(type){
  288. pageData.pageRouter = type;
  289. switch(type){
  290. case 'area':
  291. getAreaList();
  292. break;
  293. }
  294. }
  295. // 显示登记时间
  296. function changeIsShowDate(type){
  297. isShowDate.value = true;
  298. }
  299. onLoad((option) => {
  300. getCategoryList()
  301. // searchData.hospital = evt.hospital;
  302. let menu = JSON.parse(uni.getStorageSync("menuList")) || []; //菜单
  303. console.log(9555,menu)
  304. showDept.value = false
  305. menu.forEach((e) => {
  306. if (e.title=='故障管理') {
  307. e.childrens.forEach((el) => {
  308. if(el.link=='incidentManagement'){
  309. el.childrens.forEach(item =>{
  310. if(item.link=='strideLook'){
  311. showDept.value = true
  312. }else if(item.link=='all'){
  313. tabs.splice(0, 0 , { name: '全部事件', value: 'all' });
  314. }
  315. })
  316. }
  317. });
  318. }
  319. });
  320. let data = loginUserStore.loginUser.infoPermission
  321. pageData.deptList = data.dutyList
  322. setHospital();
  323. searchData.selected = evt.selected;
  324. searchData.area = evt.area;
  325. searchData.category = evt.category;
  326. searchData.categoryValue = evt.categoryValue;
  327. searchData.acceptDate = evt.acceptDate;
  328. if(showDept.value){
  329. searchData.deptValue = evt.deptValue;
  330. searchData.dept = evt.dept;
  331. }
  332. console.log(2222,evt)
  333. })
  334. </script>
  335. <style lang="scss" scoped>
  336. .mask{
  337. position: fixed;
  338. left: 0;
  339. top: 0;
  340. right: 0;
  341. bottom: 0;
  342. background-color: rgba(0, 0, 0, 0.4);
  343. z-index: 999;
  344. }
  345. .line{
  346. content: '';
  347. position: fixed;
  348. top: 0;
  349. left: 0;
  350. z-index: 9999;
  351. height: 8rpx;
  352. width: 100%;
  353. background-color: #EBEBEB;
  354. }
  355. .container{
  356. position: fixed;
  357. left: 125rpx;
  358. top: 0;
  359. right: 0;
  360. bottom: 0;
  361. z-index: 9999;
  362. background-color: #F7F7F7;
  363. display: flex;
  364. flex-direction: column;
  365. justify-content: space-between;
  366. .container_form{
  367. height: 100%;
  368. display: flex;
  369. flex-direction: column;
  370. flex: 1;
  371. min-height: 0;
  372. }
  373. .hospital{
  374. display: flex;
  375. justify-content: space-between;
  376. align-items: center;
  377. padding: 32rpx 24rpx 24rpx;
  378. background-color: #fff;
  379. .name{
  380. font-size: 30rpx;
  381. flex-shrink: 0;
  382. margin-right: 24rpx;
  383. }
  384. .value{
  385. font-size: 26rpx;
  386. color: #5DAAB6;
  387. }
  388. }
  389. .areas{
  390. flex: 1;
  391. min-height: 0;
  392. margin-top: 16rpx;
  393. background-color: #fff;
  394. .areas_item{
  395. padding: 24rpx;
  396. border-bottom: 1rpx solid #DEDEDE;
  397. }
  398. }
  399. .categorys{
  400. flex: 1;
  401. min-height: 0;
  402. margin-top: 16rpx;
  403. background-color: #fff;
  404. .categorys_item{
  405. padding: 24rpx;
  406. border-bottom: 1rpx solid #DEDEDE;
  407. }
  408. }
  409. .tabs{
  410. margin-top: 16rpx;
  411. background-color: #FBFBFB;
  412. display: flex;
  413. flex-wrap: wrap;
  414. justify-content: space-between;
  415. gap: 16rpx 0;
  416. padding: 24rpx 16rpx;
  417. .tab{
  418. width: 180rpx;
  419. height: 60rpx;
  420. display: flex;
  421. justify-content: center;
  422. align-items: center;
  423. background-color: #F7F7F7;
  424. font-size: 28rpx;
  425. position: relative;
  426. .newicon-xuanzejiaobiao{
  427. opacity: 0;
  428. position: absolute;
  429. right: 0;
  430. bottom: 0;
  431. font-size: 38rpx;
  432. color: #53B9BB;
  433. }
  434. &.active{
  435. background-color: rgba(149, 220, 231, 0.30);
  436. .newicon-xuanzejiaobiao{
  437. opacity: 1;
  438. }
  439. }
  440. }
  441. }
  442. .area,
  443. .category,
  444. .acceptDate{
  445. display: flex;
  446. justify-content: space-between;
  447. align-items: center;
  448. padding: 24rpx;
  449. background-color: #fff;
  450. margin-top: 24rpx;
  451. .name{
  452. font-size: 28rpx;
  453. flex-shrink: 0;
  454. margin-right: 24rpx;
  455. }
  456. .flex-1{
  457. flex: 3;
  458. }
  459. }
  460. .container_foot{
  461. .clear{
  462. padding: 24rpx;
  463. font-size: 28rpx;
  464. background-color: #fff;
  465. margin: 0 16rpx;
  466. display: flex;
  467. align-items: center;
  468. justify-content: center;
  469. }
  470. .foot_btns{
  471. margin-top: 24rpx;
  472. display: flex;
  473. border-top: 1rpx solid #BFBFBF;
  474. .cancel{
  475. flex: 1;
  476. background-color: #fff;
  477. font-size: 32rpx;
  478. padding: 24rpx;
  479. display: flex;
  480. justify-content: center;
  481. }
  482. .confirm{
  483. flex: 1;
  484. font-size: 32rpx;
  485. padding: 24rpx;
  486. background-color: $uni-primary;
  487. display: flex;
  488. justify-content: center;
  489. color: #fff;
  490. }
  491. }
  492. }
  493. }
  494. </style>