incidentDetail.vue 26 KB

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