repairsList.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669
  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.stop="toIncidentDetail(data)">
  13. <view class="body_item_head ellipsis-multiline">
  14. {{data.description}}
  15. </view>
  16. <view class="body_item_content">
  17. <view class="body_item_content_p" v-if="data.place || data.houseNumber">
  18. <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>
  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.rsPrice">
  22. <text class="name ellipsis">维修总价:{{data.rsPrice}}</text>
  23. </view>
  24. <view class="body_item_content_p">
  25. <view class="name ellipsis" @click.stop="makePhoneCall(data.contactsInformation)">维修人员电话:{{data.contactsInformation || '暂无'}}<uni-icons v-if="data.contactsInformation" type="phone-filled" class="phone-filled" :size="18" :color="primaryColor"></uni-icons></view>
  26. </view>
  27. <view class="body_item_content_p" v-if="data.currentLog && data.currentLog.logType.value=='overtime'">
  28. <text class="name ellipsis">维修说明:{{data.overtimeRemark}}</text>
  29. </view>
  30. </view>
  31. <view class="body_item_foot">
  32. <view class="foot_info">
  33. <view class="name">维修人员:{{data.assigneeName || '暂无'}}</view>
  34. <text class="date">{{formatDate(data.startDate, 'yyyy-MM-dd HH:mm')}}</text>
  35. </view>
  36. <view class="btns">
  37. <button v-if="!data.wxdegree && (data.state.name=='待评价'|| data.state.name=='已关闭')" @click.stop="handler('changeUser', data)" type="default" class="primaryButton btn">评价</button>
  38. </view>
  39. </view>
  40. <div class="sign-style" v-if="deptRepair && publicRepair">
  41. <view class="img-box" v-if="data.repairIncidentType && data.repairIncidentType.name=='科室报修'">
  42. <view class="img-url1"></view>
  43. <view class="img-name">科</view>
  44. </view>
  45. <view class="img-box" v-if="data.repairIncidentType && data.repairIncidentType.name=='公共报修'">
  46. <view class="img-url2"></view>
  47. <view class="img-name">公</view>
  48. </view>
  49. </div>
  50. </view>
  51. </view>
  52. <view class="zanwu" v-else>
  53. <text class="newicon newicon-zanwu"></text>
  54. </view>
  55. <repairsFilter v-if="dataInfo.isFilter" @cancelEmit="cancelFilter" @confirmEmit="conformFilter" :evt="dataInfo.evtFilter"></repairsFilter>
  56. <IncidentAttachment v-if="dataInfo.isAttachment" @knowEmit="knowAttachment" :incidentData="dataInfo.incidentData"></IncidentAttachment>
  57. <uni-popup ref="popup" background-color="#fff" type="center" :before-close="true">
  58. <view class="popup-content">
  59. <view class="form_item column">
  60. <view class="title"><text class="required newicon newicon-bitian"></text>星级:</view>
  61. <uni-rate class="value" v-model="rate" />
  62. </view>
  63. <view class="form_item column">
  64. <view class="title"><text class="required newicon newicon-bitian"></text>内容:</view>
  65. <uni-easyinput class="value" type="textarea" v-model="wxdegreeremark" placeholder="请输入评价内容"/>
  66. </view>
  67. </view>
  68. <view class="foot_common_btns">
  69. <button @click="closePop" type="default" class="cancelButton btn">取消</button>
  70. <button @click="submit" type="default" class="primaryButton btn">提交</button>
  71. </view>
  72. </uni-popup>
  73. </view>
  74. </template>
  75. <script setup>
  76. import repairsFilter from '@/components/repairsFilter.vue';
  77. import IncidentAttachment from '@/components/IncidentAttachment.vue';
  78. import { startOfDay, endOfDay, format, add } from 'date-fns'
  79. import { ref, reactive, computed } from 'vue'
  80. import { onLoad, onShow, onHide, onPullDownRefresh, onReachBottom, onTabItemTap } from '@dcloudio/uni-app'
  81. import { api_getDictionary, api_incident, api_incident_count, api_incidentTask, api_taskresolve } from "@/http/api.js"
  82. import { filterFormatDate } from '@/filters/filterFormatDate.js'
  83. import { computedPriorityStyle } from '@/filters/computedPriorityStyle.js'
  84. import { computedStateStyle } from '@/filters/computedStateStyle.js'
  85. import { computedCurrentLogOverTime } from '@/filters/computedCurrentLogOverTime.js'
  86. import { defaultColor } from '@/static/js/theme.js'
  87. import { useSetTitle } from '@/share/useSetTitle.js'
  88. import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
  89. import { useLoginUserStore } from '@/stores/loginUser'
  90. import { useIncidentNumStore } from '@/stores/incidentNum'
  91. import { useIncidentListSearchStore } from '@/stores/incidentListSearch'
  92. import { repositoryListSearchStore } from '@/stores/repositorySearch'
  93. useSetTitle();
  94. const repositorySearchStore = repositoryListSearchStore();
  95. const loginUserStore = useLoginUserStore();
  96. const incidentNumStore = useIncidentNumStore();
  97. const incidentListSearchStore = useIncidentListSearchStore();
  98. const { formatDate } = filterFormatDate();
  99. const { priorityStyle } = computedPriorityStyle();
  100. const { stateStyle } = computedStateStyle();
  101. const { currentLogOverTime } = computedCurrentLogOverTime();
  102. const { makePhoneCall } = useMakePhoneCall();
  103. // 主题颜色
  104. const primaryColor = ref(defaultColor)
  105. const popup = ref(null);//弹框
  106. const assignFlag = ref(false);//指派权限
  107. const qiangdan = ref(false);//接单权限
  108. const deptRepair = ref({});//科内报修
  109. const publicRepair = ref({});//公共报修
  110. const degreeDictionary = ref(null); //星级字典
  111. const rowData = ref(null); //选择的数据
  112. const isSubmit = ref(false);
  113. const rate = ref(3);//星级
  114. const wxdegreeremark = ref(null);//评价内容
  115. // 判断是否显示接单按钮
  116. const computedReceive = computed(() => (data) => {
  117. let inUser = data.currentLog && data.currentLog.workerId == loginUserStore.loginUser.user.id;
  118. let inGroup = false;
  119. loginUserStore.loginUser.user.group.forEach(item => {
  120. if(data.currentLog){
  121. if (item.id == data.currentLog.groupId) {
  122. inGroup = true;
  123. }
  124. }
  125. })
  126. return data.state.value === 'pending' && (inUser || inGroup) && qiangdan.value;
  127. })
  128. // 转换协同人
  129. const computedSynergetic = computed(() => (synergetic) => {
  130. return (synergetic && synergetic.length) ? synergetic.map(v => v.name).join(',') : ''
  131. })
  132. const repairIncident = ref(null);
  133. // 数据
  134. const dataInfo = reactive({
  135. tabs: [{id: 0, name: '我的报修', value: 'all', num: ''},],
  136. tabActiveId: 0,//当前选择的tab
  137. list: [],//工单列表
  138. idx: 0,//页码
  139. hasMore: true,//是否有更多数据
  140. isFilter: false,//筛选框开关
  141. isAttachment: false,//图片和录音开关
  142. incidentId: undefined,
  143. stateValue:0,
  144. evtFilter: {
  145. hospital: {},
  146. selected: 'todoingAll',
  147. area: {id: 0, area: '全部'},
  148. category: {id: 0, category: '全部'},
  149. acceptDate: [],
  150. },//筛选框数据
  151. })
  152. // 工单详情
  153. function toIncidentDetail(data){
  154. uni.navigateTo({
  155. url: `/pages/repair/repairsDetail?incidentId=${data.id}`
  156. })
  157. }
  158. // 获取tab选项
  159. function getTabs(){
  160. uni.showLoading({
  161. title: "加载中",
  162. mask: true,
  163. });
  164. let data = JSON.parse(uni.getStorageSync('sysData'))
  165. deptRepair.value = data.find(i=>i.keyconfig=='deptRepair')
  166. publicRepair.value = data.find(i=>i.keyconfig=='publicRepair')
  167. let postData = {
  168. "key": 'repair_incident_type',
  169. "type": "list",
  170. };
  171. if(deptRepair.value.valueconfig==1){
  172. api_getDictionary(postData).then(res => {
  173. res = res || [];
  174. repairIncident.value = res.find(i=>i.value=='dept')
  175. getList(0);
  176. })
  177. dataInfo.tabs = [
  178. {id: 0, name: '我的报修', value: 'all', num: ''},
  179. {id: 1, name: '科内报修', value: '2', num: ''}
  180. ]
  181. }else{
  182. getList(0);
  183. dataInfo.tabs = [
  184. {id: 0, name: '我的报修', value: 'all', num: ''},
  185. ]
  186. }
  187. }
  188. // 点击tab
  189. function clickTab(tabId){
  190. dataInfo.tabActiveId = tabId;
  191. getList(0);
  192. }
  193. // 点击筛选
  194. function filterClick(){
  195. dataInfo.isFilter = true;
  196. }
  197. // 确认筛选
  198. function conformFilter(evtFilter){
  199. dataInfo.stateValue = evtFilter.category;
  200. dataInfo.isFilter = false;
  201. getList(0);
  202. }
  203. // 关闭筛选
  204. function cancelFilter(){
  205. dataInfo.isFilter = false;
  206. }
  207. // 点击图片和录音
  208. function attachmentClick(incidentData){
  209. dataInfo.incidentData = incidentData;
  210. dataInfo.isAttachment = true;
  211. }
  212. // 知道了图片和录音
  213. function knowAttachment(){
  214. dataInfo.isAttachment = false;
  215. }
  216. // 评价
  217. function handler(type, data){
  218. rowData.value = data
  219. popup.value.open()
  220. let postData = {
  221. key: "incident_degree",
  222. type: "list"
  223. };
  224. api_getDictionary(postData).then(res => {
  225. res = res || [];
  226. degreeDictionary.value = res
  227. })
  228. }
  229. function closePop(){
  230. rate.value = 3
  231. wxdegreeremark.value = null
  232. popup.value.close()
  233. }
  234. function submit(){
  235. if(!rate.value){
  236. uni.showToast({
  237. icon: 'none',
  238. title: '请选择星级'
  239. });
  240. return;
  241. }
  242. if(!wxdegreeremark.value){
  243. uni.showToast({
  244. icon: 'none',
  245. title: '请输入评价内容'
  246. });
  247. return;
  248. }
  249. let rateData = null
  250. if(rate.value==0){
  251. rateData=degreeDictionary.value[0].id
  252. }else if(rate.value==1){
  253. rateData=degreeDictionary.value[4].id
  254. }else if(rate.value==2){
  255. rateData=degreeDictionary.value[3].id
  256. }else if(rate.value==3){
  257. rateData=degreeDictionary.value[2].id
  258. }else if(rate.value==4){
  259. rateData=degreeDictionary.value[1].id
  260. }else if(rate.value==5){
  261. rateData=degreeDictionary.value[0].id
  262. }
  263. let postData = {
  264. ...rowData.value,
  265. wxdegree: rateData==0?degreeDictionary.value[0]:{id: rateData},
  266. wxdegreeremark: wxdegreeremark.value
  267. }
  268. api_taskresolve({incident:postData}).then(res => {
  269. uni.hideLoading();
  270. if(res.state == 200){
  271. getList(0);
  272. uni.showToast({
  273. icon: 'none',
  274. title: '评价成功',
  275. });
  276. }else{
  277. uni.showToast({
  278. icon: 'none',
  279. title: res.msg || '请求数据失败!'
  280. });
  281. }
  282. })
  283. closePop()
  284. }
  285. // 获取列表信息
  286. function getList(idx){
  287. uni.showLoading({
  288. title: "加载中",
  289. mask: true,
  290. });
  291. dataInfo.idx = idx === undefined ? dataInfo.idx : idx;
  292. if(dataInfo.idx === 0){
  293. dataInfo.list = [];
  294. }
  295. let postData = {
  296. "idx": dataInfo.idx,
  297. "sum": 20,
  298. incident: {
  299. requester: dataInfo.tabActiveId == 0 ? { id: loginUserStore.loginUser.user.id } : undefined,
  300. department: dataInfo.tabActiveId == 1 ? { id: loginUserStore.loginUser.user.dept.id } : undefined,
  301. statesValues: (dataInfo.stateValue === 'close0' || dataInfo.stateValue === 'close1') ? 'close' : (dataInfo.stateValue || undefined),
  302. hasWxdegree: dataInfo.stateValue === 'close0' ? 0 : (dataInfo.stateValue === 'close1' ? 1 : undefined),
  303. repairIncidentType:{
  304. id:''
  305. }
  306. }
  307. }
  308. if(dataInfo.tabActiveId == 1){
  309. postData.incident.repairIncidentType.id = repairIncident.value.id
  310. }
  311. if(JSON.stringify(postData.incident.statesValues) === '{}'){
  312. delete postData.incident.statesValues
  313. }
  314. api_incident(postData).then(res => {
  315. uni.hideLoading();
  316. uni.stopPullDownRefresh();
  317. if(res.status == 200){
  318. let list = res.list || [];
  319. if(list.length){
  320. dataInfo.hasMore = true;
  321. dataInfo.list = dataInfo.idx === 0 ? list : dataInfo.list.concat(list);
  322. }else{
  323. dataInfo.hasMore = false;
  324. }
  325. }else{
  326. uni.showToast({
  327. icon: 'none',
  328. title: res.msg || '请求数据失败!'
  329. });
  330. }
  331. })
  332. // getCount(postData.incident);
  333. }
  334. // 获取列表数量
  335. function getCount(incident = {}){
  336. let postData = {
  337. wxCount: 'true',
  338. incidentList: [],
  339. }
  340. dataInfo.tabs.forEach(v => {
  341. postData.incidentList.push({...incident, ...{statusId: v.id || undefined}});
  342. })
  343. api_incident_count(postData).then(res => {
  344. if(res.state == 200){
  345. let myData = res.data || [];
  346. dataInfo.tabs.forEach((v, i) => {
  347. v.num = myData[i];
  348. })
  349. }else{
  350. uni.showToast({
  351. icon: 'none',
  352. title: res.msg || '请求数据失败!'
  353. });
  354. }
  355. })
  356. }
  357. // 初始化
  358. function onLoadFn(){
  359. getTabs();
  360. }
  361. onLoad((option) => {
  362. dataInfo.tabActiveId = Number(option.type)
  363. dataInfo.stateValue = option.value
  364. dataInfo.evtFilter.category = option.value
  365. repositorySearchStore.setRepositoryListSearchData(dataInfo.evtFilter)
  366. onLoadFn();
  367. })
  368. onShow((option) =>{
  369. })
  370. onHide(()=>{
  371. repositorySearchStore.clearRepositoryListSearchData()
  372. })
  373. onTabItemTap(e => {
  374. // onLoadFn();
  375. })
  376. onPullDownRefresh(() => {
  377. // getList(0)
  378. })
  379. onReachBottom(() => {
  380. dataInfo.idx += 1;
  381. if (dataInfo.hasMore) {
  382. getList(); // 当触底时加载更多数据
  383. }
  384. })
  385. </script>
  386. <style scoped>
  387. >>> .uni-popup__wrapper{
  388. width: 80%;
  389. padding: 40rpx;
  390. }
  391. </style>
  392. <style lang="scss" scoped>
  393. page{
  394. height: calc(100vh - var(--window-bottom));
  395. }
  396. .incidentList{
  397. display: flex;
  398. flex-direction: column;
  399. justify-content: space-between;
  400. .head{
  401. height: 88rpx;
  402. display: flex;
  403. position: fixed;
  404. z-index: 99;
  405. width: 100%;
  406. background-color: #fff;
  407. font-size: 30rpx;
  408. .tab{
  409. flex: 1;
  410. display: flex;
  411. justify-content: center;
  412. align-items: center;
  413. border-bottom: 4rpx solid transparent;
  414. &.active{
  415. color: $uni-primary;
  416. border-color: $uni-primary;
  417. }
  418. }
  419. .filter{
  420. width: 84rpx;
  421. display: flex;
  422. justify-content: center;
  423. align-items: center;
  424. .newicon-shaixuan{
  425. font-size: 36rpx;
  426. color: #2C2C2C;
  427. }
  428. }
  429. }
  430. .body{
  431. margin-bottom: var(--window-bottom);
  432. margin-top: 88rpx;
  433. border-top: 6rpx solid #EBEBEB;
  434. .body_item{
  435. border-bottom: 8rpx solid #EBEBEB;
  436. position: relative;
  437. .sign-style{
  438. position: absolute;
  439. right: 0;
  440. top: -25rpx;
  441. .img-box{
  442. position: relative;
  443. .img-url1{
  444. width: 70rpx;
  445. height: 70rpx;
  446. background-image: url('../../static/img/jiaobiao1.png');
  447. }
  448. .img-url2{
  449. width: 70rpx;
  450. height: 70rpx;
  451. background-image: url('../../static/img/jiaobiao2.png');
  452. }
  453. .img-name{
  454. position: absolute;
  455. right: 8rpx;
  456. top: 0;
  457. color: #fff;
  458. font-size: 24rpx;
  459. }
  460. }
  461. }
  462. .body_item_head{
  463. word-break: break-all;
  464. text-align: justify;
  465. text-align: left;
  466. margin: 24rpx;
  467. font-size: 30rpx;
  468. }
  469. .body_item_content{
  470. border-top: 1rpx solid #D8D8D8;
  471. padding: 24rpx 24rpx 24rpx 48rpx;
  472. .body_item_content_p{
  473. color: #6A6A6A;
  474. font-size: 26rpx;
  475. display: flex;
  476. justify-content: space-between;
  477. align-items: center;
  478. margin-bottom: 24rpx;
  479. &:last-of-type{
  480. margin-bottom: 0;
  481. }
  482. .name{
  483. flex: 1;
  484. }
  485. .status{
  486. padding: 4rpx 10rpx;
  487. border-radius: 20rpx;
  488. background-color: #DBE8FE;
  489. font-size: 22rpx;
  490. color: #006CF9;
  491. }
  492. .icon_all{
  493. .mic-filled,
  494. .image-filled
  495. {
  496. margin-left: 16rpx;
  497. }
  498. }
  499. }
  500. }
  501. .body_item_foot{
  502. border-top: 1rpx solid #D8D8D8;
  503. font-size: 26rpx;
  504. padding: 24rpx;
  505. .foot_info{
  506. display: flex;
  507. justify-content: space-between;
  508. align-items: center;
  509. .phone-filled{
  510. margin-left: 5rpx;
  511. }
  512. }
  513. }
  514. }
  515. }
  516. .zanwu{
  517. box-sizing: border-box;
  518. margin-bottom: var(--window-bottom);
  519. margin-top: 88rpx;
  520. border-top: 6rpx solid #EBEBEB;
  521. height: calc(100vh - var(--window-bottom) - 88rpx);
  522. display: flex;
  523. justify-content: center;
  524. background-color: #F7F7F7;
  525. .newicon-zanwu{
  526. font-size: 256rpx;
  527. color: #D6D6D6;
  528. margin-top: 140rpx;
  529. }
  530. }
  531. .popup-content{
  532. .form_item{
  533. display: flex;
  534. align-items: center;
  535. padding-top: 24rpx;
  536. min-height: 86rpx;
  537. position: relative;
  538. .chunk{
  539. width: 100%;
  540. height: 70rpx;
  541. line-height: 70rpx;
  542. text-align: center;
  543. background: #F7F8FA;
  544. box-shadow: 0px 3px 6px 1px rgba(0,0,0,0.16);
  545. border-radius: 10rpx;
  546. }
  547. &.column{
  548. height: auto;
  549. flex-direction: column;
  550. align-items: flex-start;
  551. .import-rep{
  552. padding: 5rpx 10rpx;
  553. border-radius: 50rpx;
  554. background: #d1fcd5;
  555. color: #49b856;
  556. font-size: 24rpx;
  557. }
  558. .title{
  559. margin-right: 0;
  560. }
  561. .title-width{
  562. width: 100%;
  563. }
  564. .title-fl-sb{
  565. display: flex;
  566. justify-content: space-between;
  567. width: 100%;
  568. }
  569. .value{
  570. margin-top: 10rpx;
  571. // padding-left: 20rpx;
  572. box-sizing: border-box;
  573. }
  574. .tips{
  575. padding: 24rpx;
  576. text-align: center;
  577. font-size: 22rpx;
  578. color: #909399;
  579. width: 100%;
  580. box-sizing: border-box;
  581. }
  582. }
  583. .title{
  584. font-size: 26rpx;
  585. display: flex;
  586. align-items: center;
  587. margin-right: 12rpx;
  588. flex-shrink: 0;
  589. &.select{
  590. width: calc(5em + 20rpx);
  591. }
  592. }
  593. .value{
  594. width: 100%;
  595. &.category{
  596. width: 100%;
  597. display: flex;
  598. justify-content: space-between;
  599. align-items: center;
  600. .categoryName{
  601. font-size: 26rpx;
  602. color: #555;
  603. flex: 1;
  604. }
  605. .newicon-weibiaoti2010104{
  606. color: $uni-primary;
  607. margin-left: 24rpx;
  608. }
  609. }
  610. .imgTips{
  611. color: #909399;
  612. font-size: 22rpx;
  613. margin-top: 10rpx;
  614. }
  615. }
  616. .item-input{
  617. border: 1px solid #DBDBDB;
  618. height: 70rpx;
  619. line-height: 70rpx;
  620. padding: 0 10rpx;
  621. border-radius: 4rpx;
  622. width: 100%;
  623. font-size: 14px;
  624. }
  625. .icon{
  626. position: absolute;
  627. right: 20rpx;
  628. color: #49b856;
  629. }
  630. }
  631. }
  632. }
  633. </style>