subOrders.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795
  1. <template>
  2. <view @click.native="init" class="page">
  3. <view class="car-header dis a-c">
  4. <image src="/static/image/car-insure/Group.png" mode="" style="width: 40px;height: 40px;"></image>
  5. <view class="dis f-c head-name">
  6. <text>{{licenseno}}</text>
  7. <view class="name1">
  8. <text style="margin-right: 10px;">{{insuredname}}</text>
  9. <text>{{modelcname}}</text>
  10. </view>
  11. </view>
  12. </view>
  13. <view class="pdd mt-3">
  14. <view class="sub-orders " v-for="(item,index) in sublist" :key="index">
  15. <view class="status dis a-c j-s">
  16. <view v-for="(statusitem, statusindex) in statusList" :key="statusindex" class="dis a-c"
  17. style="font-weight: bold;" v-if="item.orderstatus == statusitem.value">
  18. <image :src="statusitem.src" mode="" style="width: 22px;height: 22px;margin-right: 5px;">
  19. </image>
  20. <text :style="{color: statusitem.color}">{{statusitem.label}}</text>
  21. </view>
  22. <text>¥{{item.sumpremium}}</text>
  23. </view>
  24. <view class="orders-centre">
  25. <text>{{item.inscompany}}</text>
  26. <text>( {{item.agreementName}} )</text>
  27. <view class="sum dis f-wrap">
  28. <view v-if="item.jqpremium">交强险:¥{{item.jqpremium}}</view>
  29. <view v-if="item.sypremium">商业险:¥{{item.sypremium}}</view>
  30. <view>车船税:¥{{item.taxamount}}</view>
  31. <view v-if="item.jypremium">驾意险:¥{{item.jypremium}}</view>
  32. </view>
  33. <view v-if="item.auditopinion" class="dis f-c" style="font-size: 12px;">
  34. <text>审核意见</text>
  35. <text>{{item.auditopinion}}</text>
  36. </view>
  37. </view>
  38. <view class="orders-below dis f-c">
  39. <view class="dis a-c j-end">
  40. <u-button
  41. v-if="item.orderstatus==2 && ['恒邦财险','安盛天平','中国人寿','众安财险','太平财险','紫金财险','永诚财险','国任财险','大家财险','华泰财险','中煤财险','华农财险','渤海财险','泰康财险'].includes(item.inscompany)"
  42. size="mini" :custom-style="{fontSize:'14px'}" type="error" :plain="true"
  43. @click="queryStatus(item.id,item)">查询缴费状态</u-button>
  44. <u-button v-if="item.orderstatus==2" size="mini" type="error" :custom-style="{fontSize:'14px'}"
  45. :plain="true" @click="Payment(item.id,item.apiType)">二维码</u-button>
  46. <u-button v-if="item.orderstatus==2 && ['紫金财险'].includes(item.inscompany)" size="mini"
  47. type="error" :custom-style="{fontSize:'14px'}" :plain="true"
  48. @click="cancelorder(item.id)">撤单</u-button>
  49. <u-button v-if="item.orderstatus==2" size="mini" type="primary"
  50. :custom-style="{fontSize:'14px'}" :plain="true"
  51. @click="revokeCode(item.id)">撤销二维码</u-button>
  52. </view>
  53. <view class="dis a-c j-end" style="margin-top: 5px;">
  54. <u-button v-if="(item.orderstatus==4 || item.orderstatus==1) && item.inscompany=='华泰财险'"
  55. size="mini" :custom-style="{fontSize:'14px'}" type="error" :plain="true"
  56. @click="huataiunderwriting(item)">更新订单</u-button>
  57. <u-button
  58. v-if="item.orderstatus==1 && ['中煤财险','永诚财险','国任财险','大家财险','渤海财险','恒邦财险','安盛天平','中国人寿','众安财险','太平财险','华农财险','泰康财险'].includes(item.inscompany)"
  59. size="mini" type="error" :plain="true" :custom-style="{fontSize:'14px'}"
  60. @click="underwriting(item.id,item.inscompany)">更新订单</u-button>
  61. <u-button type="error" size="mini" :custom-style="{fontSize:'14px'}"
  62. @click="openSteps(item.id)">订单轨迹</u-button>
  63. <u-button size="mini" type="primary" :custom-style="{fontSize:'14px',background:'#FF5600'}"
  64. @click="bjdpreview(item.id)">报价单</u-button>
  65. <u-button size="mini" type="primary" :custom-style="{fontSize:'14px'}"
  66. @click="detial(item.id)">查看详情</u-button>
  67. </view>
  68. <!-- <text class="arrivalNavigations" :data-id="item.id" @tap.stop.prevent="Moremethods">更多
  69. <view class="arrivalNavigation" v-if="item.checked">
  70. <view class="d4"></view>
  71. <view class="sideNavigation">
  72. <view class="sideNavigation-btn">
  73. <view @click="bjdpreview(item.id)">报价单</view>
  74. <view v-if="item.orderstatus==2 && ['紫金财险'].includes(item.inscompany)"
  75. @click="cancelorder(item.id)">撤单</view>
  76. <view v-if="item.orderstatus==2" @click="revokeCode(item.id)">撤销二维码</view>
  77. </view>
  78. </view>
  79. </view>
  80. </text> -->
  81. </view>
  82. </view>
  83. </view>
  84. <o-empty v-if="sublist.length==0" />
  85. <!-- <u-popup v-model="trajectoryShow" mode="center" border-radius="8" width="80%">
  86. <u-steps mode="number" :list="numList" :current="2" direction="column" style="padding: 20px;"></u-steps>
  87. </u-popup> -->
  88. <u-modal v-model="OrderTrackShow" title="订单轨迹"
  89. :title-style="{fontWeight: 'bold',borderBottom:'1px solid #f2f2f2',padding:'10px'}"
  90. :show-cancel-button="false"
  91. :confirm-style="{background:'#E6EEFF',color:'#0052FF',height:'40px',lineHeight:'40px'}"
  92. @confirm="OrderTrackShow=false" confirm-text="关闭">
  93. <view class="slot-content dis a-c p-2">
  94. <view class="dis a-c j-c f-c">
  95. <view class="TrackRecord dis f-c a-start" v-for="(item,index) in TrackRecordList" :key="index">
  96. <view class="dis a-c">
  97. <view class="circle dis j-c a-c">{{index+1}}</view>
  98. <text class="title">{{item.orderStatus}}</text>
  99. </view>
  100. <view class="dis f-c content mt-2">
  101. <view class="">
  102. <text>保险公司:{{item.insCompany}}</text>
  103. <text style="margin-left: 10px;">提交人:{{item.operator}}</text>
  104. </view>
  105. <text>创建时间:{{item.createTime}}</text>
  106. </view>
  107. </view>
  108. </view>
  109. </view>
  110. </u-modal>
  111. </view>
  112. </template>
  113. <script>
  114. import store from '@/store';
  115. import {
  116. mapState,
  117. mapMutations
  118. } from "vuex"
  119. export default {
  120. data() {
  121. return {
  122. TrackRecordList: [],
  123. OrderTrackShow: false,
  124. show: true,
  125. modeClass: 'fade',
  126. // trajectoryShow: false,
  127. // trajectoryList: [],
  128. MoreShow: false,
  129. moreindex: "",
  130. companyId: "",
  131. modelcname: "",
  132. orderno: "",
  133. insuredname: "",
  134. licenseno: "",
  135. sublist: [],
  136. numList: [{
  137. name: '报价中'
  138. }, {
  139. name: '待核保'
  140. },
  141. {
  142. name: '核保退回'
  143. }, {
  144. name: '已核保待缴费'
  145. }, {
  146. name: '已承保'
  147. },
  148. ],
  149. statusList: [{
  150. label: '报价中',
  151. value: 0,
  152. color: "#229805",
  153. src: "/static/image/car-insure/state1.png"
  154. },
  155. {
  156. label: '待核保',
  157. value: 1,
  158. color: "#FF5600",
  159. src: "/static/image/car-insure/state2.png"
  160. },
  161. {
  162. label: '已核保待缴费',
  163. value: 2,
  164. color: "#FF0F00",
  165. src: "/static/image/car-insure/state3.png"
  166. },
  167. {
  168. label: '已承保',
  169. value: 3,
  170. color: "#0052FF",
  171. src: "/static/image/car-insure/state4.png"
  172. },
  173. {
  174. label: '核保退回',
  175. value: 4,
  176. color: "#727272",
  177. src: "/static/image/car-insure/state5.png"
  178. }
  179. ],
  180. }
  181. },
  182. computed: {
  183. ...mapState(['userInfo', 'quotationType']),
  184. },
  185. onLoad(params) {
  186. let item = JSON.parse(params.orderno);
  187. this.orderno = item.orderno;
  188. this.modelcname = item.modelcname;
  189. this.insuredname = item.insuredname;
  190. this.licenseno = item.licenseno;
  191. this.querylist();
  192. },
  193. methods: {
  194. //打开步骤条弹框
  195. async openSteps(orderno) {
  196. let res = await this.$http.get("/insurance/track/queryBySuborder?suborder=" + orderno)
  197. if (res.code == '200') {
  198. this.statusList.map(valA => {
  199. res.data.map(valB => {
  200. if (valA.value == valB.orderStatus) {
  201. valB.orderStatus = valA.label;
  202. }
  203. return valB
  204. })
  205. })
  206. this.TrackRecordList = res.data;
  207. this.OrderTrackShow = true;
  208. }
  209. },
  210. handle(type) {
  211. this.show = !this.show
  212. this.modeClass = type
  213. },
  214. async querylist() {
  215. let params = {
  216. orderNo: this.orderno
  217. }
  218. let res = await this.$http.post('/insurance/order/querySuborder', params)
  219. this.sublist = res.data;
  220. this.sublist.map(val => {
  221. val.checked = false;
  222. return val;
  223. })
  224. },
  225. //更多操作
  226. Moremethods(e) {
  227. let id = e.currentTarget.dataset.id;
  228. let list = this.sublist;
  229. this.sublist = list.map(val => {
  230. if (val.id == id) {
  231. val.checked = !val.checked;
  232. } else {
  233. val.checked = false;
  234. }
  235. return val;
  236. })
  237. },
  238. //查看详情
  239. detial(id) {
  240. uni.navigateTo({
  241. url: "/pages/carInsure/quoteDetail?companyId=" + id
  242. })
  243. },
  244. //付款码
  245. Payment(id, type) {
  246. let pro = this.quotationType.themeCode;
  247. if (pro == "QD") {
  248. uni.navigateTo({
  249. url: "/pages/orders/paymentCode?companyId=" + id + '&apiType=' + type,
  250. })
  251. } else {
  252. uni.navigateTo({
  253. url: "/pages/orders/paymentCode1?companyId=" + id + '&apiType=' + type,
  254. })
  255. }
  256. },
  257. //报价单
  258. bjdpreview(id) {
  259. let pro = this.quotationType.themeCode;
  260. if (pro == "QD") {
  261. uni.navigateTo({
  262. url: "/pages/orders/quotation?companyId=" + id
  263. })
  264. } else {
  265. uni.navigateTo({
  266. url: "/pages/orders/quotation1?companyId=" + id
  267. })
  268. }
  269. },
  270. //撤销二维码
  271. async revokeCode(id) {
  272. let res = await this.$http.post('/order/qrCode/destructionQrCode?areaCompanyId=' + id)
  273. if (res.code == '200') {
  274. uni.showToast({
  275. title: res.msg,
  276. icon: 'success',
  277. duration: 1000
  278. });
  279. this.querylist();
  280. } else {
  281. uni.showToast({
  282. title: res.msg,
  283. icon: 'none',
  284. duration: 1000
  285. });
  286. }
  287. },
  288. async huataiunderwriting(item) {
  289. let api = item.apiType == '2' ? '/insurance/crawler/auditStatusQuery' :
  290. '/order/huaTaiApi/auditStatusQuery';
  291. let params = {
  292. companyId: item.id,
  293. }
  294. let res = await this.$http.post(`${api}`, params)
  295. if (res.code == '200') {
  296. uni.showToast({
  297. title: res.msg,
  298. icon: 'success',
  299. duration: 1000
  300. });
  301. this.querylist();
  302. } else {
  303. uni.showToast({
  304. title: res.msg,
  305. icon: 'none',
  306. duration: 1000
  307. });
  308. }
  309. },
  310. //核保状态查询
  311. async underwriting(id, inscompany) {
  312. switch (inscompany) {
  313. case "中煤财险":
  314. let zmres = await this.$http.post('/order/zhongMeiApi/auditStatusQuery', {
  315. companyId: id
  316. })
  317. if (zmres.code == '200') {
  318. uni.showToast({
  319. title: zmres.msg,
  320. icon: 'none',
  321. duration: 1000
  322. });
  323. this.querylist();
  324. } else {
  325. uni.showToast({
  326. title: zmres.msg,
  327. icon: 'none',
  328. });
  329. }
  330. break;
  331. case "永诚财险":
  332. let ycres = await this.$http.get('/api/yongCheng/orderStatusBySuborderId/' + id);
  333. if (ycres.code == '200') {
  334. uni.showToast({
  335. title: ycres.msg,
  336. icon: 'none',
  337. duration: 2000
  338. });
  339. this.querylist();
  340. } else {
  341. uni.showToast({
  342. title: ycres.msg,
  343. icon: 'none',
  344. });
  345. }
  346. break;
  347. case "国任财险":
  348. let grres = await this.$http.post('/api/guoRen/updateOrderInfo', {
  349. companyId: id
  350. });
  351. if (grres.code == '200') {
  352. uni.showToast({
  353. title: grres.msg,
  354. icon: 'none',
  355. duration: 2000
  356. });
  357. this.querylist();
  358. } else {
  359. uni.showToast({
  360. title: grres.msg,
  361. icon: 'none',
  362. });
  363. }
  364. break;
  365. case "大家财险":
  366. let djapi = item.apiType == '2' ? '/insurance/crawler/auditStatusQuery' :
  367. '/api/dajia/verifyPayment';
  368. let djres = await this.$http.post(`${djapi}`, {
  369. companyId: id
  370. });
  371. if (djres.code == '200') {
  372. uni.showToast({
  373. title: djres.msg,
  374. icon: 'none',
  375. duration: 2000
  376. });
  377. this.querylist();
  378. } else {
  379. uni.showToast({
  380. title: djres.msg,
  381. icon: 'none',
  382. });
  383. }
  384. break;
  385. case "渤海财险":
  386. let bhres = await this.$http.post('/order/boHaiApi/auditStatusQuery', {
  387. companyId: id
  388. });
  389. if (bhres.code == '200') {
  390. uni.showToast({
  391. title: bhres.msg,
  392. icon: 'none',
  393. duration: 2000
  394. });
  395. this.querylist();
  396. } else {
  397. uni.showToast({
  398. title: bhres.msg,
  399. icon: 'none',
  400. });
  401. }
  402. break;
  403. default:
  404. let pythonres = await this.$http.post('/insurance/crawler/auditStatusQuery', {
  405. companyId: id
  406. });
  407. if (pythonres.code == '200') {
  408. uni.showToast({
  409. title: pythonres.msg,
  410. icon: 'none',
  411. duration: 2000
  412. });
  413. this.querylist();
  414. } else {
  415. uni.showToast({
  416. title: pythonres.msg,
  417. icon: 'none',
  418. });
  419. }
  420. break;
  421. }
  422. },
  423. //撤单
  424. async cancelorder(item) {
  425. let res = await this.$http.post('/order/zijin/cancel', {
  426. companyId: item
  427. })
  428. if (res.code == '200') {
  429. uni.showToast({
  430. title: res.msg,
  431. icon: 'none',
  432. duration: 1000
  433. });
  434. this.querylist();
  435. } else {
  436. uni.showToast({
  437. title: res.msg,
  438. icon: 'none',
  439. });
  440. }
  441. },
  442. async queryStatus(id, item) {
  443. switch (item.inscompany) {
  444. case "紫金财险":
  445. let zjres = await this.$http.post('/order/zijin/getOrderDetail', {
  446. companyId: id
  447. });
  448. if (zjres.code == '200') {
  449. uni.showToast({
  450. title: zjres.msg,
  451. icon: 'none',
  452. duration: 2000
  453. });
  454. this.querylist();
  455. } else {
  456. uni.showToast({
  457. title: zjres.msg,
  458. icon: 'none',
  459. });
  460. }
  461. break;
  462. case "大家财险":
  463. let djapi = item.apiType == '2' ? '/insurance/crawler/verifyPayment' :
  464. '/api/dajia/verifyPayment';
  465. let djres = await this.$http.post(`${djapi}`, {
  466. [item.apiType == 2 ? "subOrderNo" : "companyId"]: id
  467. });
  468. if (djres.code == '200') {
  469. uni.showToast({
  470. title: djres.msg,
  471. icon: 'none',
  472. duration: 2000
  473. });
  474. this.querylist();
  475. } else {
  476. uni.showToast({
  477. title: djres.msg,
  478. icon: 'none',
  479. });
  480. }
  481. break;
  482. case "华泰财险":
  483. let htapi = item.apiType == '2' ? '/insurance/crawler/verifyPayment' :
  484. '/order/huaTaiApi/paymentEnquiry';
  485. let htres = await this.$http.post(`${htapi}`, {
  486. [item.apiType == 2 ? "subOrderNo" : "companyId"]: id
  487. });
  488. if (htres.code == '200') {
  489. uni.showToast({
  490. title: htres.msg,
  491. icon: 'none',
  492. duration: 2000
  493. });
  494. this.querylist();
  495. } else {
  496. uni.showToast({
  497. title: htres.msg,
  498. icon: 'error',
  499. });
  500. }
  501. break;
  502. case "永诚财险":
  503. let ycres = await this.$http.get(
  504. '/api/yongCheng/orderStatusBySuborderId/' + id);
  505. if (ycres.code == '200') {
  506. uni.showToast({
  507. title: ycres.msg,
  508. icon: 'none',
  509. duration: 2000
  510. });
  511. this.querylist();
  512. } else {
  513. uni.showToast({
  514. title: ycres.msg,
  515. icon: 'none',
  516. });
  517. }
  518. break;
  519. case "国任财险":
  520. let grres = await this.$http.post('/api/guoRen/updateOrderInfo', {
  521. companyId: id
  522. });
  523. if (grres.code == '200') {
  524. uni.showToast({
  525. title: grres.msg,
  526. icon: 'none',
  527. duration: 2000
  528. });
  529. this.querylist();
  530. } else {
  531. uni.showToast({
  532. title: grres.msg,
  533. icon: 'none',
  534. });
  535. }
  536. break;
  537. case "中煤财险":
  538. let zmres = await this.$http.post('/order/zhongMeiApi/paymentEnquiry', {
  539. companyId: id
  540. });
  541. if (zmres.code == '200') {
  542. uni.showToast({
  543. title: zmres.msg,
  544. icon: 'none',
  545. duration: 2000
  546. });
  547. this.querylist();
  548. } else {
  549. uni.showToast({
  550. title: zmres.msg,
  551. icon: 'none',
  552. });
  553. }
  554. break;
  555. case "渤海财险":
  556. let bhres = await this.$http.post('/order/boHaiApi/getOrderDetail', {
  557. companyId: id
  558. });
  559. if (bhres.code == '200') {
  560. uni.showToast({
  561. title: bhres.msg,
  562. icon: 'none',
  563. duration: 2000
  564. });
  565. this.querylist();
  566. } else {
  567. uni.showToast({
  568. title: bhres.msg,
  569. icon: 'none',
  570. });
  571. }
  572. break;
  573. default:
  574. let pythonres = await this.$http.post('/insurance/crawler/verifyPayment', {
  575. subOrderNo: id
  576. });
  577. if (pythonres.code == '200') {
  578. uni.showToast({
  579. title: pythonres.msg,
  580. icon: 'none',
  581. duration: 2000
  582. });
  583. this.querylist();
  584. } else {
  585. uni.showToast({
  586. title: pythonres.msg,
  587. icon: 'none',
  588. });
  589. }
  590. break;
  591. }
  592. },
  593. init() {
  594. this.sublist = this.sublist.map(val => {
  595. val.checked = false;
  596. return val;
  597. })
  598. }
  599. }
  600. }
  601. </script>
  602. <style>
  603. page {
  604. background: #f2f2f2;
  605. }
  606. </style>
  607. <style lang="scss" scoped>
  608. .page {
  609. min-height: calc(100vh - 44px);
  610. background-color: #F8FAFE;
  611. padding: 16px 16px 30px 16px;
  612. }
  613. .car-header {
  614. width: 100%;
  615. height: auto;
  616. background: #FFFFFF;
  617. box-shadow: 0px 4px 10px 0px #DAE3F4;
  618. border-radius: 6px;
  619. padding: 8px 15px;
  620. .head-name {
  621. margin-left: 20px;
  622. &>text {
  623. font-weight: bold;
  624. font-size: 15px;
  625. color: #232832;
  626. }
  627. .name1 text {
  628. font-size: 14px;
  629. font-weight: bold;
  630. color: #333333;
  631. }
  632. }
  633. }
  634. .sub-orders {
  635. width: 100%;
  636. background: white;
  637. border-radius: 6px;
  638. padding: 10px;
  639. box-shadow: 0px 4px 10px 0px #DAE3F4;
  640. border-radius: 6px;
  641. margin-bottom: 10px;
  642. .status {
  643. padding-bottom: 8px;
  644. border-bottom: 1px solid #EFEFEF;
  645. >text {
  646. color: #FF5600;
  647. font-size: 16px;
  648. font-weight: bold;
  649. }
  650. }
  651. .orders-centre {
  652. padding: 6px 0;
  653. border-bottom: 1px solid #EFEFEF;
  654. >text {
  655. font-size: 15px;
  656. font-weight: bold;
  657. color: #232832;
  658. }
  659. .sum {
  660. view {
  661. width: 50%;
  662. color: #2D4D89;
  663. font-size: 13px;
  664. }
  665. }
  666. }
  667. .orders-below {
  668. padding-top: 10px;
  669. >view {
  670. uni-button {
  671. margin-left: 5px;
  672. }
  673. }
  674. }
  675. }
  676. .strong {
  677. font-weight: bold;
  678. }
  679. .arrivalNavigations {
  680. font-size: 14px;
  681. color: rgba(51, 51, 51, 0.8);
  682. margin-right: auto;
  683. position: relative;
  684. }
  685. //从这里开始是弹出框的样式 不需要搜索框的 前面样式都不用加
  686. .arrivalNavigation {
  687. width: 250rpx;
  688. position: absolute;
  689. left: -10px;
  690. top: 30px;
  691. z-index: 99;
  692. .sideNavigation {
  693. width: 80px;
  694. background-color: #fff;
  695. box-shadow: 0px 4px 10px 0px #DAE3F4;
  696. border-radius: 10rpx;
  697. .sideNavigation-btn>view {
  698. text-align: center;
  699. font-size: 14px;
  700. color: #333333;
  701. text-align: center;
  702. padding: 6px 0;
  703. border-bottom: 1px solid #EFEFEF;
  704. &:last-child {
  705. border: none;
  706. }
  707. }
  708. }
  709. .d4 {
  710. width: 0;
  711. height: 0;
  712. margin-left: 22px;
  713. margin-top: -20rpx;
  714. border-width: 20rpx;
  715. border-style: solid;
  716. border-color: transparent #fff transparent transparent;
  717. transform: rotate(90deg);
  718. /*顺时针旋转90°*/
  719. }
  720. }
  721. .TrackRecord {
  722. width: 100%;
  723. padding: 10px 20px;
  724. .circle {
  725. width: 18px;
  726. height: 18px;
  727. background: #F0F0F0;
  728. border-radius: 50%;
  729. font-size: 22rpx;
  730. font-weight: bold;
  731. }
  732. .title {
  733. color: #333333;
  734. font-size: 12px;
  735. margin-left: 12px;
  736. font-weight: bold;
  737. }
  738. .content {
  739. border-left: 1px solid #E2E5EB;
  740. padding-left: 20px;
  741. margin-left: 7px;
  742. text {
  743. font-size: 22rpx;
  744. color: rgba(51, 51, 51, 0.85);
  745. }
  746. }
  747. &:last-child {
  748. .circle {
  749. background-color: #E6EEFF;
  750. color: #0052FF;
  751. }
  752. .title {
  753. color: #0052FF;
  754. }
  755. }
  756. }
  757. </style>