incidentDetail.vue 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771
  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. <text class="priority" :style="priorityStyle(dataInfo.incidentData.priority)">{{dataInfo.incidentData.priority ? dataInfo.incidentData.priority.name + ' ' : ''}}</text>
  15. <view class="status" :style="stateStyle(dataInfo.incidentData.state)">{{dataInfo.incidentData.state ? dataInfo.incidentData.state.name : ''}}</view>
  16. </view>
  17. </view>
  18. <view class="detail_item_wrap">
  19. <view class="deital_item">
  20. <text class="name">单号:</text>
  21. <text class="value">{{dataInfo.incidentData.incidentsign || '无'}}</text>
  22. </view>
  23. <view class="deital_item">
  24. <text class="name">报修类型:</text>
  25. <text class="value">{{dataInfo.incidentData.repairIncidentType.name || '无'}}</text>
  26. </view>
  27. <view class="deital_item">
  28. <text class="name">故障现象:</text>
  29. <text class="value">{{dataInfo.incidentData.category ? dataInfo.incidentData.category.mutiCategory : '无'}}</text>
  30. </view>
  31. <view class="deital_item">
  32. <text class="name">故障描述:</text>
  33. <text class="value">{{dataInfo.incidentData.description || '无'}}</text>
  34. </view>
  35. <view class="deital_item">
  36. <text class="name">报修图片:</text>
  37. <view class="value img">
  38. <image class="resourceItem" :src="img.thumbFilePath" mode="aspectFill" v-for="(img, i) in dataInfo.repairImgs" :key="i" @click="previewImg(i, 'repairImgs')"></image>
  39. </view>
  40. </view>
  41. <view class="deital_item">
  42. <text class="name">报修录音:</text>
  43. <view class="value img" v-if="dataInfo.repairAudio.length>0">
  44. <sy-audio class="resourceItem-audio" ref="audio" isCountDown :src="img.thumbFilePath" v-for="(img, i) in dataInfo.repairAudio" :key="i" ></sy-audio>
  45. </view>
  46. </view>
  47. <view class="deital_item">
  48. <text class="name">联系人:</text>
  49. <text class="value">{{dataInfo.incidentData.contacts || '无'}}</text>
  50. <text v-if="dataInfo.incidentData.contactsInformation" @click="makePhoneCall(dataInfo.incidentData.contactsInformation)">{{dataInfo.incidentData.contactsInformation}}<uni-icons type="phone-filled" class="phone-filled" :size="18" :color="primaryColor"></uni-icons></text>
  51. </view>
  52. <view class="deital_item">
  53. <text class="name">来电电话:</text>
  54. <view class="value" @click="makePhoneCall(dataInfo.incidentData.incomingPhone)" v-if="dataInfo.incidentData.incomingPhone">{{dataInfo.incidentData.incomingPhone}}<uni-icons type="phone-filled" class="phone-filled" :size="18" :color="primaryColor"></uni-icons></view>
  55. <text class="value" v-else>无</text>
  56. <uni-icons v-if="dataInfo.incidentData.callID" @click="attachmentClick" type="mic-filled" class="mic-filled" :size="22" :color="primaryColor"></uni-icons>
  57. </view>
  58. <view class="deital_item">
  59. <text class="name">报修科室:</text>
  60. <text class="value">{{dataInfo.incidentData.department ? dataInfo.incidentData.department.dept : '无'}}</text>
  61. </view>
  62. <view class="deital_item">
  63. <text class="name">详细地址:</text>
  64. <text class="value" v-if="dataInfo.incidentData.place || dataInfo.incidentData.houseNumber">{{dataInfo.incidentData.place ? dataInfo.incidentData.place.building.buildingName : ''}}{{dataInfo.incidentData.place ? dataInfo.incidentData.place.floorName : ''}}<text v-if="dataInfo.incidentData.place && dataInfo.incidentData.place.floorName">层</text> {{dataInfo.incidentData.houseNumber}}</text>
  65. <text class="value" v-else>无</text>
  66. </view>
  67. <view class="deital_item">
  68. <text class="name">报修人:</text>
  69. <text class="value">{{dataInfo.incidentData.requester ? dataInfo.incidentData.requester.name : '无'}}</text>
  70. </view>
  71. <view class="deital_item">
  72. <text class="name">报修来源:</text>
  73. <text class="value">{{dataInfo.incidentData.source ? dataInfo.incidentData.source.name : '无'}}</text>
  74. </view>
  75. <view class="deital_item" v-if="dataInfo.incidentData.inspectionTaskNo">
  76. <text class="name">巡检单号:</text>
  77. <text class="value">{{dataInfo.incidentData.inspectionTaskNo}}</text>
  78. </view>
  79. <view class="deital_item">
  80. <text class="name">预约维修时间:</text>
  81. <text class="value">{{dataInfo.incidentData.yyTime || '无'}}</text>
  82. </view>
  83. <view class="deital_item">
  84. <text class="name">受理人:</text>
  85. <text class="value">{{dataInfo.incidentData.acceptUser ? dataInfo.incidentData.acceptUser.name : '无'}}</text>
  86. </view>
  87. <view class="deital_item">
  88. <text class="name">登记时间:</text>
  89. <text class="value">{{formatDate(dataInfo.incidentData.acceptDate, 'yyyy-MM-dd HH:mm')}}</text>
  90. </view>
  91. <view class="deital_item">
  92. <text class="name">逾期解决时间:</text>
  93. <text class="value">{{formatDate(dataInfo.incidentData.overdueTime, 'yyyy-MM-dd HH:mm')}}</text>
  94. </view>
  95. </view>
  96. <view class="detail_head">
  97. <text class="title">处理信息</text>
  98. </view>
  99. <view class="detail_item_wrap">
  100. <view class="deital_item">
  101. <text class="name">处理方式:</text>
  102. <text class="value">{{dataInfo.incidentData.handleCategory ? dataInfo.incidentData.handleCategory.name : '无'}}</text>
  103. <text class="value">处理结果:{{dataInfo.incidentData.closecode ? dataInfo.incidentData.closecode.name : '无'}}</text>
  104. </view>
  105. <view class="deital_item">
  106. <text class="name">处理人:</text>
  107. <text class="value" v-if="dataInfo.incidentData.state.value == 'pending' && dataInfo.incidentData.currentLog">{{dataInfo.incidentData.currentLog.workerName}}<text @click="makePhoneCall(dataInfo.incidentData.currentLog.workerPhone)" v-if="dataInfo.incidentData.currentLog.workerPhone">({{dataInfo.incidentData.currentLog.workerPhone}})<uni-icons type="phone-filled" class="phone-filled" :size="18" :color="primaryColor"></uni-icons></text></text>
  108. <text class="value" v-else-if="dataInfo.incidentData.state.value != 'pending' && dataInfo.incidentData.handlingPersonnelUser">{{dataInfo.incidentData.handlingPersonnelUser.name}}<text @click="makePhoneCall(dataInfo.incidentData.handlingPersonnelUser.phone)" v-if="dataInfo.incidentData.handlingPersonnelUser.phone">({{dataInfo.incidentData.handlingPersonnelUser.phone}})<uni-icons type="phone-filled" class="phone-filled" :size="18" :color="primaryColor"></uni-icons></text></text>
  109. <text class="value" v-else>无</text>
  110. </view>
  111. <view class="deital_item">
  112. <text class="name">处理方案:</text>
  113. <text class="value">{{dataInfo.incidentData.handleDescription || '无'}}</text>
  114. </view>
  115. <view class="deital_item">
  116. <text class="name">处理图片:</text>
  117. <view class="value img">
  118. <image class="imgItem" :src="img.thumbFilePath" mode="aspectFill" v-for="(img, i) in dataInfo.handlerImgs" :key="i" @click="previewImg(i, 'handlerImgs')"></image>
  119. </view>
  120. </view>
  121. <view class="deital_item">
  122. <text class="name">维修总价:</text>
  123. <text class="value">{{dataInfo.incidentData.rsPrice === undefined ? '无' : dataInfo.incidentData.rsPrice + '元'}}</text>
  124. </view>
  125. <view class="deital_item">
  126. <text class="name">协同人:</text>
  127. <text class="value">{{dataInfo.incidentData.synergetic && dataInfo.incidentData.synergetic.length ? dataInfo.incidentData.synergetic.map(v => v.name).join(',') : '无'}}</text>
  128. </view>
  129. <view class="deital_item">
  130. <text class="name">引用知识库:</text>
  131. <text class="value">{{dataInfo.incidentData.solutionNo?dataInfo.incidentData.solutionNo:'未引用'}}</text>
  132. </view>
  133. <view class="deital_item" v-if="dataInfo.incidentData.provideBackupMachine && dataInfo.incidentData.provideBackupMachine==1">
  134. <text class="name">是否归还备用机:</text>
  135. <text class="value">{{dataInfo.incidentData.returnBackupMachine==1?'是':'否'}}</text>
  136. </view>
  137. </view>
  138. </template>
  139. <!-- 维修汇总单 -->
  140. <template v-if="dataInfo.tabActiveValue === '2'">
  141. <view class="detail_head">
  142. <text class="title">耗材清单</text>
  143. </view>
  144. <view class="summaryItem_bodyItem" v-for="item in dataInfo.summaryObj.consumableList" :key="item.id">
  145. <view class="summaryItem_bodyItem_top">
  146. <text class="name ellipsis">{{ item.consumableName }}<template v-if="item.consumableBrandModel">({{ item.consumableBrandModel }})</template></text>
  147. <text class="value">{{ item.consumableEndPrice }}元</text>
  148. </view>
  149. <view class="summaryItem_bodyItem_bottom">
  150. <text class="name">x{{ item.consumablesNum }}{{ item.consumablesUnit }}</text>
  151. <text class="value">总价{{item.consumablesNum * item.consumableEndPrice}}元</text>
  152. </view>
  153. </view>
  154. <view class="summaryItem_bodyItem_total">耗材总价:{{dataInfo.summaryObj.consumablePrice}}元</view>
  155. <view class="detail_head">
  156. <text class="title">工时清单</text>
  157. </view>
  158. <view class="summaryItem_bodyItem" v-for="item in dataInfo.summaryObj.workHourManagementList" :key="item.id">
  159. <view class="summaryItem_bodyItem_top">
  160. <text class="name ellipsis">{{ item.workName }}</text>
  161. <text class="value">{{ item.wage }}元</text>
  162. </view>
  163. <view class="summaryItem_bodyItem_bottom">
  164. <text class="name">x{{ item.workHourNum2 }}{{ item.workUnit }}</text>
  165. <text class="value">总价{{item.workHourNum2 * item.wage}}元</text>
  166. </view>
  167. </view>
  168. <view class="summaryItem_bodyItem_total">工时总价:{{dataInfo.summaryObj.workHourPrice}}元</view>
  169. <view class="summaryItem_total">汇总单总价:{{dataInfo.summaryObj.totalMaintenancePrice}}元</view>
  170. </template>
  171. <!-- 处理流程 -->
  172. <template v-if="dataInfo.tabActiveValue === '3'">
  173. <view class="process_item_wrap">
  174. <view class="process_item" v-for="item in dataInfo.incidentLogList" :key="item.id">
  175. <view class="process_item_top">
  176. <view class="name">{{item.logType ? item.logType.name : ''}}</view>
  177. <view class="value" v-if="item.remark">({{item.remark}})</view>
  178. </view>
  179. <view class="process_item_bottom">
  180. <text class="name">{{formatDate(item.startTime, 'yyyy-MM-dd HH:mm:ss')}}</text>
  181. <text class="value" v-if="item.appointorName">{{item.appointorName}}</text>
  182. </view>
  183. </view>
  184. </view>
  185. </template>
  186. <!-- 评价信息 -->
  187. <template v-if="dataInfo.tabActiveValue === '4'">
  188. <view class="detail_head">
  189. <text class="title">评价信息</text>
  190. </view>
  191. <view class="appraise_detail" v-for="item in dataInfo.resolveLogs" :key="item.id">
  192. <view class="appraise_detail_top">
  193. <text>{{formatDate(item.startTime, 'yyyy-MM-dd HH:mm:ss')}}</text>
  194. <view v-if="dataInfo.incidentData.wxdegree">
  195. <uni-rate readonly :value="dataInfo.incidentData.wxdegree.value" />
  196. </view>
  197. </view>
  198. <view class="appraise_detail_bottom">
  199. <text>{{item.remark}}</text>
  200. </view>
  201. </view>
  202. <view class="detail_head">
  203. <text class="title">回访信息</text>
  204. </view>
  205. <view class="appraise_detail" v-for="item in dataInfo.callbackLogs" :key="item.id">
  206. <view class="appraise_detail_top">
  207. <text>{{formatDate(item.startTime, 'yyyy-MM-dd HH:mm:ss')}}</text>
  208. <text v-if="dataInfo.incidentData.degree">{{dataInfo.incidentData.degree.name}}</text>
  209. </view>
  210. <view class="appraise_detail_bottom">
  211. <text>{{item.remark}}</text>
  212. </view>
  213. </view>
  214. </template>
  215. </scroll-view>
  216. <view class="foot_common_btns">
  217. <button @click="viewIncidentList()" type="default" class="primaryButton btn">返回事件列表</button>
  218. <button v-if="dataInfo.incidentData.inspectionTaskId" @click="viewInspectionDetail(dataInfo.incidentData.inspectionTaskId)" type="default" class="primaryButton btn">查看巡检单</button>
  219. </view>
  220. <uni-popup ref="popup" background-color="#fff" type="center" :before-close="true">
  221. <view class="popup-content">
  222. <video :src="videoUrl" controls></video>
  223. </view>
  224. <view class="foot_common_btns">
  225. <button @click="closePop" type="default" class="primaryButton btn">关闭</button>
  226. </view>
  227. </uni-popup>
  228. <IncidentAttachment v-if="dataInfo.isAttachment" @knowEmit="knowAttachment" :incidentData="dataInfo.incidentData"></IncidentAttachment>
  229. </view>
  230. </template>
  231. <script setup>
  232. import { ref, reactive } from 'vue'
  233. import IncidentAttachment from '@/components/IncidentAttachment.vue';
  234. import { onLoad } from '@dcloudio/uni-app'
  235. import { api_listAttachment, getFetchDataList, api_incidentDetail, api_querySummaryDoc, api_incidentLog } from "@/http/api.js"
  236. import { defaultColor } from '@/static/js/theme.js'
  237. import { useSetTitle } from '@/share/useSetTitle.js'
  238. import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
  239. import { useLoginUserStore } from '@/stores/loginUser'
  240. import { computedPriorityStyle } from '@/filters/computedPriorityStyle.js'
  241. import { computedStateStyle } from '@/filters/computedStateStyle.js'
  242. import { filterFormatDate } from '@/filters/filterFormatDate.js'
  243. useSetTitle();
  244. const loginUserStore = useLoginUserStore();
  245. const { makePhoneCall } = useMakePhoneCall();
  246. const { priorityStyle } = computedPriorityStyle();
  247. const { stateStyle } = computedStateStyle();
  248. const { formatDate } = filterFormatDate();
  249. // 主题颜色
  250. const primaryColor = ref(defaultColor)
  251. const videoUrl = ref(null)
  252. const popup = ref(null)
  253. // 数据
  254. const dataInfo = reactive({
  255. tabs: [
  256. {id: 1, name: '工单信息', value: '1', num: ''},
  257. // {id: 2, name: '维修汇总单', value: '2', num: ''},
  258. {id: 3, name: '处理流程', value: '3', num: ''},
  259. {id: 4, name: '评价信息', value: '4', num: ''},
  260. ],
  261. tabActiveValue: 0,//当前选择的tab
  262. incidentId: undefined,//事件ID
  263. incidentData: {},//事件对象
  264. repairImgs: [],//报修图片
  265. repairVideo:[], //视频
  266. repairAudio:[], //录音
  267. handlerImgs: [],//处理图片
  268. summaryObj: {
  269. consumableList: [],//耗材列表
  270. workHourManagementList: [],//工时列表
  271. },//汇总单信息
  272. incidentLogList: [],//流程列表
  273. resolveLogs: [],//评价
  274. callbackLogs: [],//回访
  275. isAttachment: false,//录音开关
  276. summaryData:null
  277. })
  278. // 点击录音
  279. function attachmentClick(){
  280. dataInfo.isAttachment = true;
  281. }
  282. // 知道了录音
  283. function knowAttachment(){
  284. dataInfo.isAttachment = false;
  285. }
  286. // 获取汇总单信息
  287. function getSummaryList(){
  288. uni.showLoading({
  289. title: "加载中",
  290. mask: true,
  291. });
  292. let postData = {
  293. "incidentId": dataInfo.incidentId,
  294. };
  295. api_querySummaryDoc(postData).then(res => {
  296. uni.hideLoading();
  297. if(res.status == 200){
  298. dataInfo.summaryObj = {...{consumableList:[], workHourManagementList: []}, ...res };
  299. }else{
  300. uni.showToast({
  301. icon: 'none',
  302. title: res.msg || '请求数据失败!'
  303. });
  304. }
  305. })
  306. }
  307. // 获取流程列表
  308. function getIncidentLogList(){
  309. uni.showLoading({
  310. title: "加载中",
  311. mask: true,
  312. });
  313. let postData = {
  314. "idx": 0,
  315. "sum": 9999,
  316. "incidentLog": {
  317. "incidentId": dataInfo.incidentId,
  318. }
  319. };
  320. api_incidentLog(postData).then(res => {
  321. uni.hideLoading();
  322. if(res.status == 200){
  323. let incidentLogList = res.list || [];
  324. dataInfo.incidentLogList = incidentLogList;
  325. }else{
  326. uni.showToast({
  327. icon: 'none',
  328. title: res.msg || '请求数据失败!'
  329. });
  330. }
  331. })
  332. }
  333. // 预览图片
  334. function previewImg(index, type){
  335. uni.previewImage({
  336. current: index,
  337. urls: dataInfo[type].map(v => v.previewUrl),
  338. longPressActions: {
  339. itemList: ['发送给朋友', '保存图片', '收藏'],
  340. success: function(data) {
  341. console.log('选中了第' + (data.tapIndex + 1) + '个按钮,第' + (data.index + 1) + '张图片');
  342. },
  343. fail: function(err) {
  344. console.log(err.errMsg);
  345. }
  346. }
  347. });
  348. }
  349. // 初始化表单
  350. function initForm(){
  351. if(dataInfo.tabActiveValue === '1'){
  352. getRepairImgs();
  353. getHandlerImgs();
  354. }else if(dataInfo.tabActiveValue === '2'){
  355. getSummaryList();
  356. }else if(dataInfo.tabActiveValue === '3'){
  357. getIncidentLogList();
  358. }else if(dataInfo.tabActiveValue === '4'){
  359. }
  360. }
  361. // 点击tab
  362. function clickTab(tabValue){
  363. if(dataInfo.tabActiveValue == tabValue){
  364. return;
  365. }
  366. dataInfo.tabActiveValue = tabValue;
  367. initForm()
  368. }
  369. // 获取事件详情
  370. function getIncidentDetail(){
  371. uni.showLoading({
  372. title: "加载中",
  373. mask: true,
  374. });
  375. api_incidentDetail(dataInfo.incidentId).then(res => {
  376. uni.hideLoading();
  377. if(res.status == 200){
  378. dataInfo.incidentData = res.data || {};
  379. let logs = dataInfo.incidentData.logs || [];
  380. dataInfo.resolveLogs = logs.filter(v => v.logType.value == 'resolve').slice(0, 1);
  381. dataInfo.callbackLogs = logs.filter(v => v.logType.value == 'callback').slice(0, 1);
  382. // 维修汇总单
  383. if(dataInfo.incidentData.state.value == 'close' && dataInfo.summaryData.value == 1 && dataInfo.incidentData.summaryId){
  384. let flag = dataInfo.tabs.some(v => v.value === '2');
  385. !flag && dataInfo.tabs.splice(1, 0, {id: 2, name: '维修汇总单', value: '2', num: ''});
  386. }
  387. dataInfo.tabActiveValue = dataInfo.tabs[0].value;
  388. initForm()
  389. }else{
  390. uni.showToast({
  391. icon: 'none',
  392. title: res.msg || '请求数据失败!'
  393. });
  394. }
  395. })
  396. }
  397. function videoView(item){
  398. videoUrl.value = item.thumbFilePath
  399. setTimeout(_=>{
  400. popup.value.open()
  401. },100)
  402. }
  403. function closePop(){
  404. popup.value.close()
  405. }
  406. // 获取报修图片
  407. function getRepairImgs(){
  408. uni.showLoading({
  409. title: "加载中",
  410. mask: true,
  411. });
  412. api_listAttachment('wechatRequesterIncident', dataInfo.incidentId).then(res => {
  413. // uni.hideLoading();
  414. res.data = res.data || [];
  415. res.data.forEach(v => {
  416. v.previewUrl = location.origin + "/file" + v.relativeFilePath;
  417. v.thumbFilePath = location.origin + "/file" + v.thumbFilePath;
  418. })
  419. dataInfo.repairImgs = res.data;
  420. })
  421. api_listAttachment('wechatIncidentVideo', dataInfo.incidentId).then(res => {
  422. res.data = res.data || [];
  423. res.data.forEach(v => {
  424. v.thumbFilePath = location.origin + "/file" + v.relativeFilePath;
  425. })
  426. dataInfo.repairVideo = res.data
  427. })
  428. api_listAttachment('wechatIncidentRecord', dataInfo.incidentId).then(res => {
  429. uni.hideLoading();
  430. res.data = res.data || [];
  431. res.data.forEach(v => {
  432. v.thumbFilePath = location.origin + "/file" + v.relativeFilePath;
  433. })
  434. dataInfo.repairAudio = res.data
  435. })
  436. }
  437. // 获取处理图片
  438. function getHandlerImgs(){
  439. uni.showLoading({
  440. title: "加载中",
  441. mask: true,
  442. });
  443. api_listAttachment('incident', dataInfo.incidentId).then(res => {
  444. uni.hideLoading();
  445. res.data = res.data || [];
  446. res.data.forEach(v => {
  447. v.previewUrl = location.origin + "/file" + v.relativeFilePath;
  448. v.thumbFilePath = location.origin + "/file" + v.thumbFilePath;
  449. })
  450. dataInfo.handlerImgs = res.data;
  451. })
  452. }
  453. // 返回事件列表
  454. function viewIncidentList(){
  455. uni.reLaunch({
  456. url: `/pages/incidentList/incidentList`
  457. })
  458. }
  459. // 查看巡检单
  460. function viewInspectionDetail(inspectionTaskId){
  461. uni.navigateTo({
  462. url: `/pages/inspection/inspectionDetail/inspectionDetail?inspectionTaskId=${inspectionTaskId}`
  463. })
  464. }
  465. onLoad((option) => {
  466. dataInfo.incidentId = option.incidentId;
  467. // 获取是否开启汇总单、简易处理
  468. let postData = {
  469. idx: 0,
  470. sum: 9999,
  471. hospitalConfig:{
  472. hosId: loginUserStore.loginUser.user.currentHospital.id,
  473. model: "itsm"
  474. }
  475. };
  476. getFetchDataList("simple/data", "hospitalConfig", postData)
  477. .then((res) => {
  478. dataInfo.summaryData = res.list.find(i=>i.key=='itsmSummarySheet')
  479. getIncidentDetail();
  480. });
  481. })
  482. </script>
  483. <style lang="scss" scoped>
  484. .popup-content{
  485. padding: 40rpx;
  486. }
  487. .incidentDetail{
  488. height: 100%;
  489. display: flex;
  490. flex-direction: column;
  491. justify-content: space-between;
  492. .head{
  493. height: 88rpx;
  494. display: flex;
  495. position: fixed;
  496. z-index: 99;
  497. width: 100%;
  498. background-color: #fff;
  499. font-size: 30rpx;
  500. .tab{
  501. flex: 1;
  502. display: flex;
  503. justify-content: center;
  504. align-items: center;
  505. border-bottom: 4rpx solid transparent;
  506. position: relative;
  507. &:last-of-type{
  508. &:after{
  509. display: none;
  510. }
  511. }
  512. &:after{
  513. content: '';
  514. position: absolute;
  515. right: 0;
  516. top: 50%;
  517. transform: translateY(-50%);
  518. width: 1rpx;
  519. height: 44rpx;
  520. background-color: #515151;
  521. }
  522. &.active{
  523. color: $uni-primary;
  524. border-color: $uni-primary;
  525. }
  526. }
  527. }
  528. .body{
  529. margin-top: 88rpx;
  530. box-sizing: border-box;
  531. flex: 1;
  532. min-height: 0;
  533. border-top: 7rpx solid #EBEBEB;
  534. .phone-filled{
  535. margin-left: 5rpx;
  536. }
  537. .mic-filled{
  538. margin-right: 100rpx;
  539. }
  540. .detail_item_wrap{
  541. padding-bottom: 24rpx;
  542. }
  543. .detail_head{
  544. padding: 24rpx;
  545. border-top: 1rpx solid #D2D2D2;
  546. border-bottom: 1rpx solid #D2D2D2;
  547. display: flex;
  548. justify-content: space-between;
  549. align-items: center;
  550. &:first-of-type{
  551. border-top: none;
  552. }
  553. .title{
  554. font-size: 26rpx;
  555. color: $uni-primary;
  556. padding-left: 18rpx;
  557. position: relative;
  558. &:before{
  559. content: '';
  560. width: 8rpx;
  561. height: 25rpx;
  562. background-color: $uni-primary;
  563. position: absolute;
  564. left: 0;
  565. top: 50%;
  566. transform: translateY(-50%);
  567. }
  568. }
  569. .other{
  570. display: flex;
  571. align-items: center;
  572. .priority{
  573. font-size: 26rpx;
  574. margin-right: 15rpx;
  575. }
  576. .status{
  577. padding: 4rpx 10rpx;
  578. border-radius: 20rpx;
  579. background-color: #DBE8FE;
  580. font-size: 22rpx;
  581. color: #006CF9;
  582. }
  583. }
  584. }
  585. .deital_item{
  586. font-size: 26rpx;
  587. color: #555;
  588. padding: 24rpx 24rpx 0;
  589. display: flex;
  590. align-items: center;
  591. .name{
  592. width: 8em;
  593. margin-right: 24rpx;
  594. }
  595. .value{
  596. flex: 1;
  597. word-break: break-all;
  598. &.img{
  599. display: flex;
  600. .imgItem{
  601. width: 82rpx;
  602. height: 82rpx;
  603. margin-right: 24rpx;
  604. &:last-of-type{
  605. margin-right: 0;
  606. }
  607. }
  608. .resourceItem{
  609. width: 150rpx;
  610. height: 150rpx;
  611. margin-right: 24rpx;
  612. &:last-of-type{
  613. margin-right: 0;
  614. }
  615. }
  616. .resourceItem-audio{
  617. width: 300rpx;
  618. height: 60rpx;
  619. }
  620. }
  621. }
  622. }
  623. .summaryItem_bodyItem{
  624. padding: 24rpx 24rpx 0;
  625. font-size: 26rpx;
  626. .summaryItem_bodyItem_top{
  627. display: flex;
  628. justify-content: space-between;
  629. align-items: center;
  630. .value{
  631. padding-left: 48rpx;
  632. flex-shrink: 0;
  633. }
  634. }
  635. .summaryItem_bodyItem_bottom{
  636. margin-top: 24rpx;
  637. display: flex;
  638. justify-content: space-between;
  639. align-items: center;
  640. .name{
  641. text-align: right;
  642. flex: 1;
  643. }
  644. .value{
  645. width: 220rpx;
  646. text-align: right;
  647. flex-shrink: 0;
  648. }
  649. }
  650. }
  651. .summaryItem_bodyItem_total{
  652. text-align: right;
  653. padding: 24rpx;
  654. font-size: 26rpx;
  655. }
  656. .summaryItem_total{
  657. text-align: center;
  658. padding-top: 24rpx;
  659. font-size: 32rpx;
  660. font-weight: bold;
  661. color: $uni-primary;
  662. border-top: 1rpx solid #D2D2D2;
  663. }
  664. .process_item_wrap{
  665. padding: 38rpx;
  666. .process_item{
  667. &:last-of-type{
  668. .process_item_bottom{
  669. border-left: none;
  670. }
  671. }
  672. .process_item_top{
  673. padding-left: 30rpx;
  674. display: flex;
  675. align-items: center;
  676. position: relative;
  677. &:before{
  678. content: '';
  679. position: absolute;
  680. left: -13rpx;
  681. top: 50%;
  682. width: 26rpx;
  683. height: 26rpx;
  684. border-radius: 50%;
  685. background-color: $uni-primary;
  686. transform: translateY(-50%);
  687. }
  688. .name{
  689. font-size: 30rpx;
  690. }
  691. .value{
  692. margin-left: 20rpx;
  693. font-size: 22rpx;
  694. color: #A1A1A1;
  695. flex: 1;
  696. }
  697. }
  698. .process_item_bottom{
  699. min-height: 82rpx;
  700. border-left: 1rpx solid #B7BDC6;
  701. margin-top: 5rpx;
  702. padding-left: 30rpx;
  703. display: flex;
  704. font-size: 24rpx;
  705. color: #A1A1A1;
  706. .value{
  707. margin-left: 20rpx;
  708. }
  709. }
  710. }
  711. }
  712. .appraise_detail{
  713. padding: 24rpx 24rpx 24rpx 40rpx;
  714. .appraise_detail_top{
  715. display: flex;
  716. align-items: center;
  717. justify-content: space-between;
  718. font-size: 26rpx;
  719. .name{
  720. color: #A1A1A1;
  721. }
  722. .value{}
  723. }
  724. .appraise_detail_bottom{
  725. font-size: 30rpx;
  726. margin-top: 24rpx;
  727. word-break: break-all;
  728. }
  729. }
  730. }
  731. }
  732. </style>