incidentList.vue 18 KB

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