orderDetail.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674
  1. <template>
  2. <view class="content">
  3. <view class="row b-b b-t">
  4. <text class="order-status" @click="item.delivery_type == 'express'?towuliu(item):''">{{ item._status ? item._status._msg : '' }}</text>
  5. </view>
  6. <!-- 快递信息 -->
  7. <view class="express-box" @click="expressCheck(item)" v-if="item.delivery_id != null ">
  8. <view v-if='item.delivery_id != null' style="width: 100%;padding: 10rpx 20rpx;background: #FFFFFF;">
  9. <view class="express-frame">
  10. <view>
  11. <view style="display: flex;">
  12. <text class="express-text">快递名:</text>
  13. {{ item.delivery_name }}
  14. </view>
  15. <view style="display: flex;">
  16. <text class="express-text">快递单号:</text>
  17. {{ item.delivery_id }}
  18. </view>
  19. </view>
  20. <text class="iconfont iconenter" style="color: #CCCCCC;"></text>
  21. </view>
  22. </view>
  23. </view>
  24. <view class="stores-wrapper" v-if="item.system_store && item.system_store.id">
  25. <view class="store">
  26. <view class="store-logo">
  27. <image :src="item.system_store.image" mode=""></image>
  28. <text class="store-name clamp">{{ item.system_store.name }}</text>
  29. </view>
  30. <template v-if="item.system_store.detailed_address != '测试'">
  31. <view class="store-addr store-base">
  32. 地址:
  33. <text>{{ item.system_store.detailed_address }}</text>
  34. </view>
  35. <view class="store-addr store-base">
  36. 电话:
  37. <text>{{ item.system_store.phone }}</text>
  38. </view>
  39. </template>
  40. </view>
  41. </view>
  42. <view class="address-box position-relative">
  43. <view class="address-top flex">
  44. <view class="title">{{ item.real_name }}</view>
  45. <view class="phone">{{ item.user_phone }}</view>
  46. </view>
  47. <view class="addrdss-detail">{{ item.user_address }}</view>
  48. <image class="a-bg" :src="addressImg"></image>
  49. </view>
  50. <view class="order-item">
  51. <view class="goods-box-single" v-for="(goodsItem, goodsIndex) in item.cartInfo" :key="goodsIndex">
  52. <image class="goods-img" :src="goodsItem.productInfo.image" mode="aspectFill"></image>
  53. <view class="right position-relative">
  54. <view class="flex">
  55. <text class="title">{{ goodsItem.productInfo.store_name }}</text>
  56. <view class="title-right">
  57. <view class="price">{{ goodsItem.productInfo.price }}</view>
  58. <view class="attr-box">
  59. {{ goodsItem.attrInfo ? goodsItem.attrInfo.suk : '' }} x {{ goodsItem.cart_num + '' + (goodsItem.productInfo.unit_name ||'') }}
  60. </view>
  61. <view>
  62. <view v-if="status._type == 3">
  63. <!-- <view @click="evaluate(goodsItem)" class="yesevaluate" v-if="goodsItem.is_reply > 0"><text>已评价</text></view> -->
  64. <!-- <view @click="evaluate(goodsItem)" class="evaluate" v-if="goodsItem.is_reply < 1"><text>去评价</text></view> -->
  65. </view>
  66. </view>
  67. </view>
  68. </view>
  69. </view>
  70. </view>
  71. </view>
  72. <view class="row b-b flex">
  73. <text class="tit">订单总价</text>
  74. <view class="input">¥{{ payAllMoney }}</view>
  75. </view>
  76. <view class="row b-b flex" v-if="vipMoney > 0">
  77. <text class="tit">vip优惠</text>
  78. <view class="input">-¥{{ vipMoney }}</view>
  79. </view>
  80. <view class="row b-b flex">
  81. <text class="tit">邮费</text>
  82. <view class="input">{{ item.pay_postage > 0 ? '¥' + item.pay_postage : '免邮费' }}</view>
  83. </view>
  84. <view class="row b-b flex" v-if="item.coupon_id > 0">
  85. <text class="tit">优惠券</text>
  86. <view class="input">-¥{{ item.coupon_price }}</view>
  87. </view>
  88. <view class="row b-b flex" v-if="item.use_integral > 0">
  89. <text class="tit">积分抵扣</text>
  90. <view class="input">-¥{{ item.use_integral }}</view>
  91. </view>
  92. <view class="row b-b flex">
  93. <text class="tit ">实付</text>
  94. <view class="input payColor">¥{{ item.pay_price }}</view>
  95. </view>
  96. <view class="orderDetialBox">
  97. <view class="f-header m-t">
  98. <view class="f-left-icon"></view>
  99. <view class="tit-box"><text class="tit">订单信息</text></view>
  100. </view>
  101. <view class="item flex">
  102. <view class="title-left flex">
  103. <text class="title">订单编号:</text>
  104. <view class="text">{{ item.order_id }}</view>
  105. </view>
  106. <view class="buttom-right" @click="copyOrderId(item.order_id)">复制单号</view>
  107. </view>
  108. <view class="item flex">
  109. <view class="title-left flex">
  110. <text class="title">下单时间:</text>
  111. <view class="text">{{ item._add_time }}</view>
  112. </view>
  113. </view>
  114. <view class="item flex">
  115. <view class="title-left flex">
  116. <text class="title">订单类型:</text>
  117. <view class="text">{{ item | orderType }}</view>
  118. </view>
  119. </view>
  120. <view class="item flex">
  121. <view class="title-left flex">
  122. <text class="title">订单状态:</text>
  123. <view class="text">{{ item._status._title || '' }}</view>
  124. </view>
  125. </view>
  126. <view class="item flex">
  127. <view class="title-left flex">
  128. <text class="title">支付方式:</text>
  129. <view class="text">{{ item._status._payType||"" }}</view>
  130. </view>
  131. </view>
  132. <view class="item flex" v-if="item.verify_code">
  133. <view class="title-left flex">
  134. <text class="title">核销码:</text>
  135. <view class="text">{{ item.verify_code }}</view>
  136. </view>
  137. <view class="buttom-right" @click="showQm(item.order_id)">出示券码</view>
  138. </view>
  139. </view>
  140. <view class="orderDetialBox" v-if="item.delivery_id">
  141. <view class="item flex">
  142. <view class="title-left flex">
  143. <text class="title">配送方式:</text>
  144. <view class="text">{{ item.delivery_type == 'express' ? '发货' : item.delivery_type == 'send' ? '送货' : '' }}</view>
  145. </view>
  146. </view>
  147. <view class="item flex">
  148. <view class="title-left flex">
  149. <text class="title" v-if="item.delivery_type == 'express'">快递公司:</text>
  150. <text class="title" v-if="item.delivery_type == 'send'">送货人员:</text>
  151. <view class="text">{{ item.delivery_name }}</view>
  152. </view>
  153. <!-- <view v-if="status._type != 1 && status._type != 0" class="buttom-right" @click="towuliu(item)">查看物流</view> -->
  154. </view>
  155. <view class="item flex">
  156. <view class="title-left flex">
  157. <text class="title" v-if="item.delivery_type == 'express'">快递单号:</text>
  158. <text class="title" v-if="item.delivery_type == 'send'">联系方式:</text>
  159. <view class="text">{{ item.delivery_id }}</view>
  160. </view>
  161. </view>
  162. </view>
  163. <view class="btHeight">
  164. </view>
  165. <view class="group-nav flex bg-white b-t" v-if="item.combination_id>0">
  166. <navigator :url="'/pages/product/groupBooking/detail?id='+item.pink_id">
  167. <view class="bottom border-radius-all bg-danger text-white padding-c-30 font-size-lg padding-v-10">查看拼团</view>
  168. </navigator>
  169. </view>
  170. <home></home>
  171. </view>
  172. </template>
  173. <script>
  174. import { orderDetail ,payingInfo} from '@/api/order.js';
  175. export default {
  176. filters: {
  177. orderType: function(item) {
  178. if (item.combination_id > 0) {
  179. return '拼团订单';
  180. } else if (item.seckill_id > 0) {
  181. return '秒杀订单';
  182. } else if (item.bargain_id > 0) {
  183. return '砍价订单';
  184. } else {
  185. return '普通订单';
  186. }
  187. }
  188. },
  189. data() {
  190. return {
  191. type: 0,
  192. refund: '', //退款理由
  193. reason: '', //备注
  194. value: ['1', '2', '3', '4', '5', '6', '7', '8', 9, 10, 11, 12, 13],
  195. orderId: '',
  196. item: {
  197. _status: {}
  198. },
  199. status:[],
  200. vipMoney: 0, //vip优惠金额
  201. addressImg:
  202. 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAu4AAAAFCAYAAAAaAWmiAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Rjk3RjkzMjM2NzMxMTFFOUI4RkU4OEZGMDcxQzgzOEYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Rjk3RjkzMjQ2NzMxMTFFOUI4RkU4OEZGMDcxQzgzOEYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGOTdGOTMyMTY3MzExMUU5QjhGRTg4RkYwNzFDODM4RiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGOTdGOTMyMjY3MzExMUU5QjhGRTg4RkYwNzFDODM4RiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PrEOZlQAAAiuSURBVHjazJp7bFvV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'
  203. };
  204. },
  205. // #ifdef APP-PLUS || H5
  206. onBackPress(e){
  207. if(this.type == 1) {
  208. console.log('this.item._status._type',this.item._status._type);
  209. try{
  210. uni.navigateTo({
  211. url: '/pages/order/dfOrder?state='+(this.item._status._type > 0 ? 1: 0)
  212. });
  213. }catch(e){
  214. console.log(e,'err');
  215. //TODO handle the exception
  216. }
  217. }else {
  218. uni.navigateTo({
  219. url: '/pages/order/order?state='+this.item._status._type
  220. });
  221. }
  222. return true;
  223. },
  224. // #endif
  225. onLoad(option) {
  226. this.orderId = option.id;
  227. this.type = option.type
  228. this.loadOrder();
  229. },
  230. computed: {
  231. payAllMoney() {
  232. return this.vipMoney + +this.item.total_price;
  233. }
  234. },
  235. methods: {
  236. showQm(id) {
  237. uni.navigateTo({
  238. url:'/pages/order/hxqm?id=' + id + '&type=1'
  239. })
  240. },
  241. // 跳转到查询快递页面
  242. expressCheck(item) {
  243. uni.navigateTo({
  244. url: '/pages/order/expressInfo?id=' + item.id
  245. });
  246. },
  247. // 载入订单详细
  248. loadOrder() {
  249. let obj = this;
  250. if(obj.type == 1) {
  251. payingInfo({
  252. uni:obj.orderId
  253. }).then(e => {
  254. obj.item = e.data;
  255. obj.item.cartInfo.forEach(e => {
  256. // 计算vip优惠金额
  257. obj.vipMoney += e.vip_truePrice;
  258. });
  259. this.status = e.data._status;
  260. console.log(e);
  261. })
  262. }else {
  263. orderDetail({}, obj.orderId).then(e => {
  264. obj.item = e.data;
  265. obj.item.cartInfo.forEach(e => {
  266. // 计算vip优惠金额
  267. obj.vipMoney += e.vip_truePrice;
  268. });
  269. this.status = e.data._status;
  270. console.log(e);
  271. });
  272. }
  273. },
  274. // 查看快递单号
  275. towuliu(item){
  276. let delivery_id = item.delivery_id;
  277. window.location.href = "https://m.kuaidi100.com/result.jsp?nu="+ delivery_id
  278. },
  279. //跳转到评价页面
  280. evaluate(e){
  281. let unique = e.unique;
  282. let is_reply = e.is_reply;
  283. if(is_reply == 0){
  284. uni.navigateTo({
  285. url: '/pages/order/evaluate?unique=' + unique
  286. });
  287. }else{
  288. uni.showToast({
  289. title: '已评价!',
  290. duration: 1500,
  291. icon:"none"
  292. });
  293. }
  294. },
  295. // 复制订单编号
  296. copyOrderId(text) {
  297. // #ifndef H5
  298. uni.setClipboardData({
  299. data: text,
  300. success: e => {
  301. uni.showToast({
  302. title: '复制成功',
  303. duration: 1500
  304. });
  305. }
  306. });
  307. // #endif
  308. // #ifdef H5
  309. // 获取需要复制的文字
  310. const copyStr = text;
  311. // 创建input标签存放需要复制的文字
  312. const oInput = document.createElement('input');
  313. // 把文字放进input中,供复制
  314. oInput.value = copyStr;
  315. // 添加文
  316. document.body.appendChild(oInput);
  317. // 选中创建的input
  318. oInput.select();
  319. // 执行复制方法, 该方法返回bool类型的结果,告诉我们是否复制成功
  320. const copyResult = document.execCommand('copy');
  321. // 操作中完成后 从Dom中删除创建的input
  322. document.body.removeChild(oInput);
  323. // 根据返回的复制结果 给用户不同的提示
  324. if (copyResult) {
  325. uni.showToast({
  326. title: '已复制到粘贴板',
  327. duration: 2000
  328. });
  329. } else {
  330. this.$api.msg('复制失败');
  331. }
  332. // #endif
  333. }
  334. }
  335. };
  336. </script>
  337. <style lang="scss">
  338. page {
  339. background: $page-color-base;
  340. }
  341. // 快递信息
  342. .express-box {
  343. margin-top: 20rpx;
  344. width: 100%;
  345. display: flex;
  346. align-items: center;
  347. justify-content: space-between;
  348. font-size: $font-base;
  349. font-weight: 500;
  350. .express-frame {
  351. display: flex;
  352. align-items: center;
  353. justify-content: space-between;
  354. width: 100%;
  355. height: 100rpx;
  356. }
  357. .express-text {
  358. font-weight: 600;
  359. margin-right: 20rpx;
  360. width: 140rpx;
  361. display: block;
  362. }
  363. }
  364. // 订单详细
  365. .orderDetialBox {
  366. margin-top: 20rpx;
  367. padding: 0 30rpx;
  368. background-color: #ffffff;
  369. font-size: $font-base;
  370. color: $font-color-base;
  371. .item {
  372. height: 80rpx;
  373. .text {
  374. padding-left: 10rpx;
  375. }
  376. .buttom-right {
  377. width: 180rpx;
  378. border-radius: 99rpx;
  379. padding: 10rpx;
  380. text-align: center;
  381. border: 1px solid $border-color-light;
  382. }
  383. }
  384. }
  385. // 地址信息
  386. .address-box {
  387. margin-top: 20rpx;
  388. padding: 30rpx;
  389. padding-bottom: 35rpx;
  390. background-color: #ffffff;
  391. line-height: 1;
  392. .address-top {
  393. margin-bottom: 30rpx;
  394. .title {
  395. font-size: $font-lg;
  396. color: $font-color-dark;
  397. }
  398. .phone {
  399. font-size: $font-base;
  400. color: $font-color-light;
  401. }
  402. }
  403. .addrdss-detail {
  404. font-size: $font-base;
  405. color: $font-color-base;
  406. }
  407. .a-bg {
  408. position: absolute;
  409. bottom: 0;
  410. left: 0;
  411. width: 100%;
  412. height: 5rpx;
  413. }
  414. }
  415. .row {
  416. display: flex;
  417. align-items: center;
  418. position: relative;
  419. padding: 0 30rpx;
  420. height: 80rpx;
  421. background: #fff;
  422. .order-status {
  423. font-size: $font-lg;
  424. color: $color-red;
  425. font-weight: 500;
  426. }
  427. .refund {
  428. font-size: 30rpx;
  429. color: $font-color-dark;
  430. }
  431. .noRefund {
  432. font-size: 30rpx;
  433. color: $font-color-light;
  434. }
  435. .tit {
  436. flex-shrink: 0;
  437. width: 120rpx;
  438. font-size: 30rpx;
  439. color: $font-color-dark;
  440. }
  441. .input {
  442. text-align: right;
  443. flex: 1;
  444. font-size: 30rpx;
  445. color: $font-color-dark;
  446. &.payColor {
  447. color: $color-red;
  448. }
  449. }
  450. .iconlocation {
  451. font-size: 36rpx;
  452. color: $font-color-light;
  453. }
  454. }
  455. .add-btn {
  456. display: flex;
  457. align-items: center;
  458. justify-content: center;
  459. width: 690rpx;
  460. height: 80rpx;
  461. margin: 60rpx auto;
  462. font-size: $font-lg;
  463. color: #fff;
  464. background-color: $base-color;
  465. border-radius: 10rpx;
  466. // box-shadow: 1px 2px 5px rgba(219, 63, 96, 0.4);
  467. }
  468. /* 多条商品 */
  469. .order-item {
  470. display: flex;
  471. flex-direction: column;
  472. padding-left: 30rpx;
  473. background: #fff;
  474. margin-top: 20rpx;
  475. /* 单条商品 */
  476. .goods-box-single {
  477. display: flex;
  478. padding: 20rpx 0;
  479. .goods-img {
  480. display: block;
  481. width: 120rpx;
  482. height: 120rpx;
  483. }
  484. .right {
  485. flex: 1;
  486. display: flex;
  487. flex-direction: column;
  488. padding: 0 30rpx 0 24rpx;
  489. overflow: hidden;
  490. height: 100%;
  491. .title {
  492. align-self: flex-start;
  493. font-size: $font-base + 2rpx;
  494. color: $font-color-dark;
  495. }
  496. .title-right {
  497. flex-shrink: 0;
  498. text-align: right;
  499. align-self: flex-start;
  500. }
  501. .attr-box {
  502. font-size: $font-sm + 2rpx;
  503. color: $font-color-light;
  504. }
  505. .evaluate{
  506. color:#FFFFFF;
  507. font-size: 24rpx;
  508. display: inline-block;
  509. text-align: right;
  510. text{
  511. background:#FA2740;
  512. padding: 5rpx 15rpx;
  513. }
  514. }
  515. .yesevaluate{
  516. color:#333333;
  517. font-size: 24rpx;
  518. display: inline-block;
  519. text-align: right;
  520. text{
  521. border: 2rpx solid #333333;
  522. padding: 5rpx 15rpx;
  523. }
  524. }
  525. .price {
  526. font-size: $font-base + 2rpx;
  527. color: $font-color-dark;
  528. &:before {
  529. content: '¥';
  530. font-size: $font-sm;
  531. margin: 0 2rpx 0 8rpx;
  532. }
  533. }
  534. }
  535. }
  536. }
  537. // 标题头
  538. .f-header {
  539. display: flex;
  540. align-items: center;
  541. height: 80rpx;
  542. .tit-box {
  543. @extend %font-title-box;
  544. }
  545. .tit {
  546. @extend %font-title;
  547. }
  548. .f-left-icon {
  549. @extend %f-left-icon;
  550. }
  551. }
  552. // 共有底部高度
  553. $btHeight:100rpx;
  554. .btHeight{
  555. height: $btHeight;
  556. }
  557. // 拼团按钮
  558. .group-nav {
  559. position: fixed;
  560. bottom: 0;
  561. left: 0;
  562. height:$btHeight;
  563. width: 100%;
  564. justify-content: flex-end;
  565. padding-right: 30rpx;
  566. .bottom {
  567. }
  568. }
  569. .stores-wrapper {
  570. padding-top: 20rpx;
  571. width: 750rpx;
  572. background-color: #fff;
  573. height: 100%;
  574. }
  575. .store {
  576. width: 710rpx;
  577. // height: 231rpx;
  578. background: #ffffff;
  579. box-shadow: 0px 0px 20rpx 0rpx rgba(50, 50, 52, 0.06);
  580. border-radius: 10rpx;
  581. // margin-bottom: 15rpx;
  582. margin: 0 auto 15rpx;
  583. position: relative;
  584. padding: 25rpx 0 20rpx 20rpx;
  585. .store-logo {
  586. height: 65rpx;
  587. font-size: 32rpx;
  588. font-weight: bold;
  589. color: #333333;
  590. line-height: 65rpx;
  591. // margin-bottom: 20rpx;
  592. position: relative;
  593. image {
  594. width: 65rpx;
  595. height: 65rpx;
  596. border-radius: 50%;
  597. }
  598. .store-name {
  599. max-width: 500rpx;
  600. display: inline-block;
  601. padding-left: 12rpx;
  602. position: absolute;
  603. top: 0;
  604. }
  605. }
  606. .store-base {
  607. height: 37rpx;
  608. line-height: 37rpx;
  609. font-size: 24rpx;
  610. font-weight: bold;
  611. color: #333333;
  612. text {
  613. font-weight: normal;
  614. }
  615. }
  616. .store-lv {
  617. display: inline-block;
  618. // width: 60rpx;
  619. padding: 0 10rpx;
  620. height: 40rpx;
  621. background: linear-gradient(-90deg, #dcb876 0%, #eecd92 100%);
  622. border-radius: 5rpx;
  623. text-align: center;
  624. line-height: 40rpx;
  625. color: #fff;
  626. font-size: 23rpx;
  627. position: absolute;
  628. right: 20rpx;
  629. top: 38rpx;
  630. }
  631. .store-can {
  632. width: 113rpx;
  633. height: 44rpx;
  634. border: 2px solid #901b21;
  635. border-radius: 5rpx;
  636. font-size: 23rpx;
  637. text-align: center;
  638. line-height: 44rpx;
  639. font-weight: 500;
  640. color: #901b21;
  641. position: absolute;
  642. right: 20rpx;
  643. bottom: 25rpx;
  644. }
  645. }
  646. </style>