inspectionDetail.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581
  1. <template>
  2. <view class="incidentDetail">
  3. <view class="head">
  4. <view class="tab" :class="{active: tab.value === dataInfo.tabActiveValue}" v-for="tab in dataInfo.tabs" :key="tab.id" @click="clickTab(tab.value)">
  5. {{tab.name}}<text v-if="tab.num !== ''">({{tab.num}})</text>
  6. </view>
  7. </view>
  8. <scroll-view scroll-y class="body">
  9. <!-- 基础信息 -->
  10. <template v-if="dataInfo.tabActiveValue === '1'">
  11. <view class="detail_head">
  12. <text class="title">计划批次信息</text>
  13. <view class="other">
  14. <view class="status" :style="{ color: dataInfo.inspectionTaskData.status == 1 ? 'red' : '' }">{{dataInfo.inspectionTaskData.status ? dataInfo.inspectionTaskData.status.name : ''}}</view>
  15. </view>
  16. </view>
  17. <view class="detail_item_wrap">
  18. <view class="deital_item">
  19. <text class="name">单号:</text>
  20. <text class="value">{{dataInfo.inspectionTaskData.code}}</text>
  21. </view>
  22. <view class="deital_item">
  23. <text class="name">计划主题:</text>
  24. <text class="value">{{dataInfo.inspectionTaskData.inspectionDTO?.name}}</text>
  25. </view>
  26. <view class="deital_item">
  27. <text class="name">巡检点:</text>
  28. <text class="value">{{dataInfo.inspectionTaskData.inspectionNodeDTO?.name }}</text>
  29. </view>
  30. <view class="deital_item">
  31. <text class="name">巡检单:</text>
  32. <text class="value">{{dataInfo.inspectionTaskData.inspectionDTO?.inspectionFormDTO?.name}}</text>
  33. </view>
  34. <view class="deital_item">
  35. <text class="name">签到方式:</text>
  36. <text class="value">{{dataInfo.inspectionTaskData.signType?.name}}</text>
  37. </view>
  38. </view>
  39. <view class="detail_head">
  40. <text class="title">执行信息</text>
  41. <view class="other">
  42. <view class="status" :style="{ color: dataInfo.inspectionTaskData.exception === 1 ? 'red' : '#49B856' }">{{dataInfo.inspectionTaskData.exception === 1 ? '异常' : '正常'}}</view>
  43. </view>
  44. </view>
  45. <view class="detail_item_wrap">
  46. <view class="deital_item">
  47. <text class="name">创建时间:</text>
  48. <text class="value">{{formatDate(dataInfo.inspectionTaskData.addTime, 'yyyy-MM-dd HH:mm')}}</text>
  49. </view>
  50. <view class="deital_item">
  51. <text class="name">截止时间:</text>
  52. <text class="value">{{formatDate(dataInfo.inspectionTaskData.overtime, 'yyyy-MM-dd HH:mm')}}</text>
  53. </view>
  54. <view class="deital_item">
  55. <text class="name">完成时间:</text>
  56. <text class="value">{{formatDate(dataInfo.inspectionTaskData.completeTime, 'yyyy-MM-dd HH:mm')}}</text>
  57. <text class="value text_right">执行人:{{ dataInfo.inspectionTaskData.userDTO?.name || dataInfo.inspectionTaskData.groupDTO?.groupName }}</text>
  58. </view>
  59. <template v-if="dataInfo.inspectionTaskData.incidentDTO">
  60. <view class="deital_item">
  61. <text class="name">故障单号:</text>
  62. <text class="value">{{dataInfo.inspectionTaskData.incidentDTO?.incidentsign}}</text>
  63. <text class="value text_right">{{dataInfo.inspectionTaskData.incidentDTO?.state?.name}}</text>
  64. </view>
  65. <view class="deital_item">
  66. <text class="name">处理人/组:</text>
  67. <text class="value">{{dataInfo.inspectionTaskData.incidentDTO?.groupORHandlerUser}}</text>
  68. </view>
  69. </template>
  70. </view>
  71. </template>
  72. <!-- 巡检信息 -->
  73. <template v-if="dataInfo.tabActiveValue === '2'">
  74. <view class="info">
  75. <view v-for="item in dataInfo.valueList" :key="item.id">
  76. <view v-for="(value, i) in item" :key="i" class="infoItem">
  77. <text class="name">{{value.name}}</text>
  78. <template v-if="value.inspectionFormItemDTO">
  79. <text v-if="value.inspectionFormItemDTO.type.value != 7" class="value" :class="{ red: value.exception === 1 }">{{getValuex(value)}}</text>
  80. <view class="deital_item" v-if="value.inspectionFormItemDTO.type.value == 7">
  81. <view class="value img">
  82. <image class="resourceItem" :src="img.thumbFilePath" mode="aspectFill" v-for="(img, i) in value.valuex" :key="i" @click="previewImg(i, 'inspectionTaskImgs', value.valuex)"></image>
  83. </view>
  84. </view>
  85. </template>
  86. </view>
  87. </view>
  88. </view>
  89. </template>
  90. <!-- 流程图 -->
  91. <template v-if="dataInfo.tabActiveValue === '3'">
  92. <view class="process_item_wrap">
  93. <view class="process_item" v-for="item in dataInfo.logList" :key="item.id">
  94. <view class="process_item_top">
  95. <view class="name">{{item.operationType?.name }}</view>
  96. <view class="value" v-if="item.remarks">({{item.remarks}})</view>
  97. </view>
  98. <view class="process_item_bottom">
  99. <text class="name">{{formatDate(item.operationTime, 'yyyy-MM-dd HH:mm:ss')}}</text>
  100. <text class="value" v-if="item.username">{{item.username}}</text>
  101. </view>
  102. </view>
  103. </view>
  104. </template>
  105. </scroll-view>
  106. <view class="foot_common_btns">
  107. <button @click="viewInspectionExecute()" type="default" class="primaryButton btn">返回巡检列表</button>
  108. <button v-if="dataInfo.inspectionTaskData.incidentId" @click="viewIncidentDetail(dataInfo.inspectionTaskData.incidentId)" type="default" class="primaryButton btn">查看故障单</button>
  109. </view>
  110. </view>
  111. </template>
  112. <script setup>
  113. import chunk from 'lodash-es/chunk'
  114. import { ref, reactive } from 'vue'
  115. import { onLoad } from '@dcloudio/uni-app'
  116. import { api_listAttachment, api_inspectionTaskDetail, api_inspectionFormValues } from "@/http/api.js"
  117. import { defaultColor } from '@/static/js/theme.js'
  118. import { useSetTitle } from '@/share/useSetTitle.js'
  119. import { filterFormatDate } from '@/filters/filterFormatDate.js'
  120. useSetTitle();
  121. const { formatDate } = filterFormatDate();
  122. // 主题颜色
  123. const primaryColor = ref(defaultColor)
  124. // 数据
  125. const dataInfo = reactive({
  126. tabs: [
  127. {id: 1, name: '基础信息', value: '1', num: ''},
  128. // {id: 2, name: '巡检信息', value: '2', num: ''},
  129. {id: 3, name: '流程图', value: '3', num: ''},
  130. ],
  131. tabActiveValue: 0,//当前选择的tab
  132. inspectionTaskId: undefined,//巡检执行ID
  133. inspectionTaskData: {},//巡检执行对象
  134. inspectionTaskImgs: [],//巡检图片
  135. valueList: [],//巡检信息
  136. logList: [],//流程图
  137. })
  138. function getValuex(value){
  139. return value.formItemConfigList ? value.formItemConfigList.map(v => v.valuex).toString() : value.valuex;
  140. }
  141. // 获取巡检信息
  142. function getValue(){
  143. uni.showLoading({
  144. title: "加载中",
  145. mask: true,
  146. });
  147. let postData = {
  148. "idx": 0,
  149. "sum": 9999,
  150. "inspectionFormValues": {
  151. taskId: dataInfo.inspectionTaskId,
  152. }
  153. };
  154. api_inspectionFormValues(postData).then(res => {
  155. uni.hideLoading();
  156. if(res.status == 200){
  157. let valueList = res.list || [];
  158. let imgFlag = valueList.some(v => v.inspectionFormItemDTO.type.value == 7);
  159. if(imgFlag){
  160. valueList.forEach(v => {
  161. if(v.inspectionFormItemDTO.type.value == 7){
  162. v.valuex = [];
  163. }
  164. })
  165. }
  166. dataInfo.valueList = chunk(valueList, 3);
  167. if(imgFlag){
  168. getInspectionImgs();
  169. }
  170. }else{
  171. uni.showToast({
  172. icon: 'none',
  173. title: res.msg || '请求数据失败!'
  174. });
  175. }
  176. })
  177. }
  178. // 预览图片
  179. function previewImg(index, type, imgList){
  180. uni.previewImage({
  181. current: index,
  182. urls: imgList.map(v => v.previewUrl),
  183. longPressActions: {
  184. itemList: ['发送给朋友', '保存图片', '收藏'],
  185. success: function(data) {
  186. console.log('选中了第' + (data.tapIndex + 1) + '个按钮,第' + (data.index + 1) + '张图片');
  187. },
  188. fail: function(err) {
  189. console.log(err.errMsg);
  190. }
  191. }
  192. });
  193. }
  194. // 初始化表单
  195. function initForm(){
  196. if(dataInfo.tabActiveValue === '1'){
  197. }else if(dataInfo.tabActiveValue === '2'){
  198. getValue();
  199. }else if(dataInfo.tabActiveValue === '3'){
  200. }
  201. }
  202. // 点击tab
  203. function clickTab(tabValue){
  204. if(dataInfo.tabActiveValue == tabValue){
  205. return;
  206. }
  207. dataInfo.tabActiveValue = tabValue;
  208. initForm()
  209. }
  210. // 获取巡检执行详情
  211. function getInspectionTaskDetail(){
  212. uni.showLoading({
  213. title: "加载中",
  214. mask: true,
  215. });
  216. api_inspectionTaskDetail(dataInfo.inspectionTaskId).then(res => {
  217. uni.hideLoading();
  218. if(res.status == 200){
  219. dataInfo.inspectionTaskData = res.data || {};
  220. dataInfo.logList = dataInfo.inspectionTaskData.logList || [];
  221. // 巡检信息
  222. if(dataInfo.inspectionTaskData.status.value === '2'){
  223. let flag = dataInfo.tabs.some(v => v.value === '2');
  224. !flag && dataInfo.tabs.splice(1, 0, {id: 2, name: '巡检信息', value: '2', num: ''});
  225. }
  226. dataInfo.tabActiveValue = dataInfo.tabs[0].value;
  227. initForm()
  228. }else{
  229. uni.showToast({
  230. icon: 'none',
  231. title: res.msg || '请求数据失败!'
  232. });
  233. }
  234. })
  235. }
  236. // 获取巡检图片
  237. function getInspectionImgs(){
  238. uni.showLoading({
  239. title: "加载中",
  240. mask: true,
  241. });
  242. api_listAttachment('inspection', dataInfo.inspectionTaskId).then(res => {
  243. uni.hideLoading();
  244. res.data = res.data || [];
  245. res.data.forEach(v => {
  246. v.previewUrl = location.origin + "/file" + v.relativeFilePath;
  247. v.thumbFilePath = location.origin + "/file" + v.thumbFilePath;
  248. })
  249. let imgList = res.data || [];
  250. dataInfo.valueList.forEach(v => {
  251. v.forEach(vv => {
  252. imgList.forEach(item => {
  253. if(vv.itemId == item.recordId){
  254. if(vv.valuex && vv.valuex.length){
  255. vv.valuex.push(item)
  256. }else{
  257. vv.valuex = [item];
  258. }
  259. }
  260. })
  261. })
  262. })
  263. })
  264. }
  265. // 返回巡检列表
  266. function viewInspectionExecute(){
  267. uni.reLaunch({
  268. url: `/pages/inspection/inspectionExecute/inspectionExecute`
  269. })
  270. }
  271. // 查看故障单
  272. function viewIncidentDetail(incidentId){
  273. uni.navigateTo({
  274. url: `/pages/incidentDetail/incidentDetail?incidentId=${incidentId}`
  275. })
  276. }
  277. onLoad((option) => {
  278. dataInfo.inspectionTaskId = option.inspectionTaskId;
  279. getInspectionTaskDetail();
  280. })
  281. </script>
  282. <style lang="scss" scoped>
  283. .popup-content{
  284. padding: 40rpx;
  285. }
  286. .incidentDetail{
  287. height: 100%;
  288. display: flex;
  289. flex-direction: column;
  290. justify-content: space-between;
  291. .head{
  292. height: 88rpx;
  293. display: flex;
  294. position: fixed;
  295. z-index: 99;
  296. width: 100%;
  297. background-color: #fff;
  298. font-size: 30rpx;
  299. .tab{
  300. flex: 1;
  301. display: flex;
  302. justify-content: center;
  303. align-items: center;
  304. border-bottom: 4rpx solid transparent;
  305. position: relative;
  306. &:last-of-type{
  307. &:after{
  308. display: none;
  309. }
  310. }
  311. &:after{
  312. content: '';
  313. position: absolute;
  314. right: 0;
  315. top: 50%;
  316. transform: translateY(-50%);
  317. width: 1rpx;
  318. height: 44rpx;
  319. background-color: #515151;
  320. }
  321. &.active{
  322. color: $uni-primary;
  323. border-color: $uni-primary;
  324. }
  325. }
  326. }
  327. .body{
  328. margin-top: 88rpx;
  329. box-sizing: border-box;
  330. flex: 1;
  331. min-height: 0;
  332. border-top: 7rpx solid #EBEBEB;
  333. .phone-filled{
  334. margin-left: 5rpx;
  335. }
  336. .mic-filled{
  337. margin-right: 100rpx;
  338. }
  339. .detail_item_wrap{
  340. padding-bottom: 24rpx;
  341. }
  342. .detail_head{
  343. padding: 24rpx;
  344. border-top: 1rpx solid #D2D2D2;
  345. border-bottom: 1rpx solid #D2D2D2;
  346. display: flex;
  347. justify-content: space-between;
  348. align-items: center;
  349. &:first-of-type{
  350. border-top: none;
  351. }
  352. .title{
  353. font-size: 26rpx;
  354. color: $uni-primary;
  355. padding-left: 18rpx;
  356. position: relative;
  357. &:before{
  358. content: '';
  359. width: 8rpx;
  360. height: 25rpx;
  361. background-color: $uni-primary;
  362. position: absolute;
  363. left: 0;
  364. top: 50%;
  365. transform: translateY(-50%);
  366. }
  367. }
  368. .other{
  369. display: flex;
  370. align-items: center;
  371. .priority{
  372. font-size: 26rpx;
  373. margin-right: 15rpx;
  374. }
  375. .status{
  376. font-size: 26rpx;
  377. }
  378. }
  379. }
  380. .deital_item{
  381. font-size: 26rpx;
  382. color: #555;
  383. padding: 24rpx 24rpx 0;
  384. display: flex;
  385. align-items: center;
  386. .name{
  387. width: 8em;
  388. margin-right: 24rpx;
  389. }
  390. .value{
  391. flex: 1;
  392. word-break: break-all;
  393. &.img{
  394. display: flex;
  395. .imgItem{
  396. width: 82rpx;
  397. height: 82rpx;
  398. margin-right: 24rpx;
  399. &:last-of-type{
  400. margin-right: 0;
  401. }
  402. }
  403. .resourceItem{
  404. width: 100rpx;
  405. height: 100rpx;
  406. margin-right: 24rpx;
  407. &:last-of-type{
  408. margin-right: 0;
  409. }
  410. }
  411. .resourceItem-audio{
  412. width: 300rpx;
  413. height: 60rpx;
  414. }
  415. }
  416. }
  417. }
  418. .summaryItem_bodyItem{
  419. padding: 24rpx 24rpx 0;
  420. font-size: 26rpx;
  421. .summaryItem_bodyItem_top{
  422. display: flex;
  423. justify-content: space-between;
  424. align-items: center;
  425. .value{
  426. padding-left: 48rpx;
  427. flex-shrink: 0;
  428. }
  429. }
  430. .summaryItem_bodyItem_bottom{
  431. margin-top: 24rpx;
  432. display: flex;
  433. justify-content: space-between;
  434. align-items: center;
  435. .name{
  436. text-align: right;
  437. flex: 1;
  438. }
  439. .value{
  440. width: 220rpx;
  441. text-align: right;
  442. flex-shrink: 0;
  443. }
  444. }
  445. }
  446. .summaryItem_bodyItem_total{
  447. text-align: right;
  448. padding: 24rpx;
  449. font-size: 26rpx;
  450. }
  451. .summaryItem_total{
  452. text-align: center;
  453. padding-top: 24rpx;
  454. font-size: 32rpx;
  455. font-weight: bold;
  456. color: $uni-primary;
  457. border-top: 1rpx solid #D2D2D2;
  458. }
  459. .info{
  460. padding: 0 24rpx 32rpx;
  461. .infoItem{
  462. display: flex;
  463. align-items: center;
  464. justify-content: space-between;
  465. margin-top: 32rpx;
  466. .name{
  467. word-break: break-all;
  468. width: 33.33%;
  469. flex-shrink: 0;
  470. }
  471. .value{
  472. word-break: break-all;
  473. margin-left: 24rpx;
  474. }
  475. }
  476. }
  477. .process_item_wrap{
  478. padding: 38rpx;
  479. .process_item{
  480. &:last-of-type{
  481. .process_item_bottom{
  482. border-left: none;
  483. }
  484. }
  485. .process_item_top{
  486. padding-left: 30rpx;
  487. display: flex;
  488. align-items: center;
  489. position: relative;
  490. &:before{
  491. content: '';
  492. position: absolute;
  493. left: -13rpx;
  494. top: 50%;
  495. width: 26rpx;
  496. height: 26rpx;
  497. border-radius: 50%;
  498. background-color: $uni-primary;
  499. transform: translateY(-50%);
  500. }
  501. .name{
  502. font-size: 30rpx;
  503. }
  504. .value{
  505. margin-left: 20rpx;
  506. font-size: 22rpx;
  507. color: #A1A1A1;
  508. flex: 1;
  509. }
  510. }
  511. .process_item_bottom{
  512. min-height: 82rpx;
  513. border-left: 1rpx solid #B7BDC6;
  514. margin-top: 5rpx;
  515. padding-left: 30rpx;
  516. display: flex;
  517. font-size: 24rpx;
  518. color: #A1A1A1;
  519. .value{
  520. margin-left: 20rpx;
  521. }
  522. }
  523. }
  524. }
  525. .appraise_detail{
  526. padding: 24rpx 24rpx 24rpx 40rpx;
  527. .appraise_detail_top{
  528. display: flex;
  529. align-items: center;
  530. justify-content: space-between;
  531. font-size: 26rpx;
  532. .name{
  533. color: #A1A1A1;
  534. }
  535. .value{}
  536. }
  537. .appraise_detail_bottom{
  538. font-size: 30rpx;
  539. margin-top: 24rpx;
  540. word-break: break-all;
  541. }
  542. }
  543. }
  544. }
  545. </style>