contractDtl.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690
  1. <template>
  2. <view class="list-content">
  3. <pageHead pageTitle="合同审批" :showBack="true" :showHistory="true" @jumpHistory="jumpPage" style="margin-bottom: 10px;"></pageHead>
  4. <view class="list-card">
  5. <u--form ref="form" :model="contractInfo" labelPosition="left" labelWidth="80" :labelStyle="{'color': '#6B7688','fontSize':'16px'}" >
  6. <u-form-item label="合同名称" prop="contractName">
  7. <view class="val-posi">{{contractInfo.contractName}}</view>
  8. </u-form-item>
  9. <u-form-item label="合同编号" prop="contractNo">
  10. <view class="val-posi">{{contractInfo.contractNo}}</view>
  11. </u-form-item>
  12. <u-form-item label="地区" prop="nickName" >
  13. <view class="val-posi">{{contractInfo.countryName+'/'+contractInfo.city}}</view>
  14. </u-form-item>
  15. <u-form-item label="业务员" prop="salesmanName">
  16. <view class="val-posi">{{contractInfo.salesmanName}}</view>
  17. </u-form-item>
  18. <!-- <u-form-item label="销售" prop="saler" >
  19. <view class="val-posi">{{contractInfo.saler}}</view>
  20. </u-form-item> -->
  21. <u-form-item label="代理商" prop="agentId" >
  22. <view class="val-posi">{{contractInfo.agentName}}</view>
  23. </u-form-item>
  24. <u-form-item label="合同金额" prop="amount" >
  25. <view class="val-posi">{{stateFormatLow(contractInfo.amount,0)}}</view>
  26. </u-form-item>
  27. <u-form-item label="装船期限" prop="shipmentDeadline" >
  28. <view class="val-posi">{{contractInfo.shipmentDeadline}}</view>
  29. </u-form-item>
  30. <u-form-item label="贸易条款" prop="tradeTerms" >
  31. <view class="val-posi">{{contractInfo.tradeTermsName}}</view>
  32. </u-form-item>
  33. <u-form-item label="付款方式" prop="paymentMethod" >
  34. <view class="val-posi">{{contractInfo.paymentMethodName}}</view>
  35. </u-form-item>
  36. <u-form-item label="付款比例" prop="paymentRatio" >
  37. <view class="val-posi">{{contractInfo.paymentRadioName}}</view>
  38. </u-form-item>
  39. <u-form-item label="销售模式" prop="salesModel" >
  40. <view class="val-posi">{{contractInfo.salesModelName}}</view>
  41. </u-form-item>
  42. </u--form>
  43. </view>
  44. <view class="list-card" >
  45. <view class="card-title">电梯列表</view>
  46. <view v-for="(item, index) in contractInfo.elevatorList">
  47. <u--form ref="form" :model="item" labelPosition="left" labelWidth="80" :labelStyle="{'color': '#6B7688','fontSize':'16px'}" >
  48. <u-form-item label="产品类型" prop="elevatorType">
  49. <view class="val-posi">{{item.elevatorTypeName}}</view>
  50. </u-form-item>
  51. <u-form-item label="型号" prop="elevatorModel">
  52. <view class="val-posi">{{item.elevatorModel}}</view>
  53. </u-form-item>
  54. <u-form-item label="编号" prop="elevatorCode">
  55. <!-- <uni-tooltip :content="item.elevatorCode" placement="bottom">
  56. <view class="val-posi" style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;">{{item.elevatorCode}}</view>
  57. </uni-tooltip> -->
  58. <view class="val-posi">{{item.elevatorCode}}</view>
  59. </u-form-item>
  60. <u-form-item label="规格" prop="specification" >
  61. <view class="val-posi">{{item.specification}}</view>
  62. </u-form-item>
  63. <u-form-item label="数量" prop="count" >
  64. <view class="val-posi">{{item.count}}</view>
  65. </u-form-item>
  66. <u-form-item label="单价" prop="unitPrice" >
  67. <view class="val-posi">{{stateFormatLow(item.unitPrice,0)}}</view>
  68. </u-form-item>
  69. <u-form-item label="附加费用" prop="additionalCost" >
  70. <view class="val-posi">{{stateFormatLow(item.additionalCost,0)}}</view>
  71. </u-form-item>
  72. </u--form>
  73. <u-divider class="divider"></u-divider>
  74. </view>
  75. <view class="val-posi">
  76. <view>总价</view>
  77. <view>{{stateFormatLow(totalPrice,0)}}</view>
  78. </view>
  79. </view>
  80. <view class="list-card" style="padding: 16px 10px;">
  81. <view class="card-title">备注</view>
  82. <view>{{contractInfo.remark}}</view>
  83. <view class="card-title">附件信息</view>
  84. <!-- <view @click="getFile(contractInfo.file)">{{contractInfo.file}}</view> -->
  85. <view v-if="contractInfo.file" style="width: 100%;word-wrap: break-word;">
  86. <u-link ref="myLink" :href='getFile(contractInfo.file)' class="Links"
  87. :text='getFileName(contractInfo.file)' target="_blank" ></u-link></view>
  88. <view v-else>暂无附件</view>
  89. </view>
  90. <view style="height: 75px;"></view>
  91. <view class="card_bottom ">
  92. <view class="flex-center" style="width: 100%;">
  93. <view class="flex-center" style="width:100%;padding: 0px 8px;">
  94. <view class="button-left flex-center-middle" @click="toggle('02')">
  95. <img class="button-icon" src="@/static/img/approve/reject.png" alt="" />
  96. <view class="reject-text">驳回</view>
  97. </view>
  98. <view class="button-right flex-center-middle" @click="toggle('01')">
  99. <img class="button-icon" src="@/static/img/approve/pass.png" alt="" />
  100. <view class="pass-text">通过</view>
  101. </view>
  102. </view>
  103. </view>
  104. </view>
  105. <!-- 弹窗 -->
  106. <view>
  107. <!-- 驳回弹窗 -->
  108. <uni-popup ref="popup" type="bottom" background-color="#fff" style="border-radius: 8rpx;">
  109. <view class="popup-content" >
  110. <view class="return_title">
  111. <text style="color: rgba(0, 0, 0, 0.85);">驳回原因:</text>
  112. </view>
  113. <view class="uni-textarea">
  114. <textarea v-model.trim="returnMsg" placeholder-style="color:#6B7688" placeholder="请输入驳回原因…" class="return_content" maxlength="200"/>
  115. </view>
  116. <view class="flex-center mt32">
  117. <view class="button-left flex-center-middle" @click="closePup()">
  118. <img class="button-icon" src="@/static/img/approve/reject.png" alt="" />
  119. <view class="reject-text">取消</view>
  120. </view>
  121. <view class="button-right flex-center-middle" @click="handleApprove('02')">
  122. <img class="button-icon" src="@/static/img/approve/pass.png" alt="" />
  123. <view class="pass-text">提交</view>
  124. </view>
  125. </view>
  126. </view>
  127. </uni-popup>
  128. <!-- 通过弹窗 -->
  129. <uni-popup ref="popupPass" background-color="#fff" borderRadius="10px 10px 10px 10px" style="width: 90%;">
  130. <view class="popup-content" style="padding: 20rpx 40rpx" >
  131. <view class="flex-center" style="justify-content: center;margin-bottom: 20rpx 0 30rpx">
  132. <view><img style="height: 100%;width: 300rpx;" src="@/static/img/approve/nomessage.png" alt="" /></view>
  133. </view>
  134. <view style="text-align: center;margin-bottom: 30rpx">
  135. <img class="button-icon" src="@/static/img/approve/warning.png" alt="" />
  136. <text style="color: rgba(0, 0, 0, 0.85);">确认无误并通过审核?</text>
  137. </view>
  138. <view class="flex-center mt32" style="margin-bottom: 30rpx;">
  139. <view class="button-left-one flex-center-middle" @click="closePup()">
  140. <img class="button-icon" src="@/static/img/approve/reject.png" alt="" />
  141. <view class="reject-text">取消</view>
  142. </view>
  143. <view style="width: 50rpx;"></view>
  144. <view class="button-right-one flex-center-middle" @click="handleApprove('01')">
  145. <img class="button-icon" src="@/static/img/approve/pass.png" alt="" />
  146. <view class="pass-text">通过</view>
  147. </view>
  148. </view>
  149. </view>
  150. </uni-popup>
  151. <!-- 确认弹窗 -->
  152. <uni-popup ref="popupConfirm" background-color="#fff" borderRadius="10px 10px 10px 10px" style="width: 90%;">
  153. <view class="popup-content" style="padding: 20rpx 40rpx" >
  154. <view style="text-align: center;margin: 50rpx 0 30rpx">
  155. <img class="button-icon" src="@/static/img/approve/warning.png" alt="" />
  156. <text style="color: rgba(0, 0, 0, 0.85);">该报价单的折扣超出您的折扣范围</text>
  157. </view>
  158. <view style="text-align: center;margin: 30rpx 0">
  159. <text style="color: rgba(0, 0, 0, 0.85);">是否确认?</text>
  160. </view>
  161. <view class="flex-center mt32" style="margin-bottom: 30rpx;">
  162. <view class="button-left-one flex-center-middle" @click="closePup()">
  163. <img class="button-icon" src="@/static/img/approve/reject.png" alt="" />
  164. <view class="reject-text">取消</view>
  165. </view>
  166. <view style="width: 50rpx;"></view>
  167. <view class="button-right-one flex-center-middle" @click="handleApprove('01')">
  168. <img class="button-icon" src="@/static/img/approve/pass.png" alt="" />
  169. <view class="pass-text">确定</view>
  170. </view>
  171. </view>
  172. </view>
  173. </uni-popup>
  174. </view>
  175. </view>
  176. </template>
  177. <script>
  178. import * as ApproveApi from '@/api/work/approve'
  179. import {editFlow,updateContract} from '@/api/work/contract/contract.js'
  180. import { stateFormat,stateFormatLow } from '@/utils/common.js'
  181. const { environment } = require('../../../config/environment.js')
  182. export default {
  183. data() {
  184. return {
  185. projectPageParam: {
  186. pageNum: 1,
  187. pageSize: 5
  188. },
  189. contractInfo:{},
  190. returnMsg:"",
  191. contractId:'',
  192. totalPrice:0,
  193. jumpUrl:"/pages/work/approve/contractAduit?businessId="
  194. }
  195. },
  196. onLoad (params) {
  197. this.contractId = params.contractId
  198. this.jumpUrl = this.jumpUrl+this.contractId
  199. this.getBargainInfo()
  200. },
  201. methods: {
  202. jumpPage(){
  203. uni.navigateTo({
  204. url: this.jumpUrl
  205. })
  206. },
  207. getFile(url){
  208. // uni.downloadFile({
  209. // url: environment.baseURL + url, //仅为示例,并非真实的资源
  210. // success: function (res) {
  211. // if (res.statusCode === 200) {
  212. // console.log('下载成功');
  213. // }
  214. // }
  215. // });
  216. return environment.baseURL + url;
  217. },
  218. getFileName(url){
  219. let file = url.split('/');
  220. return file[file.length-1]
  221. },
  222. closePup(){
  223. this.returnMsg = "";
  224. this.$refs.popup.close()
  225. this.$refs.popupPass.close()
  226. this.$refs.popupConfirm.close()
  227. },
  228. toggle(status) {
  229. // open 方法传入参数 等同在 uni-popup 组件上绑定 type属性
  230. if(status == '02'){
  231. this.$refs.popup.open()
  232. }else{
  233. this.$refs.popupPass.open()
  234. }
  235. },
  236. handleApprove(status){
  237. if(status == '02' && this.returnMsg == ""){
  238. uni.showToast({
  239. icon: 'error',
  240. mask: true,
  241. title: '请输入驳回原因..',
  242. })
  243. return
  244. }
  245. //设置实体
  246. let bargainObj = {}
  247. let auditForm = {}
  248. if (status == '02') {
  249. //驳回
  250. bargainObj = {}
  251. auditForm = {
  252. // 审批流
  253. auditFlow: this.contractInfo.paymentMethod === '1' || this.contractInfo.paymentRatio !=='1' ? 3 :4,
  254. // 业务id 合同id
  255. businessId: this.contractId,
  256. // 审批结果
  257. status: 30,
  258. // 备注
  259. remark: '合同审批打回',
  260. // 业务参数
  261. businessObj: bargainObj
  262. }
  263. }else{
  264. //通过
  265. bargainObj = {
  266. paymentMethod:this.contractInfo.paymentMethod,
  267. paymentRatio:this.contractInfo.paymentRatio
  268. }
  269. auditForm = {
  270. // 审批流
  271. auditFlow: this.contractInfo.paymentMethod === '1' || this.contractInfo.paymentRatio !=='1' ? 3 :4,
  272. // 业务id 报价id
  273. businessId: this.contractId,
  274. // 审批结果
  275. status: 200,
  276. // 备注
  277. remark: '合同审批通过',
  278. // 业务参数
  279. businessObj: bargainObj
  280. }
  281. }
  282. if (status == '02') {
  283. auditForm.remark += ',驳回原因:'+ this.returnMsg
  284. }
  285. ApproveApi.audit(auditForm).then(res => {
  286. let nowTitle = ''
  287. if (res.code == 200){
  288. if (status == '02') {
  289. console.log("还是合同打回的操作")
  290. this.$set(this.contractInfo,"approveStatus","1")
  291. updateContract({...this.contractInfo}).then(res1=>{
  292. if(res1 && res1.code == 200){
  293. nowTitle = "合同打回成功"
  294. this.approveOpen = false
  295. }else{
  296. nowTitle = "合同打回失败"
  297. }
  298. })
  299. }else{
  300. console.log("开始合同审批的操作")
  301. this.$set(this.contractInfo,"approveStatus","2")
  302. editFlow({...this.contractInfo}).then(res2=>{
  303. if(res2 && res2.code == 200){
  304. nowTitle = "合同审批成功"
  305. }else{
  306. nowTitle = "合同审批失败"
  307. }
  308. })
  309. }
  310. setTimeout(() => {
  311. uni.showToast({
  312. icon: 'none',
  313. mask: true,
  314. title: nowTitle,
  315. })
  316. }, 500)
  317. //调回上一页
  318. this.goBack()
  319. }
  320. })
  321. },
  322. changeRate(item){
  323. if(item.discountRate < 1){
  324. item.discountRate = 1
  325. }
  326. if(item.discountRate > 100){
  327. item.discountRate = 100
  328. }
  329. //格式化
  330. item.discountRate = Number(item.discountRate).toFixed(4)
  331. //重新计算该梯形的折后价
  332. item.discountPrice = ((item.originalBasicPrice * item.discountRate) / 100 ) + item.originalOptionalPrice
  333. //重新计算同意价格
  334. let sum = 0
  335. //计算折扣前后的基价
  336. let basicPricePre = 0
  337. let basicPriceAft = 0
  338. let elevators = this.contractInfo.elevatorList
  339. elevators.some(it=>{
  340. sum += it.discountPrice * it.elevatorNumber
  341. basicPricePre += it.originalBasicPrice * it.elevatorNumber
  342. basicPriceAft += ((it.originalBasicPrice * it.discountRate * it.elevatorNumber) / 100 )
  343. })
  344. //重新计算折扣率
  345. let discountRate = (basicPriceAft / basicPricePre) * 100
  346. //重新设置接受价格
  347. this.contractInfo.acceptPrice = sum
  348. //折扣率格式化
  349. this.contractInfo.discountRate = Number(discountRate).toFixed(4)
  350. },
  351. stateFormat,
  352. stateFormatLow,
  353. getBargainInfo() {
  354. ApproveApi.contractById(this.contractId).then(res => {
  355. if (res.code == 200) {
  356. this.contractInfo = res.data
  357. //再次查询电梯信息
  358. this.getBargainLift();
  359. }
  360. })
  361. },
  362. getBargainLift() {
  363. ApproveApi.contractLiftByNo(this.contractInfo.contractNo).then(res => {
  364. if (res.code == 200) {
  365. this.$set(this.contractInfo,'elevatorList',res.rows)
  366. //计算总价
  367. if(res.rows){
  368. res.rows.some(item=>{
  369. this.totalPrice += ((item.unitPrice + item.additionalCost) * item.count)
  370. })
  371. }
  372. }
  373. })
  374. },
  375. goBack () {
  376. //uni.navigateBack({ delta: 1});
  377. uni.navigateTo({
  378. url: '/pages/work/approve/list'
  379. })
  380. }
  381. }
  382. }
  383. </script>
  384. <style>
  385. page {
  386. background-color: #EFF2F6;
  387. }
  388. </style>
  389. <style lang="scss" scoped>
  390. ::v-deep .Links {
  391. span {
  392. width: 100%;
  393. }
  394. }
  395. .list-card__price {
  396. width: 40%;
  397. }
  398. .card_bottom{
  399. display:flex;
  400. width: 100%;
  401. align-items: center;
  402. height: 75px;
  403. position:fixed;
  404. bottom: 0px;
  405. margin-left: 0px;
  406. background: #FFFFFF;
  407. .button-left {
  408. width: 48%;
  409. height: 84rpx;
  410. background: #FFF8F8;
  411. border-radius: 200rpx 0rpx 0rpx 200rpx;
  412. box-shadow: 0px 5px 6px 0px #EADEDF;
  413. .reject-text {
  414. font-size: 32rpx;
  415. color: #E60114;
  416. line-height: 44rpx;
  417. }
  418. }
  419. .button-right {
  420. width: 48%;
  421. height: 84rpx;
  422. background: linear-gradient(90deg, #DC0736 0%, #E60114 100%);
  423. box-shadow: 0px 5px 6px 0px #EADEDF;
  424. border-radius: 0rpx 200rpx 200rpx 0rpx;
  425. .pass-text {
  426. font-size: 32rpx;
  427. color: #FFFFFF;
  428. line-height: 44rpx;
  429. }
  430. }
  431. }
  432. .card-title{
  433. font-weight: 600;
  434. font-size: 16px;
  435. margin-bottom: 10px;
  436. }
  437. .txt-label {
  438. color: #3C485B;
  439. font-weight: 400;
  440. font-size: 12px;
  441. text-align: center;
  442. margin-bottom: 5px;
  443. }
  444. .txt-value {
  445. color: #000000;
  446. text-align: center;
  447. font-size: 16px;
  448. font-weight: 600;
  449. }
  450. .txt-value2 {
  451. color: #E60012;
  452. text-align: center;
  453. font-size: 16px;
  454. font-weight: 600;
  455. }
  456. .card__price{
  457. text-align: center;
  458. width: 90%;
  459. background-color: #FFF5F6;
  460. border-radius: 4px;
  461. padding:7px 5px;
  462. }
  463. .val-posi{
  464. width: 100%;
  465. text-align: right;
  466. font-size: 16px;
  467. }
  468. ::v-deep .u-badge--error {
  469. background-color: #E60114;
  470. }
  471. .flex-center {
  472. display: flex;
  473. align-items: center;
  474. justify-content: center;
  475. }
  476. .flex-center-between {
  477. display: flex;
  478. align-items: center;
  479. justify-content: space-between;
  480. margin-bottom: 10px;
  481. }
  482. .flex-center-middle {
  483. display: flex;
  484. align-items: center;
  485. justify-content: center;
  486. }
  487. .ml40 {
  488. margin-left: 40rpx
  489. }
  490. .mt32 {
  491. margin-top: 32rpx;
  492. }
  493. .list-content {
  494. // padding: 20rpx 24rpx;
  495. .button-icon {
  496. width: 28rpx;
  497. height: 28rpx;
  498. margin-right: 8rpx;
  499. }
  500. .divider {
  501. margin: 32rpx 0;
  502. border: 2rpx solid #E9EEF3;
  503. }
  504. .list-card {
  505. margin: 0px 24rpx;
  506. background: #FFFFFF;
  507. border-radius: 8rpx;
  508. padding: 32rpx;
  509. margin-bottom: 20rpx;
  510. &__title {
  511. font-weight: 600;
  512. font-size: 34rpx;
  513. color: #000000;
  514. line-height: 48rpx;
  515. width: 480rpx;
  516. white-space: nowrap;
  517. overflow: hidden;
  518. text-overflow: ellipsis;
  519. }
  520. &__area {
  521. font-size: 32rpx;
  522. color: rgba(0, 0, 0, 0.85);
  523. line-height: 32rpx;
  524. }
  525. &__text {
  526. font-size: 32rpx;
  527. color: #6B7688;
  528. line-height: 40rpx;
  529. }
  530. .developer {
  531. color: rgba(0, 0, 0, 0.85);
  532. width: 490rpx;
  533. white-space: nowrap;
  534. overflow: hidden;
  535. text-overflow: ellipsis;
  536. }
  537. .button-icon {
  538. width: 28rpx;
  539. height: 28rpx;
  540. margin-right: 8rpx;
  541. }
  542. .button-left {
  543. width: 350rpx;
  544. height: 84rpx;
  545. background: #FFF8F8;
  546. border-radius: 200rpx 0rpx 0rpx 200rpx;
  547. box-shadow: 0rpx 4rpx 16rpx 0rpx #DFDFDF;
  548. .reject-text {
  549. font-size: 32rpx;
  550. color: #E60114;
  551. line-height: 44rpx;
  552. }
  553. }
  554. .button-right {
  555. width: 350rpx;
  556. height: 84rpx;
  557. background: linear-gradient(90deg, #DC0736 0%, #E60114 100%);
  558. box-shadow: 0rpx 4rpx 16rpx 0rpx #DFDFDF;
  559. border-radius: 0rpx 200rpx 200rpx 0rpx;
  560. .pass-text {
  561. font-size: 32rpx;
  562. color: #FFFFFF;
  563. line-height: 44rpx;
  564. }
  565. }
  566. }
  567. .popup-content {
  568. padding: 20rpx 20rpx;
  569. .return_content{
  570. width: 92%;
  571. padding: 20rpx 28rpx;
  572. background: #EFF2F6;
  573. border-radius: 4px;
  574. }
  575. .return_title{
  576. font-family: PingFangSC, PingFang SC;
  577. font-weight: 600;
  578. font-size: 16px;
  579. color: rgba(0,0,0,0.85);
  580. margin-bottom: 10rpx;
  581. }
  582. .button-icon {
  583. width: 28rpx;
  584. height: 28rpx;
  585. margin-right: 8rpx;
  586. }
  587. .button-left {
  588. width: 350rpx;
  589. height: 84rpx;
  590. background: #FFF8F8;
  591. border-radius: 200rpx 0rpx 0rpx 200rpx;
  592. box-shadow: 0px 2px 8px 0px #DFDFDF;
  593. .reject-text {
  594. font-size: 32rpx;
  595. color: #E60114;
  596. line-height: 44rpx;
  597. }
  598. }
  599. .button-right {
  600. width: 350rpx;
  601. height: 84rpx;
  602. background: linear-gradient(90deg, #DC0736 0%, #E60114 100%);
  603. border-radius: 0rpx 200rpx 200rpx 0rpx;
  604. box-shadow: 0px 2px 8px 0px #DFDFDF;
  605. .pass-text {
  606. font-size: 32rpx;
  607. color: #FFFFFF;
  608. line-height: 44rpx;
  609. }
  610. }
  611. .button-left-one {
  612. width: 220rpx;
  613. height: 84rpx;
  614. background: #FFF8F8;
  615. border-radius: 200rpx;
  616. box-shadow: 0px 2px 8px 0px #DFDFDF;
  617. .reject-text {
  618. font-size: 32rpx;
  619. color: #E60114;
  620. line-height: 44rpx;
  621. }
  622. }
  623. .button-right-one {
  624. width: 220rpx;
  625. height: 84rpx;
  626. background: linear-gradient(90deg, #DC0736 0%, #E60114 100%);
  627. border-radius: 200rpx;
  628. box-shadow: 0px 2px 8px 0px #DFDFDF;
  629. .pass-text {
  630. font-size: 32rpx;
  631. color: #FFFFFF;
  632. line-height: 44rpx;
  633. }
  634. }
  635. }
  636. }
  637. </style>