detail.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733
  1. <!-- 订单详情 -->
  2. <template>
  3. <view class="order-detail-wrap">
  4. <!-- 订单状态 -->
  5. <view class="detail-head" :style="orderDetail.consignee ? '' : 'height:120rpx'">
  6. <view class="state-box u-flex">
  7. <image class="state-img" :src="$IMG_URL + '/imgs/order/order_state1.png'" mode=""></image>
  8. <text>{{ orderDetail.status_desc }}</text>
  9. </view>
  10. </view>
  11. <!-- 收货地址 -->
  12. <view class="address-wrap" v-if="orderDetail.consignee">
  13. <view class="order-address-box">
  14. <view class="u-flex">
  15. <text class="address-username">{{ orderDetail.consignee }}</text>
  16. <text class="address-phone">{{ orderDetail.phone }}</text>
  17. </view>
  18. <view class="address-detail">{{ orderDetail.province_name }}{{ orderDetail.city_name }}{{ orderDetail.area_name }}{{ orderDetail.address }}</view>
  19. </view>
  20. </view>
  21. <view class="detail-goods">
  22. <!-- 订单信息 -->
  23. <view class="order-list" v-for="order in orderDetail.item" :key="order.id">
  24. <view class="order-card" @tap="jump('/pages/goods/detail', { id: order.goods_id })">
  25. <shopro-mini-card :title="order.goods_title" :image="order.goods_image">
  26. <template #describe>
  27. <view class="order-sku u-ellipsis-1">
  28. <text class="order-num">数量:{{ order.goods_num || 0 }};</text>
  29. {{ order.goods_sku_text ? order.goods_sku_text : '' }}
  30. </view>
  31. </template>
  32. <template #cardBottom>
  33. <view class="card-price-box u-flex">
  34. <text class="order-price font-OPPOSANS">¥{{ order.goods_price || 0 }}</text>
  35. <button class="u-reset-button status-btn" v-if="order.status_name">{{ order.status_name }}</button>
  36. </view>
  37. </template>
  38. </shopro-mini-card>
  39. </view>
  40. <!-- 配送方式 -->
  41. <view class="express-type-box u-flex u-row-between">
  42. <view class="u-flex">
  43. <view class="express-type--title">配送:</view>
  44. <view class="express-type--content">{{ expressType[order.dispatch_type] }}</view>
  45. </view>
  46. <!-- 发货详情 -->
  47. <view
  48. class="u-flex express-type--detail"
  49. v-if="order.dispatch_type !== 'express'"
  50. @tap="goDistribution(order.dispatch_type, orderDetail.id, order.id, order.dispatch_status)"
  51. >
  52. <text>详情</text>
  53. <text class="u-iconfont uicon-arrow-right" style="color: #666;"></text>
  54. </view>
  55. </view>
  56. <view class="order-bottom u-flex">
  57. <!-- 退款原因 -->
  58. <view class="refund_msg" v-if="order.refund_msg">
  59. <text class="refund-title">退款原因:</text>
  60. {{ order.refund_msg }}
  61. </view>
  62. <view class="btn-box" v-for="(btn, index) in order.btns" :key="btn">
  63. <button @tap.stop="onConfirm(orderDetail.id, order.id)" class="u-reset-button btn1" :class="{ btn2: index + 1 === order.btns.length }" v-if="btn === 'get'">
  64. 确认收货
  65. </button>
  66. <button
  67. @tap.stop="onComment(orderDetail.id, order.id)"
  68. class="u-reset-button btn1"
  69. :class="{ btn2: index + 1 === order.btns.length }"
  70. v-if="btn === 'comment'"
  71. >
  72. 去评价
  73. </button>
  74. <button
  75. @tap.stop="jump('/pages/goods/detail', { id: order.goods_id })"
  76. class="u-reset-button btn1"
  77. :class="{ btn2: index + 1 === order.btns.length }"
  78. v-if="btn === 'buy_again'"
  79. >
  80. 再次购买
  81. </button>
  82. <button
  83. @tap="onAftersaleDetail(order.ext_arr.aftersale_id)"
  84. class="u-reset-button btn1"
  85. :class="{ btn2: index + 1 === order.btns.length }"
  86. v-if="btn === 'aftersale_info'"
  87. >
  88. 售后详情
  89. </button>
  90. <button
  91. @tap.stop="onAftersale(orderDetail.id, order.id)"
  92. class="u-reset-button btn1"
  93. :class="{ btn2: index + 1 === order.btns.length }"
  94. v-if="btn === 'aftersale'"
  95. >
  96. 申请售后
  97. </button>
  98. <button
  99. @tap.stop="onAftersale(orderDetail.id, order.id)"
  100. class="u-reset-button btn1"
  101. :class="{ btn2: index + 1 === order.btns.length }"
  102. v-if="btn === 're_aftersale'"
  103. >
  104. 重新售后
  105. </button>
  106. </view>
  107. </view>
  108. </view>
  109. </view>
  110. <!-- 订单信息 -->
  111. <view class="notice-box" v-if="orderDetail.id">
  112. <view class="notice-box__content">
  113. <view class="notice-item--center u-flex">
  114. <text class="title">订单编号:</text>
  115. <text class="detail">{{ orderDetail.order_sn }}</text>
  116. <button class="u-reset-button copy-btn" @tap="onCopy(orderDetail.order_sn)">复制</button>
  117. </view>
  118. <view class="notice-item u-flex">
  119. <text class="title">下单时间:</text>
  120. <text class="detail">{{ orderDetail.createtime }}</text>
  121. </view>
  122. <view class="notice-item u-flex" v-if="orderDetail.status > 0">
  123. <text class="title">支付方式:</text>
  124. <text class="detail">{{ payType[orderDetail.pay_type] }}</text>
  125. </view>
  126. <view class="notice-item u-flex" v-if="orderDetail.status > 0">
  127. <text class="title">支付时间:</text>
  128. <text class="detail">{{ orderDetail.paytime }}</text>
  129. </view>
  130. </view>
  131. </view>
  132. <!-- 价格信息 -->
  133. <view class="order-price-box u-m-b-20" v-if="orderDetail.id">
  134. <view class="notice-item u-flex u-row-between">
  135. <text class="title">商品总额</text>
  136. <text class="detail font-OPPOSANS">¥{{ orderDetail.goods_amount }}</text>
  137. </view>
  138. <view class="notice-item u-flex u-row-between">
  139. <text class="title">运费</text>
  140. <text class="detail font-OPPOSANS">¥{{ orderDetail.dispatch_amount }}</text>
  141. </view>
  142. <view class="notice-item u-flex u-row-between">
  143. <text class="title">优惠金额</text>
  144. <text class="detail font-OPPOSANS">-¥{{ orderDetail.discount_fee }}</text>
  145. </view>
  146. <view class="notice-item u-flex u-row-between" v-if="orderDetail.score_fee">
  147. <text class="title">积分</text>
  148. <text class="detail font-OPPOSANS">-{{ orderDetail.score_fee }}积分</text>
  149. </view>
  150. <view class="notice-item all-rpice-item u-flex" style="width: 100%;">
  151. <text class="title">{{ orderDetail.status <= 0 ? '需付款' : '实付款' }}:</text>
  152. <text class="detail all-price font-OPPOSANS">¥{{ orderDetail.total_fee }}</text>
  153. </view>
  154. </view>
  155. <!-- 底部按钮 -->
  156. <view class="foot-wrap safe-area-inset-bottom">
  157. <view class="foot_box safe-area-inset-bottom">
  158. <view class="money-box u-flex ">
  159. <text class="money-title">共{{ allNum || '0' }}件商品 合计:</text>
  160. <text class="all-price font-OPPOSANS">¥{{ orderDetail.total_fee || '0.00' }}</text>
  161. </view>
  162. <view class="btn-box u-flex">
  163. <view class="" v-for="btn in orderDetail.btns" :key="btn">
  164. <button v-if="btn === 'cancel'" @tap.stop="onCancel(orderDetail.id)" class="u-reset-button obtn1">取消订单</button>
  165. <button v-if="btn === 'pay'" @tap.stop="onPay(orderDetail.id)" class="u-reset-button obtn2">付款</button>
  166. <button v-if="btn === 'groupon'" @tap.stop="jump('/pages/activity/groupon/detail', { id: orderDetail.ext_arr.groupon_id })" class="u-reset-button obtn2">
  167. 拼团详情
  168. </button>
  169. <button v-if="btn === 'delete'" @tap.stop="onDelete(orderDetail.id)" class="u-reset-button delete-btn">删除</button>
  170. <button v-if="btn === 'express'" @tap.stop="onExpress(orderDetail.id)" class="u-reset-button obtn1">查看物流</button>
  171. </view>
  172. </view>
  173. </view>
  174. </view>
  175. </view>
  176. </template>
  177. <script>
  178. export default {
  179. components: {},
  180. data() {
  181. return {
  182. time: 0,
  183. orderDetail: {},
  184. orderStatus: {
  185. '-2': '已关闭',
  186. '-1': '已取消',
  187. '0': '未付款',
  188. '1': '已付款',
  189. '2': '已完成'
  190. },
  191. payType: {
  192. wallet: '余额支付',
  193. wechat: '微信支付',
  194. alipay: '支付宝支付',
  195. iospay: 'ApplePay'
  196. },
  197. expressType: {
  198. express: '物流快递',
  199. selfetch: '到店/自提',
  200. store: '商家配送',
  201. autosend: '自动发货'
  202. }
  203. };
  204. },
  205. onShow() {
  206. this.getOrderDetail();
  207. },
  208. onLoad() {},
  209. computed: {
  210. allNum() {
  211. if (this.orderDetail.item) {
  212. let items = this.orderDetail.item;
  213. let allPrice = 0;
  214. items.forEach(p => {
  215. allPrice += p.goods_num;
  216. });
  217. return allPrice;
  218. }
  219. }
  220. },
  221. methods: {
  222. jump(path, parmas) {
  223. this.$Router.push({
  224. path: path,
  225. query: parmas
  226. });
  227. },
  228. // 详情发货信息
  229. goDistribution(dispatchType, orderId, orderItemId) {
  230. this.jump('/pages/order/express/distribution-detail', { expressType: dispatchType, orderId: orderId, orderItemId: orderItemId });
  231. },
  232. // 订单详情
  233. getOrderDetail() {
  234. let that = this;
  235. that.$http('order.detail', {
  236. id: that.$Route.query.id
  237. }).then(res => {
  238. if (res.code === 1) {
  239. that.orderDetail = res.data;
  240. that.orderDetail.createtime = that.$u.timeFormat(res.data.createtime, 'yyyy-mm-dd hh:MM');
  241. that.orderDetail.paytime = that.$u.timeFormat(res.data.paytime, 'yyyy-mm-dd hh:MM');
  242. }
  243. });
  244. },
  245. // 复制
  246. onCopy(code) {
  247. let that = this;
  248. uni.setClipboardData({
  249. data: code,
  250. success: function(data) {
  251. that.$u.toast('已复制到剪切板');
  252. }
  253. });
  254. },
  255. // 确认收货
  256. onConfirm(id, itemId) {
  257. let that = this;
  258. that.$http(
  259. 'order.confirm',
  260. {
  261. id: id,
  262. order_item_id: itemId
  263. },
  264. '确认中...'
  265. ).then(res => {
  266. if (res.code === 1) {
  267. that.getOrderDetail();
  268. }
  269. });
  270. },
  271. // 申请售后
  272. onAftersale(orderId, orderItemId) {
  273. this.$Router.push({
  274. path: '/pages/order/after-sale/refund',
  275. query: { orderId: orderId, orderItemId: orderItemId }
  276. });
  277. },
  278. // 售后详情
  279. onAftersaleDetail(id) {
  280. this.jump('/pages/order/after-sale/detail', { aftersaleId: id });
  281. },
  282. // 取消订单
  283. onCancel(id) {
  284. let that = this;
  285. that.$http(
  286. 'order.cancel',
  287. {
  288. id: id
  289. },
  290. '取消中...'
  291. ).then(res => {
  292. if (res.code === 1) {
  293. that.$Router.back();
  294. }
  295. });
  296. },
  297. // 立即购买
  298. onPay(id) {
  299. uni.navigateTo({
  300. url: `/pages/order/payment/method?orderId=${id}`
  301. });
  302. },
  303. // 删除订单
  304. onDelete(orderId) {
  305. let that = this;
  306. uni.showModal({
  307. title: '删除订单',
  308. content: '确定要删除这个订单么?',
  309. cancelText: '取消',
  310. confirmText: '删除',
  311. success: res => {
  312. if (res.confirm) {
  313. that.$http('order.deleteOrder', {
  314. id: orderId
  315. }).then(res => {
  316. if (res.code === 1) {
  317. that.$Router.back();
  318. }
  319. });
  320. }
  321. }
  322. });
  323. },
  324. // 待评价
  325. onComment(orderId, orderItemId) {
  326. this.jump('/pages/goods/comment/add-comment', { orderId: orderId, orderItemId: orderItemId });
  327. },
  328. // 查看物流
  329. onExpress(orderId, orderItemId) {
  330. let that = this;
  331. that.$http('order.expressList', {
  332. order_id: orderId
  333. }).then(res => {
  334. if (res.code === 1) {
  335. if (res.data.length == 1) {
  336. this.jump('/pages/order/express/express-detail', { orderId: orderId, expressId: res.data[0].id });
  337. } else if (res.data.length > 1) {
  338. this.jump('/pages/order/express/express-list', { orderId: orderId });
  339. } else {
  340. this.$u.toast('暂无包裹~');
  341. }
  342. }
  343. });
  344. }
  345. }
  346. };
  347. </script>
  348. <style lang="scss">
  349. .detail-head {
  350. background: linear-gradient(0deg, rgba(239, 196, 128, 1) 0%, rgba(248, 220, 165, 1) 100%) no-repeat;
  351. background-size: 100% 180rpx;
  352. height: 180rpx;
  353. .state-box {
  354. padding: 30rpx 40rpx;
  355. color: rgba(#fff, 0.9);
  356. .state-img {
  357. width: 60rpx;
  358. height: 60rpx;
  359. // background: #ccc;
  360. margin-right: 40rpx;
  361. }
  362. }
  363. }
  364. // 收货地址
  365. .address-wrap {
  366. position: relative;
  367. background-color: #fff;
  368. min-height: 160rpx;
  369. width: 100%;
  370. margin-bottom: 20rpx;
  371. }
  372. .order-address-box {
  373. width: 710rpx;
  374. left: 50%;
  375. transform: translateX(-50%);
  376. top: -50rpx;
  377. background-color: #fff;
  378. min-height: 160rpx;
  379. border-radius: 20rpx;
  380. padding: 20rpx;
  381. font-size: 30rpx;
  382. font-weight: 500;
  383. color: rgba(51, 51, 51, 1);
  384. position: absolute;
  385. .address-username {
  386. margin-right: 20rpx;
  387. }
  388. .address-detail {
  389. font-size: 26rpx;
  390. font-weight: 500;
  391. color: rgba(153, 153, 153, 1);
  392. margin-top: 20rpx;
  393. }
  394. }
  395. .detail-goods {
  396. margin-bottom: 20rpx;
  397. .order-list {
  398. margin-bottom: 20rpx;
  399. background-color: #fff;
  400. padding: 0 20rpx;
  401. .order-card {
  402. padding: 20rpx 0;
  403. .order-sku {
  404. font-size: 24rpx;
  405. font-weight: 400;
  406. color: rgba(153, 153, 153, 1);
  407. width: 450rpx;
  408. margin-bottom: 20rpx;
  409. .order-num {
  410. margin-right: 10rpx;
  411. }
  412. }
  413. .card-price-box {
  414. .status-btn {
  415. height: 32rpx;
  416. border: 1rpx solid rgba(207, 169, 114, 1);
  417. border-radius: 15rpx;
  418. font-size: 20rpx;
  419. font-weight: 400;
  420. color: rgba(168, 112, 13, 1);
  421. padding: 0 10rpx;
  422. margin-left: 20rpx;
  423. background: rgba(233, 183, 102, 0.16);
  424. }
  425. .order-price {
  426. font-size: 26rpx;
  427. font-weight: 600;
  428. color: rgba(51, 51, 51, 1);
  429. }
  430. }
  431. }
  432. // 配送方式
  433. .express-type-box {
  434. width: 710rpx;
  435. height: 90rpx;
  436. background: rgba(247, 247, 247, 1);
  437. border-radius: 10rpx;
  438. padding: 0 20rpx;
  439. .express-type--title {
  440. font-size: 28rpx;
  441. font-weight: 400;
  442. color: rgba(153, 153, 153, 1);
  443. }
  444. .express-type--content {
  445. font-size: 26rpx;
  446. font-weight: 500;
  447. color: rgba(51, 51, 51, 1);
  448. }
  449. .express-type--detail {
  450. font-size: 24rpx;
  451. font-weight: 400;
  452. color: rgba(153, 153, 153, 1);
  453. line-height: 30rpx;
  454. }
  455. }
  456. .refund_msg {
  457. font-size: 28rpx;
  458. color: #999;
  459. flex: 1;
  460. text-align: left;
  461. }
  462. .order-bottom {
  463. background: #fff;
  464. justify-content: flex-end;
  465. padding: 20rpx 0;
  466. .btn1 {
  467. width: 160rpx;
  468. line-height: 60rpx;
  469. border: 1rpx solid rgba(223, 223, 223, 1);
  470. border-radius: 30rpx;
  471. font-size: 26rpx;
  472. background: #fff;
  473. padding: 0;
  474. margin-right: 20rpx;
  475. }
  476. .btn2 {
  477. width: 160rpx;
  478. line-height: 60rpx;
  479. border: 1rpx solid rgba(213, 166, 90, 1) !important;
  480. border-radius: 30rpx;
  481. font-size: 26rpx;
  482. color: #d5a65a !important;
  483. padding: 0;
  484. background: #fff;
  485. margin-right: 20rpx;
  486. }
  487. }
  488. }
  489. }
  490. // 拼团项目
  491. .group-box {
  492. background: #fff;
  493. padding: 40rpx 0;
  494. height: 250rpx;
  495. margin-bottom: 20rpx;
  496. .tip-box {
  497. font-size: 28rpx;
  498. }
  499. .title-box {
  500. font-size: 26rpx;
  501. font-weight: bold;
  502. color: #333;
  503. .group-num {
  504. color: #f8002c;
  505. }
  506. .count-down-tip {
  507. font-size: 24rpx;
  508. padding-left: 10rpx;
  509. }
  510. .time-box {
  511. font-size: 18rpx;
  512. .count-text {
  513. display: inline-block;
  514. background-color: #383a46;
  515. color: #fff;
  516. font-size: 18rpx;
  517. border-radius: 2rpx;
  518. padding: 0 5rpx;
  519. height: 28rpx;
  520. text-align: center;
  521. line-height: 28rpx;
  522. margin: 0 6rpx;
  523. }
  524. }
  525. }
  526. .group-people {
  527. .img-box {
  528. position: relative;
  529. margin-right: 20rpx;
  530. .tag {
  531. position: absolute;
  532. line-height: 36rpx;
  533. background: linear-gradient(132deg, rgba(243, 223, 177, 1), rgba(243, 223, 177, 1), rgba(236, 190, 96, 1));
  534. border-radius: 18rpx;
  535. padding: 0 10rpx;
  536. white-space: nowrap;
  537. font-size: 24rpx;
  538. color: #784f06;
  539. z-index: 2;
  540. top: -10rpx;
  541. }
  542. .avatar {
  543. width: 80rpx;
  544. height: 80rpx;
  545. border-radius: 50%;
  546. background: #ccc;
  547. }
  548. }
  549. }
  550. }
  551. // 收货信息、订单信息。
  552. .notice-box {
  553. background: #fff;
  554. margin-bottom: 20rpx;
  555. .notice-box__head {
  556. font-size: 30rpx;
  557. font-weight: 500;
  558. color: rgba(51, 51, 51, 1);
  559. line-height: 80rpx;
  560. border-bottom: 1rpx solid #dfdfdf;
  561. padding: 0 25rpx;
  562. }
  563. .notice-box__content {
  564. padding: 25rpx;
  565. .self-pickup-box {
  566. width: 100%;
  567. .self-pickup--img {
  568. width: 200rpx;
  569. height: 200rpx;
  570. margin: 40rpx 0;
  571. }
  572. }
  573. }
  574. .notice-item--center {
  575. margin-bottom: 10rpx;
  576. }
  577. .notice-item,
  578. .notice-item--center {
  579. height: 50rpx;
  580. align-items: flex-start;
  581. .title {
  582. font-size: 28rpx;
  583. color: #999;
  584. text-align: justify;
  585. text-align-last: justify;
  586. text-justify: distribute-all-lines;
  587. width: 140rpx;
  588. }
  589. .detail {
  590. font-size: 28rpx;
  591. color: #333;
  592. flex: 1;
  593. }
  594. .copy-btn {
  595. width: 100rpx;
  596. line-height: 50rpx;
  597. border-radius: 25rpx;
  598. padding: 0;
  599. background: rgba(238, 238, 238, 1);
  600. font-size: 22rpx;
  601. font-weight: 400;
  602. color: rgba(51, 51, 51, 1);
  603. margin-left: 30rpx;
  604. }
  605. }
  606. .notice-item--center {
  607. align-items: center;
  608. }
  609. }
  610. // 订单价格信息
  611. .order-price-box {
  612. background-color: #fff;
  613. padding: 20rpx;
  614. margin-bottom: 20rpx;
  615. .notice-item {
  616. height: 50rpx;
  617. .title {
  618. font-size: 28rpx;
  619. color: #999;
  620. }
  621. .detail {
  622. font-size: 28rpx;
  623. color: #333;
  624. }
  625. }
  626. .all-rpice-item {
  627. justify-content: flex-end;
  628. .all-price {
  629. font-size: 26rpx;
  630. color: #ff0000;
  631. }
  632. }
  633. }
  634. .foot-wrap {
  635. width: 750rpx;
  636. height: 140rpx;
  637. }
  638. .foot_box {
  639. width: 750rpx;
  640. min-height: 100rpx;
  641. background: rgba(255, 255, 255, 1);
  642. border: 1rpx solid rgba(238, 238, 238, 1);
  643. display: flex;
  644. flex-direction: column;
  645. align-items: flex-end;
  646. justify-content: center;
  647. position: fixed;
  648. bottom: 0;
  649. left: 0;
  650. .money-box {
  651. height: 60rpx;
  652. padding: 0 20rpx;
  653. .money-title {
  654. font-size: 26rpx;
  655. color: #999999;
  656. }
  657. .all-price {
  658. color: #333;
  659. font-size: 26rpx;
  660. }
  661. }
  662. .btn-box {
  663. justify-content: flex-end;
  664. margin-bottom: 20rpx;
  665. .delete-btn {
  666. background: #ffeeee;
  667. color: #e50808;
  668. width: 160rpx;
  669. line-height: 60rpx;
  670. border-radius: 30rpx;
  671. font-size: 26rpx;
  672. font-weight: 400;
  673. margin-right: 20rpx;
  674. padding: 0;
  675. }
  676. .obtn1 {
  677. width: 160rpx;
  678. line-height: 60rpx;
  679. background: rgba(238, 238, 238, 1);
  680. border-radius: 30rpx;
  681. font-size: 26rpx;
  682. font-weight: 400;
  683. color: rgba(51, 51, 51, 1);
  684. margin-right: 20rpx;
  685. padding: 0;
  686. }
  687. .obtn2 {
  688. width: 160rpx;
  689. line-height: 60rpx;
  690. background: linear-gradient(90deg, rgba(233, 180, 97, 1), rgba(238, 204, 137, 1));
  691. box-shadow: 0px 7rpx 6rpx 0px rgba(229, 138, 0, 0.22);
  692. border-radius: 30rpx;
  693. margin-right: 20rpx;
  694. font-size: 26rpx;
  695. font-weight: 400;
  696. color: #fff;
  697. padding: 0;
  698. }
  699. }
  700. }
  701. </style>