incidentDetail.vue 23 KB

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