incidentList.vue 19 KB

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