incidentList.vue 15 KB

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