index.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798
  1. <template>
  2. <view>
  3. <nav-bar title="我的订单"></nav-bar>
  4. <view
  5. style="
  6. width: 100%;
  7. text-align: center;
  8. position: fixed;
  9. height: 96rpx;
  10. z-index: 999;
  11. "
  12. >
  13. <u-tabs
  14. :list="list"
  15. sticky
  16. :current="current"
  17. @change="change"
  18. active-color="#007AFF"
  19. :offset="[-1, 0]"
  20. ></u-tabs>
  21. </view>
  22. <view style="padding: 96rpx 8rpx 130rpx">
  23. <view v-if="!order.length" class="noData">您暂无相关订单哦~</view>
  24. <template v-else>
  25. <view v-for="(item, index) in order" :key="index" class="lisChild">
  26. <view class="item">
  27. <view class="header" @click="openPopup(index)">
  28. <view>订单编号:{{ item.orderSn }}</view>
  29. <view>{{ $method.timestampToTime(item.createTime) }}</view>
  30. </view>
  31. <u-line color="#D6D6DB" />
  32. <view v-if="current == 3">
  33. <view class="body">
  34. <view class="body__content">
  35. <image
  36. class="goods-img"
  37. :src="$method.splitImgHost(item.coverUrl)"
  38. ></image>
  39. <view class="goods-text">
  40. <view class="goods-name">{{ item.goodsName }}</view>
  41. <!-- <view class="goods-price">¥ {{ items.goodsRealPrice }}</view> -->
  42. </view>
  43. </view>
  44. </view>
  45. </view>
  46. <view v-else>
  47. <view
  48. class="body"
  49. v-for="(items, indexs) in item.orderGoodsList"
  50. :key="indexs"
  51. @click="goCourse(items, item.orderStatus)"
  52. >
  53. <view class="body__content">
  54. <image
  55. class="goods-img"
  56. :src="$method.splitImgHost(items.coverUrl)"
  57. ></image>
  58. <view class="goods-text">
  59. <view class="goods-name">{{ items.goodsName }}</view>
  60. <view class="goods-name" v-if="items.sevenYear">{{
  61. items.sevenYear
  62. }}</view>
  63. <view v-if="item.orderFrom !== 6" class="goods-price"
  64. >¥ {{ items.goodsRealPrice }}</view
  65. >
  66. </view>
  67. </view>
  68. <view
  69. style="
  70. display: flex;
  71. flex-direction: row-reverse;
  72. padding: 10rpx 0;
  73. "
  74. >
  75. <view
  76. v-if="
  77. items.refundStatus === 0 &&
  78. (item.orderFrom === 2 || item.orderFrom === 3) &&
  79. (item.orderStatus === 1 ||
  80. item.orderStatus === 2 ||
  81. item.orderStatus === 3) &&
  82. (items.goodsType == '1' ||
  83. items.goodsType == '2' ||
  84. items.goodsType == '6') &&
  85. items.goodsPrice > 0
  86. "
  87. class="btn2"
  88. @click.stop="handelRefund(item.orderSn, items.goodsId)"
  89. >申请退款</view
  90. >
  91. <!-- <view v-if="items.refundStatus == 2"> 已退款</view> -->
  92. <view v-if="items.periodStatus !== null">{{
  93. [
  94. "复审不通过",
  95. "初审不通过",
  96. "待审核",
  97. "初审通过",
  98. "复审通过待退款",
  99. "已退款",
  100. ][items.periodStatus + 2]
  101. }}</view>
  102. </view>
  103. </view>
  104. </view>
  105. <u-line color="#D6D6DB" />
  106. <view class="footer" v-if="current == 3">
  107. <view>
  108. <text style="color: #999; font-size: 24rpx; margin-right: 8rpx"
  109. >退款金额</text
  110. >
  111. <text
  112. style="color: #ff2d55; font-size: 30rpx; font-weight: bold"
  113. >¥{{ item.refundFee }}</text
  114. >
  115. </view>
  116. </view>
  117. <view class="footer" v-else>
  118. <view>
  119. <text style="color: #999; font-size: 24rpx; margin-right: 8rpx"
  120. >共{{ item.orderGoodsList.length }}项</text
  121. >
  122. <!-- 业务系统下单的需要隐藏价格 -->
  123. <!-- 订单来源:1业务员普通单,2祥粤云学堂小程序,3祥粤云学堂网站,4祥粤e管证小程序,5业务员录单,6业务系统下单 -->
  124. <text v-if="item.orderFrom !== 6">
  125. <text style="color: #333; font-size: 30rpx; font-weight: bold"
  126. >合计</text
  127. >
  128. <text
  129. style="color: #ff2d55; font-size: 30rpx; font-weight: bold"
  130. >¥{{ item.payPrice }}</text
  131. >
  132. </text>
  133. </view>
  134. <view style="display: flex; align-items: center">
  135. <view
  136. class="btn2"
  137. v-if="
  138. item.orderStatus === 0 &&
  139. (item.orderFrom === 2 || item.orderFrom === 3)
  140. "
  141. @click="resumeOrder(item)"
  142. >继续支付</view
  143. >
  144. <!-- <view class="btn2" v-if="item.orderStatus === -1 || item.orderStatus === -2" @click="againBuy(item)">重新购买</view> -->
  145. <view
  146. class="btn1"
  147. v-if="
  148. (item.orderStatus === -1 || item.orderStatus === -2) &&
  149. (item.orderFrom === 2 || item.orderFrom === 3)
  150. "
  151. @click="delOrder(item)"
  152. >删除订单</view
  153. >
  154. <view
  155. class="btn1"
  156. @click="closeOrder(item)"
  157. v-if="
  158. item.orderStatus === 0 &&
  159. (item.orderFrom === 2 || item.orderFrom === 3)
  160. "
  161. >取消订单</view
  162. >
  163. </view>
  164. </view>
  165. </view>
  166. </view>
  167. </template>
  168. <template v-if="current == 1 && order.length">
  169. <view class="apply_btn">
  170. <view class="apply-invoice" @click="goInvoice">发票申请</view>
  171. </view>
  172. </template>
  173. </view>
  174. <!-- 退款弹窗 -->
  175. <u-popup
  176. v-model="show"
  177. :mask-close-able="false"
  178. closeable
  179. mode="center"
  180. width="80%"
  181. border-radius="24"
  182. >
  183. <view class="rf-popup-main">
  184. <view class="title">提示</view>
  185. <view class="tip">确认要退款吗</view>
  186. <u-input
  187. v-model="refundForm.applyReason"
  188. placeholder-style="color:#999999"
  189. type="textarea"
  190. placeholder="请输入退款原因"
  191. />
  192. <u-button type="primary" style="border-radius: 60rpx" @click="refund"
  193. >确定</u-button
  194. >
  195. </view>
  196. </u-popup>
  197. </view>
  198. </template>
  199. <script>
  200. import { mapGetters } from "vuex";
  201. export default {
  202. components: {},
  203. data() {
  204. return {
  205. list: [
  206. {
  207. name: "待支付",
  208. count: 0,
  209. },
  210. {
  211. name: "已支付",
  212. count: 0,
  213. },
  214. {
  215. name: "已取消",
  216. count: 0,
  217. },
  218. {
  219. name: "已退款",
  220. count: 0,
  221. },
  222. ],
  223. current: 0,
  224. order: [],
  225. formData: {
  226. status: "0,1",
  227. pageNum: 1,
  228. pageSize: 10,
  229. },
  230. pageNum1: 0,
  231. pageNum2: 0,
  232. pageNum3: 0,
  233. pageNum4: 0,
  234. refundForm: {},
  235. show: false,
  236. value: "",
  237. };
  238. },
  239. // onPullDownRefresh() {},
  240. onLoad(option) {
  241. this.current = +option.current || 0;
  242. this.getOrderList();
  243. this.getOrderNum();
  244. },
  245. onShow() {
  246. /* if(this.current === 2 && this.$method.isLogin()){
  247. this.$refs.refMy.init();
  248. } */
  249. },
  250. //分享功能
  251. onShareAppMessage(res) {
  252. var self = this;
  253. return {
  254. title: "中正",
  255. path:
  256. `/pages/index/index?inviteCode=` + userInfo == null
  257. ? ""
  258. : userInfo.userAccount,
  259. };
  260. },
  261. onReachBottom() {
  262. this.formData.pageNum++;
  263. this.getFY();
  264. },
  265. methods: {
  266. getOrderNum() {
  267. this.$api
  268. .getorderlists({
  269. status: "0,1",
  270. pageNum: 1,
  271. pageSize: 1,
  272. orderStatus: "0",
  273. })
  274. .then((res) => {
  275. if (res.data.code === 200) {
  276. this.list[0].count = res.data.total;
  277. }
  278. });
  279. this.$api
  280. .getorderlists({
  281. status: "0,1",
  282. pageNum: 1,
  283. pageSize: 1,
  284. orderStatus: "1,2,3,4",
  285. })
  286. .then((res) => {
  287. if (res.data.code === 200) {
  288. this.list[1].count = res.data.total;
  289. }
  290. });
  291. this.$api
  292. .getorderlists({
  293. status: "0,1",
  294. pageNum: 1,
  295. pageSize: 1,
  296. orderStatus: "-1,-2",
  297. })
  298. .then((res) => {
  299. if (res.data.code === 200) {
  300. this.list[2].count = res.data.total;
  301. }
  302. });
  303. },
  304. /**
  305. * 跳转发票申请页面
  306. */
  307. goInvoice() {
  308. uni.navigateTo({
  309. url: `/pages2/invoice/index`,
  310. });
  311. },
  312. confirm() {},
  313. handelRefund(orderSn, goodsId) {
  314. this.refundForm = { orderSn: orderSn, goodsId: goodsId, applyReason: "" };
  315. this.show = true;
  316. },
  317. refund() {
  318. this.$api.refundSmallOrder(this.refundForm).then((res) => {
  319. this.show = false;
  320. if (res.data.code == 200) {
  321. this.$method.showToast(res.data.msg);
  322. this.getOrderList();
  323. } else {
  324. uni.showToast({
  325. icon: "none",
  326. title: res.data.msg,
  327. });
  328. }
  329. });
  330. },
  331. /**
  332. * 跳转课程
  333. */
  334. goCourse(item, orderStatus) {
  335. // if(orderStatus == 1 || orderStatus == 2) {
  336. // console.log(item)
  337. // if(item.goodsType == 1) { //网课
  338. // uni.navigateTo({
  339. // url:'/pages2/wd/course?gid='+item.gradeId+'&id='+item.goodsId
  340. // })
  341. // } else if(item.goodsType == 2) { //题库
  342. // uni.navigateTo({
  343. // url:'/pages2/bank/question_detail?id='+item.goodsId
  344. // })
  345. // }
  346. // }
  347. },
  348. resumeOrder(item) {
  349. let self = this;
  350. // #ifdef MP-WEIXIN
  351. uni.login({
  352. provider: "weixin",
  353. success: function (loginRes) {
  354. console.log(loginRes, 69);
  355. self.getOpenid(loginRes.code, item);
  356. },
  357. });
  358. // #endif
  359. // #ifdef H5
  360. // 在首页已经请求过接口/gzh_login 提交code了
  361. this.resumeOrderPay(item);
  362. // #endif
  363. },
  364. getOpenid(code, item) {
  365. let self = this;
  366. this.$api.wxOpenid({ code: code }).then((res) => {
  367. if (res.data.code == 200) {
  368. self.resumeOrderPay(item);
  369. }
  370. });
  371. },
  372. resumeOrderPay(item) {
  373. let data = { orderSn: item.orderSn };
  374. // #ifdef MP-WEIXIN
  375. this.$api.resumeSmallOrder(data).then((res) => {
  376. if (res.data.code == 200) {
  377. let data = res.data.data;
  378. uni.requestPayment({
  379. provider: data.provider,
  380. nonceStr: data.nonceStr,
  381. package: data.package,
  382. signType: data.signType,
  383. paySign: data.sign,
  384. timeStamp: String(data.timeStamp),
  385. success: function (res) {
  386. uni.redirectTo({
  387. url: "/pages2/order/confirm_success?sn=" + data.orderSn,
  388. });
  389. console.log("success:" + JSON.stringify(res));
  390. },
  391. fail: function (err) {
  392. console.log("fail:" + JSON.stringify(err));
  393. },
  394. });
  395. } else {
  396. uni.showModal({
  397. title: "提示",
  398. content: res.data.msg,
  399. showCancel: false,
  400. });
  401. }
  402. });
  403. // #endif
  404. // #ifdef H5
  405. data["url"] = location.href;
  406. this.$api.resumePlaceGzhOrder(data).then((res) => {
  407. console.log(res, "继续支付res");
  408. if (res.data.code == 200) {
  409. this.h5_wxpay(res.data.data);
  410. } else {
  411. uni.showModal({
  412. title: "提示",
  413. content: res.data.msg,
  414. showCancel: false,
  415. });
  416. }
  417. });
  418. // #endif
  419. },
  420. h5_wxpay(data) {
  421. console.log("调起支付状态1", data);
  422. let self = this;
  423. function onBridgeReady() {
  424. // 加载框
  425. WeixinJSBridge.invoke(
  426. "getBrandWCPayRequest",
  427. {
  428. appId: data.appId, // 公众号名称,由商户传入
  429. timeStamp: data.timeStamp, // 时间戳,自1970年以来的秒数
  430. nonceStr: data.nonceStr, // 随机串
  431. package: data.package,
  432. signType: data.signType, // 微信签名方式:
  433. paySign: data.paySign, // 微信签名
  434. },
  435. function (res) {
  436. // 判断支付状态
  437. console.log("支付状态", res, "this:", this, self);
  438. if (res.err_msg === "get_brand_wcpay_request:ok") {
  439. self.$u.toast("支付成功");
  440. uni.redirectTo({
  441. url: "/pages2/order/confirm_success?sn=" + data.orderSn,
  442. });
  443. } else if (res.err_msg === "get_brand_wcpay_request:cancel") {
  444. self.$u.toast("取消支付");
  445. } else {
  446. self.$u.toast("支付失败");
  447. }
  448. }
  449. );
  450. }
  451. if (typeof WeixinJSBridge === "undefined") {
  452. if (document.addEventListener) {
  453. document.addEventListener(
  454. "WeixinJSBridgeReady",
  455. onBridgeReady,
  456. false
  457. );
  458. } else if (document.attachEvent) {
  459. document.attachEvent("WeixinJSBridgeReady", onBridgeReady);
  460. document.attachEvent("onWeixinJSBridgeReady", onBridgeReady);
  461. }
  462. } else {
  463. onBridgeReady();
  464. }
  465. },
  466. openPopup() {},
  467. //删除订单
  468. delOrder(item) {
  469. var self = this;
  470. uni.showModal({
  471. content: "确定要删除该订单吗",
  472. success: function (res) {
  473. if (res.confirm) {
  474. self.$api
  475. .eddOrder({
  476. orderId: item.orderId,
  477. status: -1,
  478. })
  479. .then((res) => {
  480. if (res.data.code === 200) {
  481. self.$method.showToast("订单删除成功");
  482. self.getOrderList();
  483. }
  484. });
  485. }
  486. },
  487. });
  488. },
  489. //取消订单
  490. closeOrder(item) {
  491. var self = this;
  492. uni.showModal({
  493. content: "确定要取消该订单吗",
  494. success: function (res) {
  495. if (res.confirm) {
  496. self.$api
  497. .eddOrder({
  498. orderId: item.orderId,
  499. orderStatus: -1,
  500. })
  501. .then((res) => {
  502. if (res.data.code === 200) {
  503. self.$method.showToast("订单取消成功", "success");
  504. self.getOrderList();
  505. }
  506. });
  507. }
  508. },
  509. });
  510. },
  511. getFY() {
  512. if (this.current === 0) {
  513. this.formData.orderStatus = "0";
  514. if (this.order.length >= this.pageNum1) {
  515. return;
  516. }
  517. }
  518. if (this.current === 1) {
  519. this.formData.orderStatus = "1,2,3,4";
  520. if (this.order.length >= this.pageNum2) {
  521. return;
  522. }
  523. }
  524. if (this.current === 2) {
  525. this.formData.orderStatus = "-1,-2";
  526. if (this.order.length >= this.pageNum3) {
  527. return;
  528. }
  529. }
  530. if (this.current == 3) {
  531. if (this.order.length >= this.pageNum4) {
  532. return;
  533. }
  534. this.formData.orderStatus = "";
  535. this.$api.orderRefundList(this.formData).then((res) => {
  536. if (res.data.code == 200) {
  537. this.order = this.order.concat(res.data.rows);
  538. }
  539. });
  540. return;
  541. }
  542. this.$api.getorderlists(this.formData).then((res) => {
  543. if (res.data.code === 200) {
  544. if (res.data.rows.length) {
  545. this.order = this.order.concat(res.data.rows);
  546. }
  547. }
  548. });
  549. },
  550. //获取订单
  551. getOrderList() {
  552. this.formData.pageNum = 1;
  553. if (this.current === 0) {
  554. this.formData.orderStatus = "0";
  555. }
  556. if (this.current === 1) {
  557. this.formData.orderStatus = "1,2,3,4";
  558. }
  559. if (this.current === 2) {
  560. this.formData.orderStatus = "-1,-2";
  561. }
  562. this.order = [];
  563. this.$api.getorderlists(this.formData).then((res) => {
  564. if (res.data.code === 200) {
  565. if (this.current === 0) {
  566. this.list[0].count = res.data.total;
  567. this.pageNum1 = res.data.total;
  568. }
  569. if (this.current === 1) {
  570. this.list[1].count = res.data.total;
  571. this.pageNum2 = res.data.total;
  572. }
  573. if (this.current === 2) {
  574. this.list[2].count = res.data.total;
  575. this.pageNum3 = res.data.total;
  576. }
  577. this.order = res.data.rows;
  578. console.log("订单列表this.order", this.order);
  579. }
  580. });
  581. },
  582. orderRefundList() {
  583. this.order = [];
  584. this.formData.pageNum = 1;
  585. this.formData.orderStatus = "";
  586. this.$api.orderRefundList(this.formData).then((res) => {
  587. if (res.data.code == 200) {
  588. this.order = res.data.rows;
  589. }
  590. });
  591. },
  592. change(index) {
  593. if (this.current === index) {
  594. return;
  595. }
  596. this.current = index;
  597. console.log("this.current", this.current);
  598. if (this.current == 3) {
  599. //退款订单
  600. this.formData.status = "";
  601. this.orderRefundList();
  602. } else {
  603. //其他订单
  604. this.formData.status = "0,1";
  605. this.getOrderList();
  606. }
  607. uni.pageScrollTo({
  608. scrollTop: 0,
  609. });
  610. },
  611. },
  612. computed: { ...mapGetters(["userInfo"]) },
  613. };
  614. </script>
  615. <style>
  616. page {
  617. background: #eaeef1;
  618. }
  619. </style>
  620. <style scoped lang="scss">
  621. .lisChild {
  622. border-radius: 16rpx;
  623. margin-bottom: 16rpx;
  624. background: #fff;
  625. .header {
  626. display: flex;
  627. justify-content: space-between;
  628. align-items: center;
  629. height: 80rpx;
  630. padding: 0 15rpx;
  631. color: #666666;
  632. font-size: 24rpx;
  633. }
  634. .body {
  635. padding: 16rpx;
  636. &__content {
  637. display: flex;
  638. justify-content: space-between;
  639. .goods-img {
  640. height: 156rpx;
  641. width: 278rpx;
  642. border-radius: 16rpx;
  643. flex-shrink: 0;
  644. }
  645. .goods-text {
  646. margin-left: 20rpx;
  647. flex: 1;
  648. display: flex;
  649. flex-direction: column;
  650. .goods-name {
  651. color: #333333;
  652. font-size: 30rpx;
  653. font-weight: bold;
  654. flex: 1;
  655. }
  656. .goods-price {
  657. font-size: 30rpx;
  658. font-family: PingFang SC;
  659. font-weight: bold;
  660. color: #ff2d55;
  661. display: flex;
  662. flex-direction: row-reverse;
  663. }
  664. }
  665. }
  666. .btn2 {
  667. width: 144rpx;
  668. height: 46rpx;
  669. background: #ffffff;
  670. border: 2rpx solid #007aff;
  671. border-radius: 16rpx;
  672. text-align: center;
  673. line-height: 48rpx;
  674. color: #007aff;
  675. margin: 0 8rpx;
  676. }
  677. }
  678. .footer {
  679. padding: 0 24rpx;
  680. height: 80rpx;
  681. display: flex;
  682. justify-content: space-between;
  683. align-items: center;
  684. .btn2 {
  685. width: 144rpx;
  686. height: 46rpx;
  687. background: #ffffff;
  688. border: 2rpx solid #007aff;
  689. border-radius: 16rpx;
  690. text-align: center;
  691. line-height: 48rpx;
  692. color: #007aff;
  693. margin: 0 8rpx;
  694. }
  695. .btn1 {
  696. width: 144rpx;
  697. height: 48rpx;
  698. background: #ffffff;
  699. border: 2rpx solid #999999;
  700. border-radius: 16rpx;
  701. text-align: center;
  702. line-height: 48rpx;
  703. color: #999999;
  704. margin: 0 8rpx;
  705. }
  706. }
  707. }
  708. .lisChild:last-child {
  709. margin-bottom: 34rpx;
  710. }
  711. .noData {
  712. text-align: center;
  713. font-size: 32rpx;
  714. font-family: PingFang SC;
  715. font-weight: 500;
  716. color: #999999;
  717. margin: 160rpx 0;
  718. }
  719. .apply_btn {
  720. width: 100%;
  721. height: 124rpx;
  722. background: #ffffff;
  723. box-shadow: 0rpx -2rpx 6rpx 0rpx rgba(0, 0, 0, 0.1);
  724. z-index: 100;
  725. position: fixed;
  726. left: 0;
  727. right: 0;
  728. bottom: 0rpx;
  729. }
  730. .apply-invoice {
  731. margin: 0 auto;
  732. width: 686rpx;
  733. height: 84rpx;
  734. line-height: 84rpx;
  735. text-align: center;
  736. font-size: 32rpx;
  737. color: #fff;
  738. background: #0080ff;
  739. margin-top: 20rpx;
  740. border-radius: 120rpx;
  741. }
  742. .bottomBox {
  743. position: fixed;
  744. bottom: 0;
  745. width: 100%;
  746. left: 0;
  747. height: 98rpx;
  748. background-color: #ffffff;
  749. display: flex;
  750. justify-content: space-between;
  751. align-items: center;
  752. padding: 0 30rpx;
  753. }
  754. .rf-popup-main {
  755. text-align: center;
  756. padding: 40rpx;
  757. .title {
  758. font-size: 40rpx;
  759. font-weight: 600;
  760. }
  761. .tip {
  762. margin: 30rpx 0 40rpx;
  763. font-size: 32rpx;
  764. }
  765. .u-input {
  766. border-radius: 20rpx;
  767. background: #eee;
  768. padding-left: 20rpx !important;
  769. margin-bottom: 40rpx;
  770. }
  771. .u-button {
  772. border-radius: 60rpx !important;
  773. }
  774. }
  775. </style>