incidentList.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543
  1. <template>
  2. <view class="incidentList">
  3. <view class="head">
  4. <view class="tab" :class="{active: tab.id === dataInfo.tabActiveId}" v-for="tab in dataInfo.tabs" :key="tab.id" @click="clickTab(tab.id)">
  5. {{tab.name}}<text v-if="tab.num !== ''">({{tab.num}})</text>
  6. </view>
  7. <view class="filter" @click="filterClick">
  8. <text class="newicon newicon-shaixuan"></text>
  9. </view>
  10. </view>
  11. <view class="body" v-if="dataInfo.list.length">
  12. <view class="body_item" v-for="data in dataInfo.list" :key="data.id" @click="toIncidentDetail(data)">
  13. <view class="body_item_head ellipsis-multiline">
  14. <text :style="priorityStyle(data.priority)">{{data.priority ? data.priority.name + ' ' : ''}}</text>{{data.description}}
  15. </view>
  16. <view class="body_item_content">
  17. <view class="body_item_content_p" v-if="data.department">
  18. <text class="name ellipsis">报修科室:{{data.department.dept}}</text>
  19. <view class="status" :style="stateStyle(data.state)">{{data.state ? data.state.name : ''}}</view>
  20. </view>
  21. <view class="body_item_content_p" v-if="data.place || data.houseNumber">
  22. <text class="name ellipsis">详细地址:{{data.place ? data.place.building.buildingName : ''}}{{data.place ? data.place.floorName : ''}}<text v-if="data.place && data.place.floorName">层</text> {{data.houseNumber}}</text>
  23. </view>
  24. <view class="body_item_content_p" v-if="data.overtimeRemark">
  25. <text class="name ellipsis">延期处理:{{data.overtimeRemark}}</text>
  26. </view>
  27. <view class="body_item_content_p">
  28. <text class="name" v-if="data.assigneeName">
  29. 处理人:{{data.assigneeName}}<template v-if="computedSynergetic(data.synergetic)">,{{computedSynergetic(data.synergetic)}}</template>
  30. </text>
  31. <text class="name" v-else-if="data.candidateGroupsName">
  32. 处理组:{{data.candidateGroupsName}}<template v-if="computedSynergetic(data.synergetic)">,{{computedSynergetic(data.synergetic)}}</template>
  33. </text>
  34. <text class="name" v-else>
  35. <template v-if="computedSynergetic(data.synergetic)">,{{computedSynergetic(data.synergetic)}}</template>
  36. </text>
  37. <view class="icon_all" @click.stop="attachmentClick(data)">
  38. <uni-icons type="mic-filled" class="mic-filled" :size="22" color="#949494" v-if="data.callID"></uni-icons>
  39. <uni-icons type="image-filled" class="image-filled" :size="22" color="#949494" v-if="data.reqAttachment"></uni-icons>
  40. </view>
  41. </view>
  42. </view>
  43. <view class="body_item_foot">
  44. <view class="foot_info">
  45. <view class="name" @click.stop="makePhoneCall(data.contactsInformation)">联系电话:{{data.contactsInformation}}<uni-icons type="phone-filled" class="phone-filled" :size="18" :color="primaryColor"></uni-icons></view>
  46. <text class="date">{{formatDate(data.acceptDate, 'MM-dd HH:mm')}}</text>
  47. </view>
  48. <view class="btns">
  49. <button @click.stop="handler('changeUser', data, data.id)" type="default" class="primaryButton btn" v-if="data.state.value === 'pending' || data.state.value === 'handler' || (data.state.value === 'reassign' && assignFlag)">换人处理</button>
  50. <button @click.stop="handler('handler', data, data.id)" type="default" class="primaryButton btn" v-if="data.state.value === 'handler' && data.handlingPersonnelUser && data.handlingPersonnelUser.id == loginUserStore.loginUser.user.id">处理</button>
  51. <button @click.stop="receive(data)" type="default" class="primaryButton btn" v-if="computedReceive(data)">接单</button>
  52. </view>
  53. </view>
  54. </view>
  55. </view>
  56. <view class="zanwu" v-else>
  57. <text class="newicon newicon-zanwu"></text>
  58. </view>
  59. <IncidentListFilter v-if="dataInfo.isFilter" @cancelEmit="cancelFilter" @confirmEmit="conformFilter" :evt="dataInfo.evtFilter"></IncidentListFilter>
  60. <IncidentAttachment v-if="dataInfo.isAttachment" @knowEmit="knowAttachment" :incidentData="dataInfo.incidentData"></IncidentAttachment>
  61. </view>
  62. </template>
  63. <script setup>
  64. import IncidentListFilter from '@/components/IncidentListFilter.vue';
  65. import IncidentAttachment from '@/components/IncidentAttachment.vue';
  66. import { startOfDay, endOfDay, format, add } from 'date-fns'
  67. import { ref, reactive, computed } from 'vue'
  68. import { onLoad, onPullDownRefresh, onReachBottom, onTabItemTap } from '@dcloudio/uni-app'
  69. import { api_getDictionary, api_incident, api_incident_count, api_incidentTask } from "@/http/api.js"
  70. import { filterFormatDate } from '@/filters/filterFormatDate.js'
  71. import { computedPriorityStyle } from '@/filters/computedPriorityStyle.js'
  72. import { computedStateStyle } from '@/filters/computedStateStyle.js'
  73. import { computedCurrentLogOverTime } from '@/filters/computedCurrentLogOverTime.js'
  74. import { defaultColor } from '@/static/js/theme.js'
  75. import { useSetTitle } from '@/share/useSetTitle.js'
  76. import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
  77. import { useSetTabbar } from '@/share/useSetTabbar.js'
  78. import { useLoginUserStore } from '@/stores/loginUser'
  79. import { useIncidentNumStore } from '@/stores/incidentNum'
  80. import { useIncidentListSearchStore } from '@/stores/incidentListSearch'
  81. import { useHandlerStore } from '@/stores/handler'
  82. useSetTitle();
  83. const loginUserStore = useLoginUserStore();
  84. const incidentNumStore = useIncidentNumStore();
  85. const incidentListSearchStore = useIncidentListSearchStore();
  86. const { formatDate } = filterFormatDate();
  87. const { priorityStyle } = computedPriorityStyle();
  88. const { stateStyle } = computedStateStyle();
  89. const { currentLogOverTime } = computedCurrentLogOverTime();
  90. const { makePhoneCall } = useMakePhoneCall();
  91. const { setTabbar } = useSetTabbar();
  92. const handlerStore = useHandlerStore();
  93. // 主题颜色
  94. const primaryColor = ref(defaultColor)
  95. const assignFlag = ref(false);//指派权限
  96. const qiangdan = ref(false);//接单权限
  97. // 判断是否显示接单按钮
  98. const computedReceive = computed(() => (data) => {
  99. let inUser = data.handlingPersonnelUser && data.handlingPersonnelUser.id == loginUserStore.loginUser.user.id;
  100. let inUser2 = data.currentLog.workerId == loginUserStore.loginUser.user.id;
  101. let inGroup = false;
  102. if(loginUserStore.loginUser.user&&loginUserStore.loginUser.user.group){
  103. loginUserStore.loginUser.user.group.forEach(item => {
  104. if(data.currentLog){
  105. if (item.id == data.currentLog.groupId) {
  106. inGroup = true;
  107. }
  108. }
  109. })
  110. }
  111. return data.state.value === 'pending' && (inUser2 || inGroup) && qiangdan.value;
  112. })
  113. // 转换协同人
  114. const computedSynergetic = computed(() => (synergetic) => {
  115. return (synergetic && synergetic.length) ? synergetic.map(v => v.name).join(',') : ''
  116. })
  117. // 数据
  118. const dataInfo = reactive({
  119. tabs: [{id: 0, name: '全部', value: 'all', num: ''}],
  120. tabActiveId: 0,//当前选择的tab
  121. list: [],//工单列表
  122. idx: 0,//页码
  123. hasMore: true,//是否有更多数据
  124. isFilter: false,//筛选框开关
  125. isAttachment: false,//图片和录音开关
  126. incidentId: undefined,
  127. evtFilter: {
  128. hospital: {},
  129. selected: 'todoingAll',
  130. area: {id: 0, area: '全部'},
  131. category: {id: 0, category: '全部'},
  132. acceptDate: [],
  133. },//筛选框数据
  134. })
  135. // 工单详情
  136. function toIncidentDetail(data){
  137. uni.navigateTo({
  138. url: `/pages/incidentDetail/incidentDetail?incidentId=${data.id}`
  139. })
  140. }
  141. // 获取tab选项
  142. function getTabs(){
  143. uni.showLoading({
  144. title: "加载中",
  145. mask: true,
  146. });
  147. api_getDictionary({
  148. "type": "list",
  149. "key": "incident_status"
  150. }).then(res => {
  151. uni.hideLoading();
  152. let incidentStatusList = res || [];
  153. let pending = incidentStatusList.find(v => v.value === 'pending');
  154. let handler = incidentStatusList.find(v => v.value === 'handler');
  155. dataInfo.tabs = [{id: 0, name: '全部', value: 'all', num: ''}];
  156. pending && dataInfo.tabs.push({...pending, ...{num: ''}});
  157. handler && dataInfo.tabs.push({...handler, ...{num: ''}});
  158. getList(0);
  159. })
  160. }
  161. // 点击tab
  162. function clickTab(tabId){
  163. dataInfo.tabActiveId = tabId;
  164. getList(0);
  165. }
  166. // 点击筛选
  167. function filterClick(){
  168. dataInfo.isFilter = true;
  169. }
  170. // 确认筛选
  171. function conformFilter(evtFilter){
  172. dataInfo.evtFilter = evtFilter;
  173. dataInfo.isFilter = false;
  174. getList(0);
  175. }
  176. // 关闭筛选
  177. function cancelFilter(){
  178. dataInfo.isFilter = false;
  179. }
  180. // 点击图片和录音
  181. function attachmentClick(incidentData){
  182. dataInfo.incidentData = incidentData;
  183. dataInfo.isAttachment = true;
  184. }
  185. // 知道了图片和录音
  186. function knowAttachment(){
  187. dataInfo.isAttachment = false;
  188. }
  189. // 处理按钮
  190. function handler(type, data, incidentId){
  191. handlerStore.clearHandlerData();
  192. uni.navigateTo({
  193. url: `/pages/${type}/${type}?incidentId=${incidentId}`
  194. })
  195. }
  196. // 接单调用方案
  197. function receiveFn(incidentData){
  198. let placeId = null
  199. if(incidentData.place){
  200. placeId = JSON.parse(JSON.stringify(incidentData.place.id))
  201. }
  202. uni.showLoading({
  203. title: "加载中",
  204. mask: true,
  205. });
  206. let postData = {
  207. incident: incidentData,
  208. }
  209. if(placeId){
  210. postData.incident.place = {}
  211. postData.incident.place.id = placeId
  212. }
  213. api_incidentTask('receive', postData).then(res => {
  214. uni.hideLoading();
  215. if(res.state == 200){
  216. getList(0);
  217. uni.showToast({
  218. icon: 'none',
  219. title: '接单成功',
  220. });
  221. }else{
  222. uni.showToast({
  223. icon: 'none',
  224. title: res.msg || '请求数据失败!'
  225. });
  226. }
  227. })
  228. }
  229. // 接单按钮
  230. function receive(incidentData){
  231. uni.showModal({
  232. title: '提示',
  233. content: `您确认要接单吗?`,
  234. confirmColor: defaultColor,
  235. confirmText: '确认',
  236. success: function(res) {
  237. if (res.confirm) {
  238. receiveFn(incidentData);
  239. }
  240. }
  241. });
  242. }
  243. // 获取列表信息
  244. function getList(idx){
  245. uni.showLoading({
  246. title: "加载中",
  247. mask: true,
  248. });
  249. dataInfo.idx = idx === undefined ? dataInfo.idx : idx;
  250. if(dataInfo.idx === 0){
  251. dataInfo.list = [];
  252. }
  253. let postData = {
  254. "idx": dataInfo.idx,
  255. "sum": 10,
  256. "incident": {
  257. "queryTask": dataInfo.evtFilter.selected || undefined,
  258. "assignee": loginUserStore.loginUser.user.id,
  259. "statusId": dataInfo.tabActiveId || undefined,
  260. }
  261. }
  262. // 请求参数调整
  263. if(!postData.incident){
  264. postData.incident = {};
  265. }
  266. let hospital = loginUserStore.loginUser.user.currentHospital?
  267. loginUserStore.loginUser.user.currentHospital:
  268. loginUserStore.loginUser.hospital[0]
  269. if(postData.incident.queryTask === 'all' || postData.incident.queryTask === 'callback'){
  270. if(hospital.type && hospital.type.value == 6){ // 当前是责任科室
  271. postData.incident.duty = hospital;
  272. }else{ // 当前是院区
  273. postData.incident.hosId = hospital.id;
  274. }
  275. }else{
  276. delete postData.incident.duty;
  277. delete postData.incident.hosId;
  278. }
  279. if(postData.incident.queryTask!='todo' && postData.incident.queryTask!='doing' && postData.incident.queryTask!='storage'){
  280. if(dataInfo.evtFilter.deptValue && dataInfo.evtFilter.deptValue.value){
  281. let infoPermission = loginUserStore.loginUser.infoPermission
  282. let itemDept = infoPermission.dutyList.find(i=>i.id == dataInfo.evtFilter.deptValue.value)
  283. postData.incident.duty = itemDept;
  284. delete postData.incident.hosId;
  285. }
  286. }
  287. if(postData.incident.queryTask === 'todo' || postData.incident.queryTask === 'owns' || postData.incident.queryTask === 'todoingAll'){
  288. if(loginUserStore.loginUser.user && loginUserStore.loginUser.user.group){
  289. postData.incident.candidateGroups = loginUserStore.loginUser.user.group.map(v => v.id).toString();
  290. }
  291. }else{
  292. delete postData.incident.candidateGroups;
  293. }
  294. if(dataInfo.evtFilter && dataInfo.evtFilter.category){
  295. postData.incident.levelCategory = { id: dataInfo.evtFilter.category.value };
  296. }
  297. if(dataInfo.evtFilter && Array.isArray(dataInfo.evtFilter.acceptDate) && dataInfo.evtFilter.acceptDate.length){
  298. postData.incident.acceptDate = format(startOfDay(new Date(dataInfo.evtFilter.acceptDate[0])), 'yyyy-MM-dd HH:mm:ss');
  299. postData.incident.acceptDateEnd = format(endOfDay(dataInfo.evtFilter.acceptDate[1]), 'yyyy-MM-dd HH:mm:ss');
  300. }
  301. if(dataInfo.evtFilter && dataInfo.evtFilter.area && dataInfo.evtFilter.area.id){
  302. let id = dataInfo.evtFilter.area.id
  303. // postData.incident.area = dataInfo.evtFilter.area
  304. postData.incident.area = {id:id}
  305. }
  306. incidentListSearchStore.setIncidentListSearchData(dataInfo);
  307. api_incident(postData).then(res => {
  308. uni.hideLoading();
  309. uni.stopPullDownRefresh();
  310. if(res.status == 200){
  311. let list = res.list || [];
  312. if(list.length){
  313. dataInfo.hasMore = true;
  314. dataInfo.list = dataInfo.idx === 0 ? list : dataInfo.list.concat(list);
  315. }else{
  316. dataInfo.hasMore = false;
  317. }
  318. }else{
  319. uni.showToast({
  320. icon: 'none',
  321. title: res.msg || '请求数据失败!'
  322. });
  323. }
  324. })
  325. getCount(postData.incident);
  326. }
  327. // 获取列表数量
  328. function getCount(incident = {}){
  329. let postData = {
  330. wxCount: 'true',
  331. incidentList: [],
  332. }
  333. dataInfo.tabs.forEach(v => {
  334. postData.incidentList.push({...incident, ...{statusId: v.id || undefined}});
  335. })
  336. api_incident_count(postData).then(res => {
  337. if(res.state == 200){
  338. let myData = res.data || [];
  339. dataInfo.tabs.forEach((v, i) => {
  340. v.num = myData[i];
  341. })
  342. }else{
  343. uni.showToast({
  344. icon: 'none',
  345. title: res.msg || '请求数据失败!'
  346. });
  347. }
  348. })
  349. }
  350. // 初始化
  351. function onLoadFn(){
  352. // 我的-数量跳转
  353. if(incidentNumStore.incidentNum.data){
  354. dataInfo.evtFilter.selected = incidentNumStore.incidentNum.data.queryTask;
  355. dataInfo.tabActiveId = incidentNumStore.incidentNum.data.statusId;
  356. incidentNumStore.clearIncidentNumData();
  357. }else if(incidentListSearchStore.incidentListSearch.data){
  358. // 缓存的搜索条件
  359. Object.assign(dataInfo, incidentListSearchStore.incidentListSearch.data);
  360. }
  361. for (let i = 0; i < loginUserStore.loginUser.menu.length; i++) {
  362. if (loginUserStore.loginUser.menu[i].link == "assign") {
  363. assignFlag.value = true;
  364. }
  365. if (loginUserStore.loginUser.menu[i].link == "receive") {
  366. qiangdan.value = true
  367. }
  368. }
  369. getTabs();
  370. }
  371. onLoad((option) => {
  372. for(let i = 0; i<7; i++){
  373. setTabbar(i)
  374. }
  375. onLoadFn();
  376. })
  377. onTabItemTap(e => {
  378. onLoadFn();
  379. })
  380. onPullDownRefresh(() => {
  381. getList(0)
  382. })
  383. onReachBottom(() => {
  384. dataInfo.idx += 1;
  385. if (dataInfo.hasMore) {
  386. getList(); // 当触底时加载更多数据
  387. }
  388. })
  389. </script>
  390. <style lang="scss" scoped>
  391. page{
  392. height: calc(100vh - var(--window-bottom));
  393. }
  394. .incidentList{
  395. display: flex;
  396. flex-direction: column;
  397. justify-content: space-between;
  398. .head{
  399. height: 88rpx;
  400. display: flex;
  401. position: fixed;
  402. z-index: 99;
  403. width: 100%;
  404. background-color: #fff;
  405. font-size: 30rpx;
  406. .tab{
  407. flex: 1;
  408. display: flex;
  409. justify-content: center;
  410. align-items: center;
  411. border-bottom: 4rpx solid transparent;
  412. &.active{
  413. color: $uni-primary;
  414. border-color: $uni-primary;
  415. }
  416. }
  417. .filter{
  418. width: 84rpx;
  419. display: flex;
  420. justify-content: center;
  421. align-items: center;
  422. .newicon-shaixuan{
  423. font-size: 36rpx;
  424. color: #2C2C2C;
  425. }
  426. }
  427. }
  428. .body{
  429. margin-bottom: var(--window-bottom);
  430. margin-top: 88rpx;
  431. border-top: 6rpx solid #EBEBEB;
  432. .body_item{
  433. border-bottom: 8rpx solid #EBEBEB;
  434. .body_item_head{
  435. word-break: break-all;
  436. text-align: justify;
  437. text-align: left;
  438. margin: 24rpx;
  439. font-size: 30rpx;
  440. }
  441. .body_item_content{
  442. border-top: 1rpx solid #D8D8D8;
  443. padding: 24rpx 24rpx 24rpx 48rpx;
  444. .body_item_content_p{
  445. color: #6A6A6A;
  446. font-size: 26rpx;
  447. display: flex;
  448. justify-content: space-between;
  449. align-items: center;
  450. margin-bottom: 24rpx;
  451. &:last-of-type{
  452. margin-bottom: 0;
  453. }
  454. .name{
  455. flex: 1;
  456. }
  457. .status{
  458. padding: 4rpx 10rpx;
  459. border-radius: 20rpx;
  460. background-color: #DBE8FE;
  461. font-size: 22rpx;
  462. color: #006CF9;
  463. }
  464. .icon_all{
  465. .mic-filled,
  466. .image-filled
  467. {
  468. margin-left: 16rpx;
  469. }
  470. }
  471. }
  472. }
  473. .body_item_foot{
  474. border-top: 1rpx solid #D8D8D8;
  475. font-size: 26rpx;
  476. padding: 24rpx;
  477. .foot_info{
  478. display: flex;
  479. justify-content: space-between;
  480. align-items: center;
  481. .phone-filled{
  482. margin-left: 5rpx;
  483. }
  484. }
  485. }
  486. }
  487. }
  488. .zanwu{
  489. box-sizing: border-box;
  490. margin-bottom: var(--window-bottom);
  491. margin-top: 88rpx;
  492. border-top: 6rpx solid #EBEBEB;
  493. height: calc(100vh - var(--window-bottom) - 88rpx);
  494. display: flex;
  495. justify-content: center;
  496. background-color: #F7F7F7;
  497. .newicon-zanwu{
  498. font-size: 256rpx;
  499. color: #D6D6D6;
  500. margin-top: 140rpx;
  501. }
  502. }
  503. }
  504. </style>