purchaseContractExamine.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722
  1. <!--采购合同查看-->
  2. <!--2019年5月30日 20:25:16 by jlx-->
  3. <template>
  4. <div class="container">
  5. <el-row>
  6. <el-col :span="12">
  7. <h2 class="bg-left title">查看合同详情</h2>
  8. </el-col>
  9. <el-col :span="12" class="bg-right">
  10. <el-button class="bg-bottom" type="primary" size="small" @click="returnsales()"><img width="6" height="10"
  11. style="vertical-align: bottom; margin-right: 3px" src="../../../public/img/lujing.png" alt="" />返回
  12. </el-button>
  13. </el-col>
  14. </el-row>
  15. <ws-form ref="deptBudgetList" :rules="mainReportAdd" :model="deptBudgetList">
  16. <div class="title-top">
  17. 采购合同<span class="title-number">【编号:{{ deptBudgetList.contractNo }}】</span>
  18. <div class="icon" v-if="deptBudgetList.status">
  19. <template>
  20. <el-popover placement="right" :width="285" trigger="click" visible-arrow="false"
  21. @show="history(deptBudgetList.id)">
  22. <template>
  23. <div slot="reference"> {{deptBudgetList.status }}</div>
  24. </template>
  25. <div>
  26. <p style="margin-top: 0; padding-left: 10px">操作历史</p>
  27. <div v-for="(item, index) in historyList" class="flex">
  28. <div class="vertical-text vertical-text-left">
  29. {{ item.updateDate }}
  30. </div>
  31. <div>
  32. <div class="vertical-circle"></div>
  33. <div v-if="index != historyList.length - 1" class="vertical-line"></div>
  34. </div>
  35. <div class="vertical-text">
  36. {{ item.operateUser }}<br />{{ item.dealMsg }}
  37. </div>
  38. </div>
  39. </div>
  40. </el-popover>
  41. </template>
  42. </div>
  43. </div>
  44. <div class="remark">
  45. <h3>基本信息</h3>
  46. </div>
  47. <ws-info-table>
  48. <ws-form-item label="合同类型" span="1" prop="agreementType">
  49. {{ deptBudgetList.agreementType }}
  50. </ws-form-item>
  51. <ws-form-item label="合同编号" v-if="deptBudgetList.agreementType=='采购合同'" span="1" prop="contractNo">
  52. {{ deptBudgetList.contractNo }}
  53. </ws-form-item>
  54. <ws-form-item label="交易主体" span="1" prop="transactionSubject" class="readonly">
  55. {{deptBudgetList.transactionSubject}}
  56. </ws-form-item>
  57. <ws-form-item v-if="deptBudgetList.transactionSubject == '合营'" label="合营加价" span="1" prop="seller" class="readonly">
  58. {{ deptBudgetList.jointVentureMarkup }}
  59. </ws-form-item>
  60. <ws-form-item label="关联合同" v-if="deptBudgetList.agreementType=='补充协议'" span="1" prop="agreementNo">
  61. {{ deptBudgetList.agreementNo }}
  62. </ws-form-item>
  63. <ws-form-item label="补充协议编号" v-if="deptBudgetList.agreementType=='补充协议'" span="1" prop="contractNo">
  64. {{ deptBudgetList.contractNo }}
  65. </ws-form-item>
  66. <ws-form-item label="运输方式" span="1" prop="shippingType">
  67. {{ deptBudgetList.shippingType }}
  68. </ws-form-item>
  69. <ws-form-item label="买方" span="1" prop="buyer">
  70. {{ deptBudgetList.buyer }}
  71. </ws-form-item>
  72. <ws-form-item label="结算方式" span="1" prop="settlementMethod">{{ deptBudgetList.settlementMethod }}
  73. </ws-form-item>
  74. <ws-form-item label="卖方" span="1" prop="seller">{{ deptBudgetList.seller }}
  75. </ws-form-item>
  76. <ws-form-item label="交货方式" span="1" prop="deliverType1">{{ deptBudgetList.deliverType1 }}
  77. </ws-form-item>
  78. <ws-form-item label="买方电话" span="1" prop="buyerPhone">{{ deptBudgetList.buyerPhone }}
  79. </ws-form-item>
  80. <ws-form-item label="发货反馈负责人" span="1" prop="feedbackLeader" v-if="deptBudgetList.deliverType1 == '对方送货'">{{ deptBudgetList.feedbackLeader }}
  81. </ws-form-item>
  82. <ws-form-item label="包装方式" span="1" prop="packingMethod">
  83. {{ deptBudgetList.packingMethod }}
  84. </ws-form-item>
  85. <ws-form-item label="卖方电话" span="1" prop="sellerPhone">
  86. {{ deptBudgetList.sellerPhone }}
  87. </ws-form-item>
  88. <ws-form-item label="验收方式" span="1" prop="acceptanceMethod">
  89. {{ deptBudgetList.acceptanceMethod }}
  90. </ws-form-item>
  91. <ws-form-item label="重量(吨)" span="1" prop="weight">
  92. {{ deptBudgetList.weight }}
  93. </ws-form-item>
  94. <ws-form-item label="交货日期(起)" span="1" prop="deliveryDateStart">
  95. {{ deptBudgetList.deliveryDateStart }}
  96. </ws-form-item>
  97. <ws-form-item label="溢短装(%)" span="1" prop="overShort">
  98. {{ deptBudgetList.overShort }}
  99. </ws-form-item>
  100. <ws-form-item label="交货日期(止)" span="1" prop="deliveryDateEnd">
  101. {{ deptBudgetList.deliveryDateEnd }}
  102. </ws-form-item>
  103. <ws-form-item label="价格类型" span="1" prop="priceType">
  104. {{ deptBudgetList.priceType }}
  105. </ws-form-item>
  106. <ws-form-item label="合同单价(元/吨)" span="1" prop="unitContractPrice" v-if="deptBudgetList.priceType == '定价采购'">
  107. {{ deptBudgetList.unitContractPrice }}
  108. </ws-form-item>
  109. <ws-form-item label="合同总价(元)" span="1" prop="totalContractPrice" v-if="deptBudgetList.priceType == '定价采购'">
  110. {{ deptBudgetList.totalContractPrice }}
  111. </ws-form-item>
  112. <ws-form-item label="货源所在地区" span="1">
  113. {{ deptBudgetList.sourceProvince }}
  114. {{ deptBudgetList.sourceCity }}
  115. {{ deptBudgetList.sourceArea }}
  116. </ws-form-item>
  117. <ws-form-item label="货源详细地址" span="1" prop="sourceGoods">
  118. {{ deptBudgetList.sourceGoods }}
  119. </ws-form-item>
  120. <ws-form-item label="交货地所在地区" span="1">
  121. {{ deptBudgetList.deliveryProvince }}
  122. {{ deptBudgetList.deliveryCity }}
  123. {{ deptBudgetList.deliveryArea }}
  124. </ws-form-item>
  125. <ws-form-item label="交货地详细地址" span="1" prop=" placeDelivery">
  126. {{ deptBudgetList.placeDelivery }}
  127. </ws-form-item>
  128. <ws-form-item label="签订日期" span="1" prop="signingDate">
  129. {{ deptBudgetList.signingDate }}
  130. </ws-form-item>
  131. <ws-form-item label="最终实际交易量(吨)" span="1" prop="finalTradingVolume">
  132. {{ deptBudgetList.finalTradingVolume }}
  133. </ws-form-item>
  134. <ws-form-item label="临时仓库负责人" span="1" prop="personCharge" v-if="deptBudgetList.deliverType != 2">
  135. {{ deptBudgetList.personCharge }}
  136. </ws-form-item>
  137. <ws-form-item class="readonly" label="结算重量方式" span="1" prop="settlementWeightMethod" v-if="deptBudgetList.deliverType==1">
  138. {{ deptBudgetList.settlementWeightMethod==1?'按出库重量结算':'按入库重量结算' }}
  139. </ws-form-item>
  140. <ws-form-item label="结算单价(元/吨)" span="1" prop="settlementPrice" >
  141. {{ deptBudgetList.settlementPrice?deptBudgetList.settlementPrice:'自动结算,不可编辑'}}
  142. </ws-form-item>
  143. </ws-info-table>
  144. <!--面试信息-->
  145. <div class="remark">
  146. <h3>货物信息</h3>
  147. </div>
  148. <ws-info-table>
  149. <ws-form-item label="货名" span="1" prop="waterContent">
  150. {{ deptBudgetList.contractGoodsInfo.goodsName }}
  151. </ws-form-item>
  152. <ws-form-item label="水分(%)<=" span="1" prop="intendedShipId">
  153. {{ deptBudgetList.contractGoodsInfo.waterContent }}
  154. </ws-form-item>
  155. <ws-form-item label="品级" span="1" prop="grade">
  156. {{ deptBudgetList.contractGoodsInfo.grade }}
  157. </ws-form-item>
  158. <ws-form-item label="杂质(%)<=" span="1" prop="impurity">
  159. {{ deptBudgetList.contractGoodsInfo.impurity }}
  160. </ws-form-item>
  161. <ws-form-item label="容重(克/升)>=" span="1" prop="bulkDensity">
  162. {{ deptBudgetList.contractGoodsInfo.bulkDensity }}
  163. </ws-form-item>
  164. <ws-form-item label="霉变粒(%)<=" span="1" prop="mildewGrain" class="result">
  165. {{ deptBudgetList.contractGoodsInfo.mildewGrain }}
  166. </ws-form-item>
  167. <ws-form-item label="热损伤(%)<=" span="1" prop="jiaorenli">
  168. {{ deptBudgetList.contractGoodsInfo.jiaorenli }}
  169. </ws-form-item>
  170. <ws-form-item label="不完善粒(%)<=" span="1" prop="imperfectGrain" class="result">
  171. {{ deptBudgetList.contractGoodsInfo.imperfectGrain }}
  172. </ws-form-item>
  173. </ws-info-table>
  174. <div class="remark">
  175. <h3>流程信息</h3>
  176. </div>
  177. <ws-info-table>
  178. <!--已付款(元)-->
  179. <ws-form-item label="已付款(元)" span="1" prop="mildewGrain">
  180. {{deptBudgetList.contractProcessInfo.mildewGrain}}
  181. </ws-form-item>
  182. <ws-form-item label="已开发票(元)" span="1" prop="goodsName">
  183. {{ deptBudgetList.contractProcessInfo.goodsName }}
  184. </ws-form-item>
  185. <ws-form-item label="费用支出(元)" span="1" prop="waterContent">{{ deptBudgetList.contractProcessInfo.waterContent }}
  186. </ws-form-item>
  187. <ws-form-item label="未开发票(元)" span="1" prop="impurity">{{ deptBudgetList.contractProcessInfo.impurity }}
  188. </ws-form-item>
  189. <ws-form-item label="已完成发运量(吨)" span="1" prop="imperfectGrain" class="result">
  190. {{ deptBudgetList.contractProcessInfo.imperfectGrain }}
  191. </ws-form-item>
  192. <ws-form-item label="双章原件回收情况" span="1" prop="grade">{{ deptBudgetList.contractProcessInfo.grade }}
  193. </ws-form-item>
  194. </ws-info-table>
  195. <div class="remark">
  196. <h3>备注信息</h3>
  197. </div>
  198. <div style=" color: #afb5cb;margin-left: 20px;">
  199. {{ deptBudgetList.remarks }}
  200. </div>
  201. <ws-upload ref="upload" :comp-id="compId" :appendix-ids="deptBudgetList.addressUrl" :editable="false"
  202. accept=".jpg, .jpeg, .png, .pdf, .doc, .zip, .rar" />
  203. <el-table class="wenzi" :data="taskhistories" style="width: 100%">
  204. <el-table-column prop="operatorMajorRoleName" label="审核人">
  205. <template scope="scope">
  206. {{scope.row.operatorMajorRoleName}}{{scope.row.operatorName}}
  207. </template>
  208. </el-table-column>
  209. <el-table-column prop="inOutTaskNo" label="审核结果">
  210. <template scope="scope">
  211. <span v-if='scope.row.approved'>通过</span>
  212. <span v-if='!scope.row.approved'>驳回</span>
  213. </template>
  214. </el-table-column>
  215. <el-table-column prop="endTime" label="审核时间"></el-table-column>
  216. <el-table-column prop="auditMind" label="审核意见"></el-table-column>
  217. </el-table>
  218. </ws-form>
  219. <div style="text-align: right; padding: 10px">
  220. <el-button class="bg-bottom" type="primary" size="small" @click="returnsales()">关闭</el-button>
  221. </div>
  222. </div>
  223. </template>
  224. <script>
  225. import {
  226. packList,
  227. xiala,
  228. examineList,
  229. billoperatehis,
  230. } from '@/model/contarct/index'
  231. import {
  232. gettaskhistories
  233. } from '@/model/tasksport/index'
  234. export default {
  235. name: 'viewSpareMoney',
  236. watch: {
  237. vesselId(val) {
  238. this.getVesselData()
  239. },
  240. isShow(val) {
  241. this.showType = val
  242. },
  243. },
  244. data() {
  245. return {
  246. //弹出框
  247. dialogViewSpareMoney: false,
  248. dialogApproveFormVisible: false,
  249. // 船舶类型
  250. monetaryKey: null,
  251. // 表格显示数据
  252. tableDate: [],
  253. // 是否显示
  254. showType: true,
  255. // 年
  256. year: '',
  257. status: '',
  258. // 提交类型
  259. submitType: true,
  260. historyList: [],
  261. tableData: [{
  262. date: 1111,
  263. name: 'qqqq',
  264. address: 'errrtt'
  265. }],
  266. ruleDeptBudget: [],
  267. taskhistories: [],
  268. deptBudgetList: {
  269. contractProcessInfo: {},
  270. contractGoodsInfo: {},
  271. },
  272. mainReportAdd: {},
  273. list: {},
  274. compId: localStorage.getItem('ws-pf_compId'),
  275. }
  276. },
  277. activated() {
  278. this.status = this.$route.query.status
  279. this.loaddata()
  280. this.showType = this.isShow
  281. },
  282. methods: {
  283. loaddata() {
  284. gettaskhistories({
  285. businessKey: this.$route.query.id,
  286. workflowId: this.$route.query.workflowId
  287. }).toPromise()
  288. .then((response) => {
  289. this.taskhistories = response
  290. })
  291. // 数据
  292. examineList({
  293. id: this.$route.query.id
  294. })
  295. .toPromise()
  296. .then((response) => {
  297. this.deptBudgetList = response
  298. if (this.deptBudgetList.deliverType == 1) {
  299. this.deptBudgetList.deliverType1 = '我方自提'
  300. } else if (this.deptBudgetList.deliverType == 2) {
  301. this.deptBudgetList.deliverType1 = '对方送货'
  302. }
  303. else if (this.deptBudgetList.deliverType == 3) {
  304. this.deptBudgetList.deliverType1 = '对方送货(临时库)'
  305. }
  306. })
  307. // 包装方式
  308. packList({
  309. constId: 'CON1'
  310. })
  311. .toPromise()
  312. .then((response) => {
  313. this.packtypeList = response
  314. })
  315. // 验收方式
  316. this.getUnitList()
  317. // 货名
  318. packList({
  319. constId: 'CON2'
  320. })
  321. .toPromise()
  322. .then((response) => {
  323. this.goodnameList = response
  324. })
  325. // 品级
  326. packList({
  327. constId: 'CON3'
  328. })
  329. .toPromise()
  330. .then((response) => {
  331. this.gradeList = response
  332. })
  333. // 双章
  334. packList({
  335. constId: 'CON4'
  336. })
  337. .toPromise()
  338. .then((response) => {
  339. this.ChapterTwoList = response
  340. })
  341. },
  342. getUnitList() {
  343. xiala({
  344. compId: localStorage.getItem('ws-pf_compId'),
  345. constCode: 'TYPEYAN',
  346. })
  347. .toPromise()
  348. .then((response) => {
  349. this.unitList = response
  350. let currItem
  351. this.unitList.forEach((item, index, arr) => {
  352. item.flag = 'delete'
  353. if (this.vModel == item.constKey) {
  354. currItem = item
  355. }
  356. })
  357. //
  358. if (currItem) {
  359. this.selectContract(currItem.constValue)
  360. }
  361. })
  362. },
  363. history(id1) {
  364. billoperatehis({
  365. id: id1
  366. })
  367. .toPromise()
  368. .then((response) => {
  369. this.historyList = response
  370. })
  371. },
  372. // 关闭 dialog时 处理文件url 初始化upload组件
  373. handleClose() {
  374. this.dialogViewSpareMoney = false
  375. },
  376. returnsales() {
  377. this.$router.go(-1)
  378. },
  379. },
  380. }
  381. </script>
  382. <style lang="scss" scoped>
  383. // .status-orange,
  384. // .status-bule,
  385. // .status-green {
  386. // border: 1px solid;
  387. // border-radius: 30px;
  388. // padding: 3px 10px;
  389. // font-size: 16px;
  390. // }
  391. // .status-orange {
  392. // border-color: #ff9f24;
  393. // color: #ff9f24;
  394. // background: #ffedd5;
  395. // }
  396. // .status-bule {
  397. // border-color: #5473e8;
  398. // color: #5473e8;
  399. // background: #f0f3fe;
  400. // }
  401. // .status-green {
  402. // border-color: #50cad4;
  403. // color: #50cad4;
  404. // background: #ecfeff;
  405. // }
  406. .el-form {
  407. padding: 0 15%;
  408. }
  409. /deep/.ws-info-table .el-form-item {
  410. border-right: 1px solid #cdd2dc;
  411. border-bottom: 1px solid #cdd2dc;
  412. }
  413. .readonly {
  414. position: relative;
  415. }
  416. .readonly:after {
  417. content: '*';
  418. color: #ff2727;
  419. position: absolute;
  420. right: 8px;
  421. z-index: 10;
  422. top: 21%;
  423. font-size: 20px;
  424. }
  425. .title {
  426. position: relative;
  427. }
  428. .title::before {
  429. content: '';
  430. display: inline-block;
  431. width: 5px;
  432. height: 30px;
  433. background: #5473e8;
  434. position: absolute;
  435. left: 0;
  436. }
  437. .el-button--primary {
  438. background-color: #5878e8;
  439. border-color: #5878e8;
  440. }
  441. .el-col {
  442. background: #f6f7fc;
  443. }
  444. /deep/.ws-info-table .el-form-item .el-form-item__content {
  445. padding: 0 25px;
  446. border-left: 1px solid #cdd2dc;
  447. background: #fafbfc;
  448. color: #afb5cb;
  449. }
  450. /deep/.ws-info-table .el-form-item .el-form-item__label {
  451. width: 140px;
  452. text-align: center;
  453. background: #f0f2f6;
  454. // border: 1px solid #cdd2dc;
  455. }
  456. // .button-container {
  457. // display: flex;
  458. // flex-wrap: nowrap;
  459. // justify-content: space-between;
  460. // align-items: center;
  461. // background-color: #fff;
  462. // width: 100%;
  463. // height: 50px;
  464. // padding: 0 10px;
  465. // &>div {
  466. // margin-left: 10px;
  467. // display: flex;
  468. // flex-wrap: nowrap;
  469. // flex-direction: row;
  470. // &>span {
  471. // line-height: 50px;
  472. // }
  473. // }
  474. // /deep/.auditFlow-box {
  475. // position: unset;
  476. // margin-left: 10px;
  477. // &/deep/.auditFlow-icon {
  478. // width: auto;
  479. // padding-right: 30px;
  480. // }
  481. // &/deep/.auditFlow-main {
  482. // position: absolute;
  483. // }
  484. // }
  485. // }
  486. // .box-app {
  487. // display: inline-block;
  488. // float: left;
  489. // margin-left: 30px;
  490. // line-height: 50px;
  491. // }
  492. /deep/.el-dialog {
  493. .el-form-item {
  494. margin-bottom: 0 !important;
  495. .el-input--medium {
  496. textarea {
  497. min-height: 100px !important;
  498. }
  499. }
  500. }
  501. }
  502. .collapse-bottom {
  503. margin-bottom: 20px;
  504. }
  505. .input-main .textarea .el-textarea__inner {
  506. width: 100%;
  507. z-index: 1;
  508. }
  509. .bg-left {
  510. padding-left: 30px;
  511. }
  512. .bg-right {
  513. padding-right: 10px;
  514. text-align: right;
  515. }
  516. .bg-bottom {
  517. margin: 15px 0px;
  518. }
  519. .wenzi {
  520. width: 900px;
  521. margin: 0 auto;
  522. }
  523. .wenzi h3 {
  524. display: inline-block;
  525. left: 10px;
  526. }
  527. .wenzi p {
  528. display: inline-block;
  529. }
  530. .center {
  531. width: 900px;
  532. margin: 0 auto;
  533. }
  534. .el-form-item {
  535. width: 50%;
  536. }
  537. .el-form-item__label {
  538. text-align: center;
  539. }
  540. .ce {
  541. width: 900px;
  542. margin: 0 auto;
  543. }
  544. /*.crt-main .textarea /deep/ .el-form-item__label {*/
  545. /* height: 82px;*/
  546. /*}*/
  547. // 控制select为只读的时候显示样式
  548. // .hide-sel {
  549. // .el-input__inner {
  550. // border: 0px;
  551. // }
  552. // .el-icon-arrow-up {
  553. // display: none;
  554. // }
  555. // .el-textarea__inner {
  556. // background-color: #fff !important;
  557. // border: 0;
  558. // }
  559. // .el-date-editor {
  560. // i {
  561. // display: none;
  562. // }
  563. // }
  564. // .is-disabled {
  565. // .el-input__inner:hover {
  566. // background-color: #fff !important;
  567. // border: 0;
  568. // }
  569. // color: #606266;
  570. // .el-input__inner {
  571. // background-color: #fff !important;
  572. // border: 0;
  573. // color: #606266;
  574. // }
  575. // .el-textarea__inner {
  576. // background-color: #fff !important;
  577. // border: 0;
  578. // color: #606266;
  579. // }
  580. // }
  581. // }
  582. // 控制select为只读的时候显示样式
  583. /deep/.ws-class-table-col {
  584. height: auto;
  585. padding: 0px 2px;
  586. /deep/.el-input__inner {
  587. padding: 0px 2px;
  588. }
  589. }
  590. /deep/.is-disabled {
  591. .el-input__prefix,
  592. .el-input__suffix {
  593. display: none;
  594. }
  595. .el-input__inner {
  596. background-color: #fff;
  597. border-color: #fff !important;
  598. color: #000 !important;
  599. font-size: 14px;
  600. cursor: text;
  601. padding: 0 !important;
  602. }
  603. }
  604. .winseaview-view {
  605. padding: 0 0 20px;
  606. }
  607. .container {
  608. overflow: scroll;
  609. height: 93vh;
  610. }
  611. /deep/.ws-info-table[data-v-850a44a6] .el-form-item .el-form-item__label {
  612. width: 130px;
  613. }
  614. .vertical-text-left {
  615. width: 62px;
  616. text-align: right;
  617. }
  618. .vertical-text {
  619. margin: 0 10px;
  620. color: #8890b1;
  621. font-size: 12px;
  622. margin-top: -4px;
  623. }
  624. .vertical-line {
  625. height: 100px;
  626. border-left: 2px solid #e9ecf7;
  627. margin-left: 4px;
  628. padding: 0 3px;
  629. }
  630. .vertical-circle {
  631. width: 10px;
  632. height: 10px;
  633. border: 2px solid #5878e8;
  634. background-color: #ffffff;
  635. -webkit-border-radius: 100px;
  636. }
  637. .vertical-circle:first-child {
  638. color: red;
  639. }
  640. .icon {
  641. display: inline-block;
  642. width: 60px;
  643. background: #ecfeff;
  644. border-radius: 12px;
  645. border: 1px solid #50cad4;
  646. position: relative;
  647. font-size: 14px;
  648. color: #50cad4;
  649. padding: 1px 7px;
  650. }
  651. .title-top {
  652. margin-top: 20px;
  653. font-size: 21px;
  654. font-weight: 600;
  655. }
  656. .title-number {
  657. font-size: 14px;
  658. font-weight: 400;
  659. }
  660. </style>