index.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847
  1. <template>
  2. <mobile-frame>
  3. <view class="main">
  4. <view class="one">
  5. <input type="text" v-model="searchInfo.goods" @input="toInput" placeholder="搜索商品">
  6. </view>
  7. <view class="two">
  8. <tabs :tabs="tabs" @tabsChange="tabsChange">
  9. <view class="tabsList">
  10. <scroll-view scroll-y="true" class="scroll-view" @scrolltolower="toPage" @scroll="toScroll">
  11. <view class="list-scroll-view">
  12. <view class="list" v-for="(item,index) in list" :key="index" @tap="toInfo(item)">
  13. <view class="list_1" v-if="tabs.active=='0'">
  14. <view class="goods">
  15. <view class="goodsList" v-for="(tag,indexs) in item.goods" :key="indexs">
  16. <view class="shopname">
  17. <view class="shop" v-if="tag.is_set=='0'">
  18. <view class="r">
  19. <text class="set">套装</text> {{tag.name}}
  20. </view>
  21. </view>
  22. <view class="shop" v-else>
  23. <text class="iconfont icon-shangdian"></text>
  24. <text>{{tag.shop_name}}</text>
  25. </view>
  26. <view class="status">
  27. {{item.zhStatus}}
  28. </view>
  29. </view>
  30. <view class="goodsList_1">
  31. <view class="market" v-for="(tags,indexss) in tag.goods"
  32. :key="indexss">
  33. <view class="market_1">
  34. <image class="image"
  35. :src="tags.goods.file&&tags.goods.file.length>0?tags.goods.file[0].url:''"
  36. mode=""></image>
  37. </view>
  38. <view class="market_2">
  39. <view class="goodsname textOver">
  40. {{tags.goods.name}}
  41. </view>
  42. <view class="specs" v-if="tag.is_set=='0'">
  43. {{tags.spec_name}}
  44. </view>
  45. <view class="specs" v-else>
  46. {{tags.name}}
  47. </view>
  48. <text v-if="tags.gift.length>0" class="gift">赠品</text>
  49. <text v-if="tags.sp_price" class="act">特价</text>
  50. </view>
  51. <view class="market_3" v-if="tag.is_set=='0'">
  52. <view class="price">{{tags.set_num}}件/套x{{tags.set_num}}
  53. </view>
  54. </view>
  55. <view class="market_3" v-else>
  56. <view v-if="item.type=='0'" class="price">
  57. ¥{{tags.price||tags.sell_money}}
  58. </view>
  59. <view v-else class="price">
  60. ¥{{tags.group_config.money}}
  61. </view>
  62. <view class="num">
  63. ×{{tags.buy_num}}
  64. </view>
  65. </view>
  66. </view>
  67. </view>
  68. </view>
  69. </view>
  70. <view class="other">
  71. <text>共{{item.buy_num_total}}件商品</text>
  72. <text>实付款¥{{item.real_pay}}</text>
  73. </view>
  74. </view>
  75. <view class="list_2" v-else>
  76. <view class="list_2_1">
  77. <view class="shopname" v-if="item.is_set=='0'">
  78. <view class="r">
  79. <text class="set">套装</text> {{tag.name}}
  80. </view>
  81. </view>
  82. <view class="shopname" v-else>
  83. <text class="iconfont icon-shangdian"></text>
  84. <text>{{item.shop.name}}</text>
  85. </view>
  86. <view class="status">
  87. {{item.zhStatus}}
  88. </view>
  89. </view>
  90. <view class="list_2_2">
  91. <view class="goods" v-for="(tag,indexs) in item.goods" :key="indexs">
  92. <view class="goods_1">
  93. <image class="image" :src="tag.url" mode=""></image>
  94. </view>
  95. <view class="goods_2">
  96. <view class="goodsname textOver">
  97. {{tag.goods.name}}
  98. </view>
  99. <view class="specs" v-if="item.is_set=='0'">
  100. {{tag.spec_name}}
  101. </view>
  102. <view class="specs" v-else>
  103. {{tag.name}}
  104. </view>
  105. <text v-if="tag.gift.length>0" class="gift">赠品</text>
  106. <text v-if="tag.sp_price" class="act">特价</text>
  107. </view>
  108. <view class="goods_3" v-if="item.is_set=='0'">
  109. <view class="price">{{tags.set_num}}件/套x{{tags.set_num}}
  110. </view>
  111. </view>
  112. <view class="goods_3" v-else>
  113. <view v-if="item.type=='0'" class="price">
  114. ¥{{tag.price||tag.sell_money}}
  115. </view>
  116. <view v-else class="price">
  117. ¥{{tag.group_config.money}}
  118. </view>
  119. <view class="num">
  120. ×{{tag.buy_num}}
  121. </view>
  122. </view>
  123. </view>
  124. </view>
  125. <view class="other">
  126. <text>共{{item.buy_num_total||0}}件商品</text>
  127. <text>实付款¥{{item.real_pay}}</text>
  128. </view>
  129. </view>
  130. <view class="btn">
  131. <button v-if="item.status=='0'" size="mini"
  132. @tap.stop="toCancel(item)">取消订单</button>
  133. <button v-if="item.status=='0'" :disabled="disabled" size="mini"
  134. @tap.stop="toPay(item)">支付</button>
  135. <button v-if="item.status=='1'&&item.is_afterSale!=true" size="mini"
  136. @tap.stop="toCancels(item)">取消订单</button>
  137. <button v-if="item.status=='2'||item.status=='3'||item.status=='2-'" size="mini"
  138. @tap.stop="toLogi(item)">查看物流</button>
  139. <button v-if="item.status=='2'&&item.is_afterSale!=true" size="mini"
  140. @tap.stop="toConfirm(item)">确认收货</button>
  141. <button v-if="item.status=='2'||item.status=='2-'&&item.is_afterSale!=true"
  142. size="mini" @tap.stop="toReject(item)">拒收</button>
  143. <button v-if="item.status=='3'" size="mini"
  144. @tap.stop="toAfter(item)">申请售后</button>
  145. <button v-if="item.status=='3'" type="default" size="mini"
  146. @tap.stop="toAppraise(item)">{{item.rate?'追加评价':'立即评价'}}</button>
  147. </view>
  148. </view>
  149. <view class="is_bottom" v-if="is_bottom">
  150. <text>{{config.bottom_title}}</text>
  151. </view>
  152. </view>
  153. </scroll-view>
  154. </view>
  155. </tabs>
  156. </view>
  157. </view>
  158. </mobile-frame>
  159. </template>
  160. <script>
  161. import tabs from '@/components/tabs/index.vue';
  162. export default {
  163. components: {
  164. tabs
  165. },
  166. data() {
  167. return {
  168. // 系统设置
  169. config: {},
  170. // 设备信息
  171. system: {},
  172. user: {},
  173. status: '',
  174. searchInfo: {},
  175. tabs: {
  176. active: '0',
  177. menu: []
  178. },
  179. list: [],
  180. total: 0,
  181. skip: 0,
  182. limit: 6,
  183. page: 0,
  184. // 数据是否触底
  185. is_bottom: false,
  186. scrollTop: 0,
  187. // 字典表
  188. statusList: [],
  189. disabled: false
  190. };
  191. },
  192. onLoad: function(e) {
  193. const that = this;
  194. that.$set(that, `status`, e.status || '');
  195. that.$set(that.tabs, `active`, e.status || '');
  196. that.searchConfig();
  197. },
  198. onShow: async function(e) {
  199. const that = this;
  200. await that.searchOther();
  201. await that.watchlogin();
  202. },
  203. onPullDownRefresh: async function() {
  204. const that = this;
  205. that.clearPage();
  206. await that.search();
  207. uni.stopPullDownRefresh();
  208. },
  209. methods: {
  210. // 查询基本设置
  211. searchConfig() {
  212. const that = this;
  213. uni.getStorage({
  214. key: 'config',
  215. success: function(res) {
  216. if (res.data) that.$set(that, `config`, res.data)
  217. // 设备平台信息
  218. let config = that.$config;
  219. that.$set(that, `system`, config.system);
  220. },
  221. fail: function(err) {
  222. console.log(err);
  223. }
  224. })
  225. },
  226. // 监听用户是否登录
  227. watchlogin() {
  228. const that = this;
  229. uni.getStorage({
  230. key: 'token',
  231. success: function(res) {
  232. let user = that.$jwt(res.data);
  233. if (user) {
  234. that.$set(that, `user`, user)
  235. that.search();
  236. }
  237. }
  238. })
  239. },
  240. async search() {
  241. const that = this;
  242. let user = that.user;
  243. let status = that.status;
  244. let info = {
  245. skip: that.skip,
  246. limit: that.limit,
  247. customer: user._id,
  248. status: status
  249. }
  250. let res;
  251. if (status == '0') {
  252. res = await that.$api(`/order`, 'GET', {
  253. ...info,
  254. ...that.searchInfo
  255. });
  256. } else {
  257. res = await that.$api(`/orderDetail`, 'GET', {
  258. ...info,
  259. ...that.searchInfo
  260. });
  261. }
  262. if (res.errcode == '0') {
  263. let list = [...that.list, ...res.data];
  264. for (let val of list) {
  265. val.zhStatus = that.searchStatus(val.status)
  266. }
  267. that.$set(that, `list`, list);
  268. that.$set(that, `total`, res.total)
  269. } else {
  270. uni.showToast({
  271. title: res.errmsg,
  272. icon: 'none'
  273. })
  274. }
  275. },
  276. // 查询状态
  277. searchStatus(e) {
  278. const that = this;
  279. let data = that.statusList.find((i) => i.value == e);
  280. if (data) return data.label
  281. else return '暂无'
  282. },
  283. // 分页
  284. toPage(e) {
  285. const that = this;
  286. let list = that.list;
  287. let limit = that.limit;
  288. if (that.total > list.length) {
  289. uni.showLoading({
  290. title: '加载中',
  291. mask: true
  292. })
  293. let page = that.page + 1;
  294. that.$set(that, `page`, page)
  295. let skip = page * limit;
  296. that.$set(that, `skip`, skip)
  297. that.search();
  298. uni.hideLoading();
  299. } else that.$set(that, `is_bottom`, true)
  300. },
  301. toScroll(e) {
  302. const that = this;
  303. let up = that.scrollTop;
  304. that.$set(that, `scrollTop`, e.detail.scrollTop);
  305. let num = Math.sign(up - e.detail.scrollTop);
  306. if (num == 1) that.$set(that, `is_bottom`, false);
  307. },
  308. // 输入框
  309. toInput(e) {
  310. const that = this;
  311. if (that.searchInfo.goods) that.$set(that.searchInfo, `goods`, e.detail.value)
  312. else that.$set(that, `searchInfo`, {})
  313. that.clearPage();
  314. that.search();
  315. },
  316. // 订单详细信息
  317. toInfo(item) {
  318. const that = this;
  319. that.clearPage();
  320. uni.navigateTo({
  321. url: `/pagesMy/order/info?id=${item._id}&status=${item.status}`
  322. })
  323. },
  324. // 取消订单-未支付
  325. toCancel(e) {
  326. const that = this;
  327. uni.showModal({
  328. title: '提示',
  329. content: '确定取消订单吗?',
  330. success: async function(res) {
  331. if (res.confirm) {
  332. const arr = await that.$api(`/order/cancel`, 'POST', {
  333. order_id: e._id
  334. });
  335. if (arr.errcode == '0') {
  336. uni.showToast({
  337. title: '申请取消订单完成',
  338. icon: 'none'
  339. })
  340. that.clearPage();
  341. that.search();
  342. } else {
  343. uni.showToast({
  344. title: arr.errmsg,
  345. icon: 'none'
  346. })
  347. }
  348. }
  349. }
  350. });
  351. },
  352. // 支付
  353. async toPay(e) {
  354. const that = this;
  355. let system = that.system;
  356. if (system.uniPlatform == "mp-weixin") {
  357. uni.showLoading({
  358. title: '加载中'
  359. })
  360. // 支付信息
  361. let p2 = await that.$api('/pay/toPayOrder', 'POST', {
  362. order_id: e,
  363. type: '0'
  364. })
  365. if (p2.errcode == '0' && p2.data.paySign) {
  366. uni.requestPayment({
  367. "provider": "wxpay",
  368. ...p2.data,
  369. success: function(res) {
  370. uni.showToast({
  371. title: '支付成功',
  372. icon: 'none'
  373. })
  374. },
  375. fail: function(err) {
  376. that.$set(that, `disabled`, false)
  377. uni.showToast({
  378. title: `支付失败`,
  379. icon: 'none'
  380. })
  381. },
  382. complete: function() {
  383. uni.hideLoading();
  384. that.clearPage();
  385. that.search();
  386. }
  387. })
  388. } else {
  389. uni.showToast({
  390. title: p2.errmsg || '错误信息',
  391. icon: 'none'
  392. })
  393. }
  394. } else if (res.data.uniPlatform == "app") {
  395. // app支付
  396. uni.requestPayment({
  397. provider: 'alipay',
  398. orderInfo: 'orderInfo',
  399. success: function(res) {
  400. console.log('success:' + JSON.stringify(res));
  401. },
  402. fail: function(err) {
  403. console.log('fail:' + JSON.stringify(err));
  404. }
  405. });
  406. } else {
  407. uni.showToast({
  408. title: `平台不支持支付`,
  409. icon: 'none'
  410. })
  411. }
  412. },
  413. // 取消订单-已支付
  414. toCancels(e) {
  415. const that = this;
  416. uni.showModal({
  417. title: '提示',
  418. content: '确定取消订单吗?',
  419. success: async function(res) {
  420. if (res.confirm) {
  421. let arr = await that.$api(`/afterSale`, 'POST', {
  422. order_detail: e._id,
  423. type: '4'
  424. })
  425. if (arr.errcode == '0') {
  426. uni.showToast({
  427. title: '申请取消订单完成',
  428. icon: 'none'
  429. })
  430. that.clearPage();
  431. that.search();
  432. } else {
  433. uni.showToast({
  434. title: arr.errmsg,
  435. icon: 'none'
  436. })
  437. }
  438. }
  439. }
  440. });
  441. },
  442. // 查看物流
  443. toLogi(e) {
  444. const that = this;
  445. that.clearPage();
  446. uni.navigateTo({
  447. url: `/pagesMy/logistics/index?id=${e._id}&type=${'order'}`
  448. })
  449. },
  450. // 确认收货
  451. async toConfirm(e) {
  452. const that = this;
  453. uni.showModal({
  454. title: '提示',
  455. content: '确定确认收货吗?',
  456. success: async function(res) {
  457. if (res.confirm) {
  458. const arr = await that.$api(`/orderDetail/${e._id}`, 'POST', {
  459. status: '3'
  460. });
  461. if (arr.errcode == '0') {
  462. uni.showToast({
  463. title: '确认收货成功',
  464. icon: 'none'
  465. })
  466. that.clearPage();
  467. that.search();
  468. } else {
  469. uni.showToast({
  470. title: arr.errmsg,
  471. icon: 'none'
  472. })
  473. }
  474. }
  475. }
  476. });
  477. },
  478. // 拒收
  479. async toReject(e) {
  480. const that = this;
  481. uni.showModal({
  482. title: '提示',
  483. content: '确定拒收快递吗?',
  484. success: async function(res) {
  485. if (res.confirm) {
  486. let arr = await that.$api(`/afterSale`, 'POST', {
  487. order_detail: e._id,
  488. type: '5'
  489. })
  490. if (arr.errcode == '0') {
  491. uni.showToast({
  492. title: '拒收申请完成',
  493. icon: 'none'
  494. })
  495. that.clearPage();
  496. that.search();
  497. } else {
  498. uni.showToast({
  499. title: arr.errmsg,
  500. icon: 'none'
  501. })
  502. }
  503. }
  504. }
  505. });
  506. },
  507. // 立即评价
  508. toAppraise(e) {
  509. const that = this;
  510. that.clearPage();
  511. uni.navigateTo({
  512. url: `/pagesMy/order/appraise?id=${e._id}&status=${'0'}`
  513. })
  514. },
  515. // 申请售后
  516. toAfter(e) {
  517. const that = this;
  518. that.clearPage();
  519. uni.navigateTo({
  520. url: `/pagesMy/order/service?id=${e._id}&status=${e.status}`
  521. })
  522. },
  523. // 查询其他信息
  524. async searchOther() {
  525. const that = this;
  526. let res;
  527. // 查询状态
  528. res = await that.$api(`/dictData`, 'GET', {
  529. code: 'order_process'
  530. })
  531. if (res.errcode == '0') {
  532. that.$set(that, `statusList`, res.data);
  533. var menu = res.data.map((item) => {
  534. return {
  535. title: item.label,
  536. active: item.value
  537. }
  538. })
  539. that.$set(that.tabs, `menu`, menu)
  540. }
  541. },
  542. // 选择选项卡
  543. tabsChange(e) {
  544. const that = this;
  545. that.$set(that.tabs, `active`, e.active)
  546. that.$set(that, `status`, e.active);
  547. that.clearPage();
  548. that.search()
  549. },
  550. // 清空列表
  551. clearPage() {
  552. const that = this;
  553. that.$set(that, `list`, [])
  554. that.$set(that, `skip`, 0)
  555. that.$set(that, `limit`, 6)
  556. that.$set(that, `page`, 0)
  557. }
  558. },
  559. }
  560. </script>
  561. <style lang="scss">
  562. .main {
  563. display: flex;
  564. flex-direction: column;
  565. width: 100vw;
  566. height: 100vh;
  567. .one {
  568. padding: 2vw;
  569. input {
  570. padding: 2vw;
  571. background-color: var(--f1Color);
  572. font-size: var(--font14Size);
  573. border-radius: 5px;
  574. }
  575. }
  576. .two {
  577. position: relative;
  578. flex-grow: 1;
  579. background-color: var(--f9Color);
  580. .tabsList {
  581. position: relative;
  582. width: 100vw;
  583. height: 82vh;
  584. .list {
  585. background-color: #fff;
  586. border: 1px solid var(--f5Color);
  587. padding: 2vw;
  588. margin: 0 2vw 2vw 2vw;
  589. border-radius: 5px;
  590. .list_1 {
  591. .goods {
  592. .goodsList {
  593. border-bottom: 1px solid #f1f1f1;
  594. .shopname {
  595. display: flex;
  596. justify-content: space-between;
  597. margin: 0 0 2vw 0;
  598. .shop {
  599. text:last-child {
  600. padding: 0 0 0 2vw;
  601. }
  602. .r {
  603. .set {
  604. margin: 0 1vw 0 0;
  605. font-size: 12px;
  606. border-radius: 5px;
  607. padding: 0 1vw;
  608. color: #ffffff;
  609. background-color: #FF6347;
  610. border: 1px solid #FFA500;
  611. }
  612. }
  613. }
  614. .status {
  615. text-align: right;
  616. color: var(--ff0Color);
  617. margin: 0 0 1vw 0;
  618. }
  619. }
  620. .goodsList_1 {
  621. .market {
  622. display: flex;
  623. padding: 0 0 2vw 0;
  624. .market_1 {
  625. width: 20vw;
  626. height: 20vw;
  627. .image {
  628. width: 100%;
  629. height: 100%;
  630. border-radius: 5px;
  631. }
  632. }
  633. .market_2 {
  634. width: 55vw;
  635. padding: 0 0 0 2vw;
  636. .goodsname {
  637. font-size: 16px;
  638. margin: 0 0 1vw 0;
  639. }
  640. .specs {
  641. font-size: 14px;
  642. color: #858585;
  643. }
  644. .gift {
  645. margin: 0 1vw 0 0;
  646. font-size: 12px;
  647. color: #FFA500;
  648. border: 1px solid #FFA500;
  649. border-radius: 5px;
  650. padding: 0 1vw;
  651. }
  652. .act {
  653. font-size: 12px;
  654. border: 1px solid var(--fFB1Color);
  655. color: var(--fFB1Color);
  656. border-radius: 5px;
  657. padding: 0 1vw;
  658. }
  659. }
  660. .market_3 {
  661. width: 15vw;
  662. text-align: right;
  663. .price {
  664. color: #ff0000;
  665. }
  666. }
  667. }
  668. }
  669. }
  670. }
  671. .other {
  672. padding: 0 0 2vw 0;
  673. margin: 2vw 0;
  674. text-align: right;
  675. border-bottom: 1px solid #f1f1f1;
  676. text {
  677. font-size: 14px;
  678. padding: 0 0 0 2vw;
  679. }
  680. }
  681. }
  682. .list_2 {
  683. .list_2_1 {
  684. display: flex;
  685. justify-content: space-between;
  686. margin: 0 0 2vw 0;
  687. .shopname {
  688. text:last-child {
  689. padding: 0 0 0 2vw;
  690. }
  691. .r {
  692. .set {
  693. margin: 0 1vw 0 0;
  694. font-size: 12px;
  695. border-radius: 5px;
  696. padding: 0 1vw;
  697. color: #ffffff;
  698. background-color: #FF6347;
  699. border: 1px solid #FFA500;
  700. }
  701. }
  702. }
  703. .status {
  704. color: var(--ff0Color);
  705. }
  706. }
  707. .list_2_2 {
  708. border-bottom: 1px solid #f1f1f1;
  709. .goods {
  710. display: flex;
  711. padding: 0 0 2vw 0;
  712. .goods_1 {
  713. width: 20vw;
  714. height: 20vw;
  715. .image {
  716. width: 100%;
  717. height: 100%;
  718. border-radius: 5px;
  719. }
  720. }
  721. .goods_2 {
  722. width: 55vw;
  723. padding: 0 0 0 2vw;
  724. .goodsname {
  725. font-size: 16px;
  726. margin: 0 0 1vw 0;
  727. }
  728. .specs {
  729. font-size: 14px;
  730. color: #858585;
  731. }
  732. .gift {
  733. margin: 0 1vw 0 0;
  734. font-size: 12px;
  735. color: #FFA500;
  736. border: 1px solid #FFA500;
  737. border-radius: 5px;
  738. padding: 0 1vw;
  739. }
  740. .act {
  741. font-size: 12px;
  742. border: 1px solid var(--fFB1Color);
  743. color: var(--fFB1Color);
  744. border-radius: 5px;
  745. padding: 0 1vw;
  746. }
  747. }
  748. .goods_3 {
  749. width: 15vw;
  750. text-align: right;
  751. .price {
  752. color: #ff0000;
  753. }
  754. }
  755. }
  756. }
  757. .other {
  758. padding: 0 0 2vw 0;
  759. margin: 2vw 0;
  760. text-align: right;
  761. border-bottom: 1px solid #f1f1f1;
  762. text {
  763. font-size: 14px;
  764. padding: 0 0 0 2vw;
  765. }
  766. }
  767. }
  768. .btn {
  769. text-align: right;
  770. button {
  771. margin: 0 2vw 0 0;
  772. }
  773. }
  774. }
  775. }
  776. }
  777. }
  778. .scroll-view {
  779. position: absolute;
  780. top: 0;
  781. left: 0;
  782. right: 0;
  783. bottom: 0;
  784. .list-scroll-view {
  785. display: flex;
  786. flex-direction: column;
  787. }
  788. }
  789. .is_bottom {
  790. text-align: center;
  791. text {
  792. padding: 2vw 0;
  793. display: inline-block;
  794. color: #858585;
  795. font-size: 14px;
  796. }
  797. }
  798. </style>