repairsList.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665
  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 : ''}}{{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, 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. onTabItemTap(e => {
  371. // onLoadFn();
  372. })
  373. onPullDownRefresh(() => {
  374. // getList(0)
  375. })
  376. onReachBottom(() => {
  377. dataInfo.idx += 1;
  378. if (dataInfo.hasMore) {
  379. getList(); // 当触底时加载更多数据
  380. }
  381. })
  382. </script>
  383. <style scoped>
  384. >>> .uni-popup__wrapper{
  385. width: 80%;
  386. padding: 40rpx;
  387. }
  388. </style>
  389. <style lang="scss" scoped>
  390. page{
  391. height: calc(100vh - var(--window-bottom));
  392. }
  393. .incidentList{
  394. display: flex;
  395. flex-direction: column;
  396. justify-content: space-between;
  397. .head{
  398. height: 88rpx;
  399. display: flex;
  400. position: fixed;
  401. z-index: 99;
  402. width: 100%;
  403. background-color: #fff;
  404. font-size: 30rpx;
  405. .tab{
  406. flex: 1;
  407. display: flex;
  408. justify-content: center;
  409. align-items: center;
  410. border-bottom: 4rpx solid transparent;
  411. &.active{
  412. color: $uni-primary;
  413. border-color: $uni-primary;
  414. }
  415. }
  416. .filter{
  417. width: 84rpx;
  418. display: flex;
  419. justify-content: center;
  420. align-items: center;
  421. .newicon-shaixuan{
  422. font-size: 36rpx;
  423. color: #2C2C2C;
  424. }
  425. }
  426. }
  427. .body{
  428. margin-bottom: var(--window-bottom);
  429. margin-top: 88rpx;
  430. border-top: 6rpx solid #EBEBEB;
  431. .body_item{
  432. border-bottom: 8rpx solid #EBEBEB;
  433. position: relative;
  434. .sign-style{
  435. position: absolute;
  436. right: 0;
  437. top: -25rpx;
  438. .img-box{
  439. position: relative;
  440. .img-url1{
  441. width: 70rpx;
  442. height: 70rpx;
  443. background-image: url('../../static/img/jiaobiao1.png');
  444. }
  445. .img-url2{
  446. width: 70rpx;
  447. height: 70rpx;
  448. background-image: url('../../static/img/jiaobiao2.png');
  449. }
  450. .img-name{
  451. position: absolute;
  452. right: 8rpx;
  453. top: 0;
  454. color: #fff;
  455. font-size: 24rpx;
  456. }
  457. }
  458. }
  459. .body_item_head{
  460. word-break: break-all;
  461. text-align: justify;
  462. text-align: left;
  463. margin: 24rpx;
  464. font-size: 30rpx;
  465. }
  466. .body_item_content{
  467. border-top: 1rpx solid #D8D8D8;
  468. padding: 24rpx 24rpx 24rpx 48rpx;
  469. .body_item_content_p{
  470. color: #6A6A6A;
  471. font-size: 26rpx;
  472. display: flex;
  473. justify-content: space-between;
  474. align-items: center;
  475. margin-bottom: 24rpx;
  476. &:last-of-type{
  477. margin-bottom: 0;
  478. }
  479. .name{
  480. flex: 1;
  481. }
  482. .status{
  483. padding: 4rpx 10rpx;
  484. border-radius: 20rpx;
  485. background-color: #DBE8FE;
  486. font-size: 22rpx;
  487. color: #006CF9;
  488. }
  489. .icon_all{
  490. .mic-filled,
  491. .image-filled
  492. {
  493. margin-left: 16rpx;
  494. }
  495. }
  496. }
  497. }
  498. .body_item_foot{
  499. border-top: 1rpx solid #D8D8D8;
  500. font-size: 26rpx;
  501. padding: 24rpx;
  502. .foot_info{
  503. display: flex;
  504. justify-content: space-between;
  505. align-items: center;
  506. .phone-filled{
  507. margin-left: 5rpx;
  508. }
  509. }
  510. }
  511. }
  512. }
  513. .zanwu{
  514. box-sizing: border-box;
  515. margin-bottom: var(--window-bottom);
  516. margin-top: 88rpx;
  517. border-top: 6rpx solid #EBEBEB;
  518. height: calc(100vh - var(--window-bottom) - 88rpx);
  519. display: flex;
  520. justify-content: center;
  521. background-color: #F7F7F7;
  522. .newicon-zanwu{
  523. font-size: 256rpx;
  524. color: #D6D6D6;
  525. margin-top: 140rpx;
  526. }
  527. }
  528. .popup-content{
  529. .form_item{
  530. display: flex;
  531. align-items: center;
  532. padding-top: 24rpx;
  533. min-height: 86rpx;
  534. position: relative;
  535. .chunk{
  536. width: 100%;
  537. height: 70rpx;
  538. line-height: 70rpx;
  539. text-align: center;
  540. background: #F7F8FA;
  541. box-shadow: 0px 3px 6px 1px rgba(0,0,0,0.16);
  542. border-radius: 10rpx;
  543. }
  544. &.column{
  545. height: auto;
  546. flex-direction: column;
  547. align-items: flex-start;
  548. .import-rep{
  549. padding: 5rpx 10rpx;
  550. border-radius: 50rpx;
  551. background: #d1fcd5;
  552. color: #49b856;
  553. font-size: 24rpx;
  554. }
  555. .title{
  556. margin-right: 0;
  557. }
  558. .title-width{
  559. width: 100%;
  560. }
  561. .title-fl-sb{
  562. display: flex;
  563. justify-content: space-between;
  564. width: 100%;
  565. }
  566. .value{
  567. margin-top: 10rpx;
  568. // padding-left: 20rpx;
  569. box-sizing: border-box;
  570. }
  571. .tips{
  572. padding: 24rpx;
  573. text-align: center;
  574. font-size: 22rpx;
  575. color: #909399;
  576. width: 100%;
  577. box-sizing: border-box;
  578. }
  579. }
  580. .title{
  581. font-size: 26rpx;
  582. display: flex;
  583. align-items: center;
  584. margin-right: 12rpx;
  585. flex-shrink: 0;
  586. &.select{
  587. width: calc(5em + 20rpx);
  588. }
  589. }
  590. .value{
  591. width: 100%;
  592. &.category{
  593. width: 100%;
  594. display: flex;
  595. justify-content: space-between;
  596. align-items: center;
  597. .categoryName{
  598. font-size: 26rpx;
  599. color: #555;
  600. flex: 1;
  601. }
  602. .newicon-weibiaoti2010104{
  603. color: $uni-primary;
  604. margin-left: 24rpx;
  605. }
  606. }
  607. .imgTips{
  608. color: #909399;
  609. font-size: 22rpx;
  610. margin-top: 10rpx;
  611. }
  612. }
  613. .item-input{
  614. border: 1px solid #DBDBDB;
  615. height: 70rpx;
  616. line-height: 70rpx;
  617. padding: 0 10rpx;
  618. border-radius: 4rpx;
  619. width: 100%;
  620. font-size: 14px;
  621. }
  622. .icon{
  623. position: absolute;
  624. right: 20rpx;
  625. color: #49b856;
  626. }
  627. }
  628. }
  629. }
  630. </style>