incidentDetail.vue 26 KB

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