detail.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740
  1. <template>
  2. <div class="product-detail-page">
  3. <!-- 顶部返回按钮 -->
  4. <!-- <van-nav-bar title="NFTCHA-全球首个NFT茶交易平台" left-arrow @click-left="goBack" /> -->
  5. <div class="back" @click="goBack">
  6. <van-icon name="arrow-left" size="22" />
  7. </div>
  8. <!-- 商品图片轮播 -->
  9. <van-swipe class="product-swiper" autoplay="3000" indicator-color="#fff">
  10. <van-swipe-item class="swipe-item" v-for="(image, index) in product.info.img_url" :key="index">
  11. <!-- <img :src="image" alt="商品图片" /> -->
  12. <van-image class="product-image" style="width: 100%; height: 100%" radius="0" :src="image" />
  13. </van-swipe-item>
  14. </van-swipe>
  15. <!-- 商品信息 -->
  16. <div class="product-info">
  17. <div class="product-price-stock">
  18. <div class="left">
  19. <div class="price">
  20. <span>{{ product.info.price }}</span>
  21. <span class="small">{{ $t('lang174') }}</span>
  22. <span class="small">{{ product.info.cost_price }}{{ $t('lang174') }}</span>
  23. </div>
  24. <div class="tags">
  25. <van-tag class="tag" type="info">{{ $t('lang53') }}</van-tag>
  26. <span>{{ product.info.num }}{{ $t('lang52') }}</span>
  27. </div>
  28. </div>
  29. <div class="countdown" v-if="product.info.start_time * 1000 - new Date().getTime() <= 0 && product.info.end_time * 1000 - new Date().getTime() > 0">
  30. <div class="flex">
  31. <img src="@/assets/images/trade/clock.png" alt="" class="clock" />
  32. <span style="white-space: nowrap">{{ $t('lang54') }}</span>
  33. </div>
  34. <van-count-down class="count" :time="product.info.end_time * 1000 - new Date().getTime()">
  35. <template #default="timeData">
  36. <span class="block">{{ timeData.days }}</span>
  37. <span class="colon">{{ $t('lang9') }}</span>
  38. <span class="block">{{ timeData.hours }}</span>
  39. <span class="colon">{{ $t('lang10') }}</span>
  40. <span class="block">{{ timeData.seconds }}</span>
  41. <span class="colon">{{ $t('lang12') }}</span>
  42. </template>
  43. </van-count-down>
  44. </div>
  45. <div class="countdown end" v-else-if="product.info.start_time * 1000 - new Date().getTime() > 0">{{ $t('lang72') }}</div>
  46. <div class="countdown end" v-else-if="product.info.end_time * 1000 - new Date().getTime() <= 0">{{ $t('lang173') }}</div>
  47. </div>
  48. <div class="goods_info">
  49. <div class="flex jsb">
  50. <span class="title">{{ product.info.name }}</span>
  51. <span class="red">{{ $t('lang55') }}{{ (product.info.stock - product.info.num < 0 ? 0 : product.info.stock - product.info.num) || 0 }}{{ $t('lang7') }}</span>
  52. </div>
  53. <div class="tag">{{ $t('lang56') }}</div>
  54. </div>
  55. </div>
  56. <!-- 期数 -->
  57. <div class="issue">
  58. <div v-for="(item, index) in product.times" :key="index" :class="[item.status == 1 ? 'item current' : 'item']">
  59. <div class="flex jsb">
  60. <span>{{ item.title }}</span>
  61. <span> {{ item.start_time_text.split(' ')[0] }}~{{ item.end_time_text.split(' ')[0] }} </span>
  62. <span class="red">
  63. {{ item.price }}<span class="ssm">{{ $t('lang174') }}</span>
  64. </span>
  65. <span class="tag">{{ statusFn(item.status) }}</span>
  66. </div>
  67. <van-icon name="ellipsis" size="15" color="#aaaaaa" class="ellipsis-icon" />
  68. </div>
  69. </div>
  70. <!-- tag -->
  71. <div class="zp flex jsb">
  72. <div class="flex">
  73. <img src="@/assets/images/trade/safe.png" alt="" class="safe" />
  74. <span class="t"> {{ $t('lang57') }} </span>
  75. </div>
  76. <div>
  77. <span> {{ $t('lang58') }} </span>
  78. <van-icon name="arrow" />
  79. </div>
  80. </div>
  81. <!-- 购买记录 -->
  82. <div class="purchase-record">
  83. <div class="section-title">{{ $t('lang59') }}</div>
  84. <!-- <van-cell-group>
  85. <van-cell v-for="(record, index) in purchaseRecords" :key="index" :title="maskAddress(record.address)" :label="record.timeAgo" icon="user-o" />
  86. </van-cell-group> -->
  87. <div class="list">
  88. <div class="item flex jsb" v-for="(item, index) in product.order" :key="index">
  89. <div class="flex">
  90. <!-- <img :src="item.avatar" alt="" class="avatar" /> -->
  91. <div class="avatar"></div>
  92. <span>{{ item.address.slice(0, 6) + '****' + item.address.slice(item.address.length - 6, item.address.length) }}</span>
  93. </div>
  94. <div>
  95. <span>{{ formatTimeDifference(item.create_time * 1000) }}</span>
  96. </div>
  97. </div>
  98. <div class="more" v-if="product.order.length == 0">{{ $t('lang60') }}</div>
  99. <!-- <div class="more" v-else>{{ $t('lang61') }}</div> -->
  100. </div>
  101. </div>
  102. <!-- 商品详情 -->
  103. <div class="product-details">
  104. <div class="section-title">{{ $t('lang62') }}</div>
  105. <!-- <div class="box flex jsb">
  106. <div class="item">
  107. <span class="key">{{ $t('lang63') }}</span>
  108. <span class="val ellipsis">{{ product.info.name }}</span>
  109. </div>
  110. <div class="item">
  111. <span class="key">净含量:</span>
  112. <span class="val">100g</span>
  113. </div>
  114. <div class="item">
  115. <span class="key">所属系列:</span>
  116. <span class="val">春夏秋冬系列</span>
  117. </div>
  118. <div class="item">
  119. <span class="key">茶叶产地:</span>
  120. <span class="val">云南贵州</span>
  121. </div>
  122. </div> -->
  123. </div>
  124. <!-- 宣传图片 -->
  125. <!-- <img v-for="(item, index) in product.info.img_url" :key="index" :src="item" class="promo-image" alt="" /> -->
  126. <div v-html="product.info.details" class="promo-image"></div>
  127. <!-- 底部导航栏 -->
  128. <div class="bottom">
  129. <div class="flex">
  130. <div class="flex flex-c">
  131. <img src="@/assets/images/trade/custom.png" alt="" class="icon" />
  132. <span>{{ $t('lang67') }}</span>
  133. </div>
  134. <div class="flex flex-c" @click="toPage('invite')">
  135. <img src="@/assets/images/trade/share.png" alt="" class="icon" />
  136. <span>{{ $t('lang68') }}</span>
  137. </div>
  138. </div>
  139. <div class="buy" @click="cascaderShow = true">
  140. <van-button class="buy_btn" type="primary">{{ $t('lang27') }}</van-button>
  141. </div>
  142. </div>
  143. <van-popup v-model="cascaderShow" round position="bottom">
  144. <!-- <van-cascader v-model="cascaderValue" title="请选择所在地区" :options="options" @close="cascaderShow = false" @finish="onFinish" /> -->
  145. <div class="area">
  146. <div class="title">{{ $t('lang69') }}</div>
  147. <van-field v-model="search" :placeholder="$t('lang70')" class="input" right-icon="search" @click-right-icon="handleSearch" />
  148. <!-- <van-list v-model="loading" :finished="finished" finished-text="没有更多了" @load="onLoad" class="vanlist">
  149. <van-cell class="item" v-for="item in arealist" :key="item.id" :title="item.address" />
  150. </van-list> -->
  151. <van-checkbox-group v-model="areaIds" @change="handleChoose" v-if="arealist.length > 0">
  152. <van-cell-group class="vanlist" @scroll="handleScroll">
  153. <van-cell class="item" v-for="item in arealist" :key="item.id" :title="item.address" clickable>
  154. <template #right-icon>
  155. <van-checkbox :name="item.id" icon-size="16px" checked-color="#29b286" ref="checkboxes" />
  156. </template>
  157. </van-cell>
  158. </van-cell-group>
  159. </van-checkbox-group>
  160. <div class="nomore" v-else>
  161. <span>{{ $t('lang60') }}</span>
  162. </div>
  163. <div class="submit" @click="cascaderShow = true">
  164. <van-button class="submit_btn" type="primary" @click="submit">{{ $t('lang71') }}</van-button>
  165. </div>
  166. </div>
  167. </van-popup>
  168. <van-popup v-model="loading" round class="loading-popup">
  169. <div class="loading">
  170. <van-loading type="spinner" />
  171. </div>
  172. </van-popup>
  173. </div>
  174. </template>
  175. <script>
  176. import { homeApi } from '@/api/index';
  177. import { Dialog, Notify, Toast } from 'vant';
  178. export default {
  179. data() {
  180. return {
  181. product: {
  182. info: {},
  183. order: [],
  184. times: [],
  185. },
  186. time: 30 * 60 * 60 * 1000,
  187. cascaderShow: false,
  188. cascaderValue: '',
  189. currentIssue: 0,
  190. // 选项列表,children 代表子选项,支持多级嵌套
  191. options: [],
  192. arealist: [],
  193. search: '',
  194. areaIds: [],
  195. loading: false,
  196. page: 1,
  197. };
  198. },
  199. mounted() {
  200. this.getPopularInfo(this.$route.query.id);
  201. },
  202. methods: {
  203. statusFn(status) {
  204. let result = '';
  205. switch (status) {
  206. case 0:
  207. result = this.$t('lang72');
  208. break;
  209. case 1:
  210. result = this.$t('lang73');
  211. break;
  212. case 2:
  213. result = this.$t('lang74');
  214. break;
  215. default:
  216. break;
  217. }
  218. return result;
  219. },
  220. formatTimeDifference(time) {
  221. const now = new Date();
  222. const past = new Date(time);
  223. const diff = now - past; // 时间差,单位为毫秒
  224. const seconds = Math.floor(diff / 1000);
  225. const minutes = Math.floor(seconds / 60);
  226. const hours = Math.floor(minutes / 60);
  227. const days = Math.floor(hours / 24);
  228. if (seconds < 60) {
  229. return `${seconds}${this.$t('lang75')}`;
  230. } else if (minutes < 60) {
  231. return `${minutes}${this.$t('lang76')}`;
  232. } else if (hours < 24) {
  233. return `${hours}${this.$t('lang77')}`;
  234. } else {
  235. return `${days}${this.$t('lang78')}`;
  236. }
  237. },
  238. goBack() {
  239. this.$router.back();
  240. },
  241. toPage(name) {
  242. this.$router.push({ name });
  243. },
  244. getPopularInfo(id) {
  245. homeApi.getPopularInfo({ ids: id, product_id: this.$route.query.product_id }).then(res => {
  246. if (res.code == 200) {
  247. this.product = res.data;
  248. this.product.info.img_url = res.data.info.img_url.split(',');
  249. this.getProductAddres();
  250. } else {
  251. }
  252. });
  253. },
  254. maskAddress(address) {
  255. return address.replace(/(\w{4})\w*(\w{4})/, '$1****$2');
  256. },
  257. onFinish({ selectedOptions }) {
  258. this.cascaderShow = false;
  259. },
  260. onClose(e) {},
  261. onChange(e) {},
  262. handleScroll(event) {
  263. const container = event.target;
  264. const scrollTop = container.scrollTop; // 滚动距离
  265. const scrollHeight = container.scrollHeight; // 内容总高度
  266. const clientHeight = container.clientHeight; // 可视区域高度
  267. // 判断是否滑动到底部
  268. if (scrollTop + clientHeight >= scrollHeight - 10) {
  269. // console.log('到底了');
  270. if (this.page != -1) {
  271. this.page++; // 页数加 1
  272. this.getProductAddres(); // 触发加载更多
  273. }
  274. }
  275. },
  276. handleSearch() {
  277. this.page = 1; // 重置为 1,表示重新查询
  278. this.arealist = []; // 重置列表
  279. this.getProductAddres();
  280. },
  281. getProductAddres() {
  282. homeApi.getProductAddres({ product_id: this.product.info.product_id, search: this.search, page: this.page }).then(res => {
  283. if (res.code == 200) {
  284. if (this.arealist.length >= res.data.total) {
  285. this.page = -1; // 重置为 -1,表示没有更多数据
  286. } else {
  287. this.arealist = [...this.arealist, ...res.data.data];
  288. console.log(this.arealist.length);
  289. if (this.arealist.length >= res.data.total) {
  290. this.page = -1; // 重置为 -1,表示没有更多数据
  291. }
  292. }
  293. } else {
  294. }
  295. });
  296. },
  297. handleChoose(e) {
  298. console.log(e);
  299. this.areaIds = e;
  300. },
  301. submit() {
  302. // Dialog.confirm({
  303. // title: '标题',
  304. // message: '弹窗内容',
  305. // })
  306. // .then(() => {
  307. // // on confirm
  308. // })
  309. // .catch(() => {
  310. // // on cancel
  311. // });
  312. if (!this.areaIds) {
  313. return Notify({ type: 'warning', message: this.$t('lang69') });
  314. }
  315. let _this = this;
  316. Dialog.confirm({
  317. title: this.$t('lang136'),
  318. message: this.$t('lang137'),
  319. confirmButtonText: _this.$t('lang111'),
  320. cancelButtonText: _this.$t('lang135'),
  321. })
  322. .then(() => {
  323. this.loading = true;
  324. homeApi.create({ order_id: this.product.info.id, product_id: this.product.info.product_id, area_id: this.areaIds.join(',') }).then(res => {
  325. if (res.code == 200) {
  326. this.loading = false;
  327. this.cascaderShow = false;
  328. this.areaIds = [];
  329. Toast({ message: res.msg });
  330. this.$router.push('teaRights');
  331. } else if (res.code == 15001) {
  332. this.loading = false;
  333. setTimeout(() => {
  334. this.$router.push('recharge');
  335. }, 300);
  336. } else {
  337. this.loading = false;
  338. }
  339. });
  340. })
  341. .catch(() => {
  342. // on cancel
  343. });
  344. },
  345. },
  346. };
  347. </script>
  348. <style lang="less" scoped>
  349. .product-detail-page {
  350. // background-color: #fff;
  351. padding-bottom: 100px;
  352. }
  353. .product-swiper {
  354. height: 250px;
  355. width: 100vw;
  356. }
  357. .product-image {
  358. width: 100%;
  359. height: 100%;
  360. }
  361. .product-info {
  362. .product-price-stock {
  363. display: flex;
  364. justify-content: space-between;
  365. align-items: center;
  366. padding: 6px 14px;
  367. background: linear-gradient(to right, #1ab986, #25d7bb);
  368. .left {
  369. flex: 1;
  370. padding-right: 10px;
  371. .price {
  372. font-size: 22px;
  373. color: #fff;
  374. .small {
  375. color: #e7e7e7;
  376. font-size: 12px;
  377. padding-right: 6px;
  378. }
  379. .small:last-child {
  380. text-decoration: line-through;
  381. }
  382. }
  383. .tags {
  384. display: flex;
  385. align-items: center;
  386. justify-content: space-between;
  387. font-size: 11px;
  388. color: #f8f8f8;
  389. text-align: right;
  390. margin-top: 6px;
  391. .tag {
  392. white-space: nowrap;
  393. color: #1ab986;
  394. font-size: 11px;
  395. border-radius: 4px;
  396. background-color: #fff;
  397. }
  398. }
  399. }
  400. .end {
  401. text-align: center;
  402. line-height: 40px;
  403. }
  404. .countdown {
  405. min-width: 100px;
  406. height: 40px;
  407. font-size: 13px;
  408. border-left: 1px solid #f1f1f1;
  409. padding-left: 10px;
  410. .clock {
  411. width: 20px;
  412. height: 20px;
  413. margin-right: 4px;
  414. }
  415. .count {
  416. margin-top: 6px;
  417. }
  418. .colon {
  419. display: inline-block;
  420. margin: 0 4px;
  421. color: #fff;
  422. font-size: 11px;
  423. }
  424. .block {
  425. display: inline-block;
  426. width: 21px;
  427. color: #1ab986;
  428. font-size: 12px;
  429. text-align: center;
  430. border-radius: 4px;
  431. background-color: #fff;
  432. }
  433. }
  434. }
  435. .goods_info {
  436. padding: 8px 14px;
  437. background-color: #fff;
  438. .title {
  439. font-size: 16px;
  440. font-weight: 550;
  441. color: #3d3d3d;
  442. }
  443. .red {
  444. color: rgb(255, 48, 48);
  445. font-size: 11px;
  446. }
  447. .tag {
  448. color: #0db39a;
  449. font-size: 11px;
  450. padding-top: 8px;
  451. }
  452. }
  453. }
  454. .issue {
  455. color: #aaaaaa;
  456. font-size: 13px;
  457. padding: 16px 14px;
  458. margin: 8px 0;
  459. background-color: #ffffff;
  460. .item {
  461. .ellipsis-icon {
  462. transform: rotate(90deg);
  463. margin-left: 0.8em;
  464. }
  465. }
  466. .ssm {
  467. content: 'USDT';
  468. font-size: 8px;
  469. }
  470. .item:last-child {
  471. .ellipsis-icon {
  472. display: none;
  473. }
  474. }
  475. .tag {
  476. font-size: 12px;
  477. padding: 2px 6px;
  478. border-radius: 4px;
  479. background-color: #fff;
  480. }
  481. .current {
  482. color: #000;
  483. .red {
  484. color: rgb(255, 48, 48);
  485. }
  486. .tag {
  487. color: #29b286;
  488. background-color: #d4f0e7;
  489. }
  490. }
  491. }
  492. .zp {
  493. color: #3d3d3d;
  494. font-size: 12px;
  495. padding: 16px 14px;
  496. margin: 8px 0;
  497. background-color: #ffffff;
  498. white-space: nowrap;
  499. .safe {
  500. width: 22px;
  501. height: 22px;
  502. margin-right: 4px;
  503. }
  504. .t {
  505. font-size: 13px;
  506. white-space: wrap;
  507. }
  508. }
  509. .jsb {
  510. justify-content: space-between;
  511. }
  512. .flex {
  513. display: flex;
  514. align-items: center;
  515. }
  516. .section-title {
  517. font-size: 15px;
  518. font-weight: bold;
  519. margin-bottom: 8px;
  520. }
  521. .purchase-record {
  522. color: #3d3d3d;
  523. padding: 14px;
  524. background-color: #fff;
  525. .list {
  526. .item {
  527. font-size: 12px;
  528. padding-top: 14px;
  529. .avatar {
  530. width: 28px;
  531. height: 28px;
  532. border-radius: 50%;
  533. margin-right: 4px;
  534. background: linear-gradient(to bottom right, #29b286, #30d5a0);
  535. }
  536. }
  537. }
  538. .more {
  539. text-align: center;
  540. font-size: 12px;
  541. color: #aaaaaa;
  542. padding-top: 20px;
  543. }
  544. }
  545. .product-details {
  546. color: #3d3d3d;
  547. font-size: 12px;
  548. padding: 16px 14px;
  549. margin: 8px 0 0;
  550. background-color: #ffffff;
  551. .box {
  552. color: #aaaaaa;
  553. flex-wrap: wrap;
  554. padding: 7px 14px;
  555. border-radius: 10px;
  556. background-color: #ededed;
  557. .item {
  558. display: flex;
  559. align-items: center;
  560. width: 50%;
  561. padding: 7px 0px;
  562. .val {
  563. color: #000;
  564. width: 50%;
  565. // display: block;
  566. }
  567. }
  568. }
  569. }
  570. .ellipsis {
  571. overflow: hidden; /* 确保超出容器的文本被裁剪 */
  572. white-space: nowrap; /* 确保文本在一行内显示 */
  573. text-overflow: ellipsis; /* 使用省略号表示文本超出 */
  574. }
  575. .promo-image {
  576. width: 100%;
  577. img {
  578. width: 100% !important;
  579. }
  580. // margin-top: 14px;
  581. }
  582. .van-tabbar-item {
  583. font-size: 14px;
  584. }
  585. .bottom {
  586. position: fixed;
  587. bottom: 0;
  588. left: 0;
  589. width: 100%;
  590. height: 50px;
  591. background-color: #fff;
  592. display: flex;
  593. justify-content: space-between;
  594. align-items: center;
  595. padding: 0 14px;
  596. box-sizing: border-box;
  597. .flex-c {
  598. color: #3d3d3d;
  599. font-size: 10px;
  600. flex-direction: column;
  601. margin-right: 16px;
  602. .icon {
  603. width: 22px;
  604. height: 22px;
  605. margin-bottom: 3px;
  606. }
  607. }
  608. .buy {
  609. &_btn {
  610. height: 30px;
  611. line-height: 30px;
  612. font-size: 13px;
  613. background-color: #29b286;
  614. border: none;
  615. padding: 0 16px;
  616. white-space: nowrap;
  617. border-radius: 30px;
  618. }
  619. }
  620. }
  621. .back {
  622. position: fixed;
  623. z-index: 99;
  624. top: 14px;
  625. left: 14px;
  626. box-sizing: border-box;
  627. width: 40px;
  628. height: 40px;
  629. margin: auto auto;
  630. display: flex;
  631. align-items: center;
  632. justify-content: center;
  633. border-radius: 50%;
  634. background-color: #7a777b;
  635. }
  636. .area {
  637. padding: 20px 30px;
  638. width: 100%;
  639. box-sizing: border-box;
  640. position: relative;
  641. .title {
  642. color: #000;
  643. font-size: 15px;
  644. text-align: center;
  645. font-weight: bold;
  646. padding: 0 0 14px;
  647. }
  648. .vanlist {
  649. max-height: 350px;
  650. min-height: 350px;
  651. overflow: auto;
  652. box-sizing: border-box;
  653. margin: 20px 0;
  654. border: none !important;
  655. .item {
  656. padding: 12px 0 !important;
  657. border-bottom: 0.5px solid rgba(190, 190, 190, 0.15);
  658. }
  659. }
  660. .nomore {
  661. color: #aaa;
  662. text-align: center;
  663. font-size: 12px;
  664. height: 350px;
  665. padding: 40px 0;
  666. }
  667. .submit {
  668. width: 100%;
  669. // position: fixed;
  670. bottom: 30px;
  671. box-sizing: border-box;
  672. &_btn {
  673. width: 100%;
  674. height: 40px;
  675. line-height: 40px;
  676. font-size: 14px;
  677. background-color: #29b286;
  678. border: none;
  679. white-space: nowrap;
  680. border-radius: 30px;
  681. }
  682. }
  683. .input {
  684. width: 100%;
  685. border: 1px solid #29b286;
  686. border-radius: 20px;
  687. }
  688. ::v-deep .van-field__control {
  689. padding: 6px 12px;
  690. }
  691. ::v-deep .van-icon-search {
  692. font-size: 20px;
  693. color: #29b286;
  694. font-weight: bold;
  695. margin-right: 10px;
  696. }
  697. ::v-deep .van-hairline--top-bottom::after,
  698. ::v-deep.van-hairline-unset--top-bottom::after {
  699. border: none;
  700. }
  701. }
  702. ::v-deep .van-hairline--left::after {
  703. border-left-width: 0.005px !important;
  704. }
  705. ::v-deep .van-cascader__option,
  706. ::v-deep .van-cascader__title {
  707. color: #000;
  708. }
  709. .loading {
  710. padding: 50px 60px;
  711. border: none;
  712. background-color: rgba(#353535, 1);
  713. }
  714. .loading-popup {
  715. background-color: rgba(#353535, 0);
  716. }
  717. </style>