index.vue 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876
  1. <template>
  2. <page :nav="false" ref="pageRef">
  3. <view
  4. class="detailWrapper"
  5. :style="'background-image:url(' + ossurl.box.headbj + ')'"
  6. >
  7. <view
  8. class="pagae-nav"
  9. :style="{ paddingTop: statusBarHeight + 'px', background: headerBg }"
  10. >
  11. <view class="flex-align-center relative" style="height: 80rpx">
  12. <text class="cuIcon-back back" @click.stop="back"></text>
  13. <view v-if="data" class="title line-ellipsis">
  14. {{ data && data.name }}
  15. </view>
  16. </view>
  17. </view>
  18. <view :style="{ height: 72 + statusBarHeight * 2 + 'rpx' }"></view>
  19. <top
  20. v-if="data"
  21. :data="data"
  22. :horse="horse"
  23. @onShowRecord="showRecord"
  24. @onShowUpdate="showUpdate"
  25. :type="2"
  26. />
  27. <view class="SwiperBox">
  28. <swiper
  29. class="productSwiper"
  30. :indicator-dots="false"
  31. circular="true"
  32. :autoplay="false"
  33. interval="5000"
  34. duration="500"
  35. :current="current"
  36. @change="handleChange"
  37. >
  38. <swiper-item
  39. v-for="(item, index) in products"
  40. :key="index"
  41. @click="showSwipe(index)"
  42. >
  43. <view class="imageBox">
  44. <image :src="item.cover" mode="aspectFit" />
  45. </view>
  46. <view
  47. class="level"
  48. :style="{ backgroundImage: 'url(' + ossurl.mine.butbj + ')' }"
  49. >
  50. {{ getLevel(item.level) }}({{ getProbability(item) }})
  51. </view>
  52. </swiper-item>
  53. </swiper>
  54. <view class="prev" @click="handlePrev" v-if="current !== 0">
  55. <image :src="ossurl.box.detail.left" mode="aspectFit" />
  56. </view>
  57. <view class="next" @click="handleNext" v-if="products&&current !== products.length - 1">
  58. <image :src="ossurl.box.detail.right" mode="aspectFit" />
  59. </view>
  60. </view>
  61. <view class="swiperBottom">
  62. <image :src="ossurl.box.detail.bottom" style="width: 100%;" mode="widthFix" />
  63. </view>
  64. </view>
  65. <!-- v-if="box && box.lock"-->
  66. <view class="lockTimeBox" v-if="box && box.lock">
  67. 剩余时间:
  68. <view class="lockTimeBarBox">
  69. <view class="lockTime">
  70. <view
  71. class="processBar"
  72. :style="{ right: 'calc(100% - ' + leftNum + '%)' }"
  73. ></view>
  74. </view>
  75. <view class="line" :style="{ left: leftNum + '%' }"></view>
  76. <view class="text" :style="{ left: 'calc(' + leftNum + '% - 26rpx)' }">
  77. {{ leftTime }}s
  78. </view>
  79. </view>
  80. </view>
  81. <first-last
  82. v-if="box && box.prizeList"
  83. :data="data"
  84. :box="box"
  85. :prizeList="box.prizeList"
  86. @nextBox="nextBox"
  87. @preBox="preBox"
  88. @showBox="showBox"
  89. />
  90. <product-a
  91. v-if="products"
  92. :products="products"
  93. :poolId="poolId"
  94. :box="box"
  95. :levelist="probability"
  96. />
  97. <view class="bottom paddingX10" v-if="data && box">
  98. <view class="bottom-btns flex-align-around">
  99. <view
  100. class="relative btnItem"
  101. @click="pay(1)"
  102. :style="{ backgroundImage: 'url(' + ossurl.box.detail.yfBtn + '); color: #000;' }"
  103. >
  104. 一发入魂
  105. <view v-if="$valid.isNumber2(data.specialPrice)" class="text">
  106. (¥{{ data.specialPrice }})
  107. </view>
  108. <view v-else class="text">(¥{{ data.price }})</view>
  109. </view>
  110. <view
  111. class="relative btnItem"
  112. @click="pay(5)"
  113. :style="{ backgroundImage: 'url(' + ossurl.box.detail.wlBtn + ')' }"
  114. >
  115. 五连绝世
  116. <view v-if="data.specialPriceFive" class="text">
  117. (¥{{ data.specialPriceFive }})
  118. </view>
  119. <view v-else class="text">(¥{{ data.price * 5 }})</view>
  120. </view>
  121. <view
  122. class="relative btnItem"
  123. @click="$refs.numRef.show(box)"
  124. :style="{ backgroundImage: 'url(' + ossurl.box.detail.csBtn + ')' }"
  125. >
  126. 自由超神
  127. </view>
  128. </view>
  129. </view>
  130. <image class="ck" :src="ossurl.box.detail.warehouse" webp @click="showCK" mode="widthFix" />
  131. <image class="mj" :src="ossurl.box.detail.stone" v-if="user" webp @click="$router.push('magic')" mode="widthFix" />
  132. <image class="record" :src="ossurl.box.detail.record" webp @click="showRecord" mode="widthFix" />
  133. <image class="rule" :src="ossurl.box.detail.rule" webp @click="showRule" mode="widthFix" />
  134. <image class="refresh" :src="ossurl.box.detail.refresh" webp @click="refreshBox(true)" mode="widthFix" />
  135. <!-- 锁定 -->
  136. <image
  137. v-if="box && !box.lock"
  138. class="lock"
  139. :src="ossurl.box.detail.lock"
  140. webp
  141. @click="boxLock"
  142. mode="widthFix"
  143. />
  144. <!-- 解锁 -->
  145. <image
  146. v-if="box && box.lock && user && box.lock.locker === user.userId"
  147. class="lock"
  148. :src="ossurl.box.detail.unlock"
  149. webp
  150. @click="boxUnLock"
  151. mode="widthFix"
  152. />
  153. <image
  154. v-if="
  155. box && box.leftQuantity > 0 && box.lock && user && box.lock.locker === user.userId
  156. "
  157. class="Inclusive"
  158. :src="ossurl.box.detail.Inclusive"
  159. webp
  160. @click="payAll"
  161. mode="widthFix"
  162. />
  163. <box-choose ref="boxRef" v-if="data" :poolId="poolId" @choose="onChooseBox" />
  164. <num-choose ref="numRef" v-if="data" :poolId="poolId" @pay="onNumPay" />
  165. <checkout
  166. ref="checkoutRef"
  167. v-if="data"
  168. :data="data"
  169. @close="onClose"
  170. :poolId="poolId"
  171. @success="onSuccess"
  172. />
  173. <result-com ref="result" :num="num || 0" :periodQuantity="periodQuantity" />
  174. <record ref="recordRef" @close="onClose" :poolId="poolId" />
  175. <hiddenTask ref="hiddenTaskRef" @refresh="init(true)" />
  176. <ruleDialog ref="ruleDialog"></ruleDialog>
  177. </page>
  178. </template>
  179. <script>
  180. import loginMixin from '@/mixin/login'
  181. import resource from '@/utils/resource'
  182. import top from './../award_detail/top'
  183. import official from './../award_detail/official'
  184. import productA from './product_a'
  185. import productB from './../award_detail/product_b'
  186. import checkout from './../award_detail/checkout'
  187. import resultCom from './result_com'
  188. import prince from './../award_detail/prince'
  189. import boxChoose from './box_choose'
  190. import numChoose from './num_choose'
  191. import record from './../award_detail/record'
  192. import levelRatio from './../award_detail/level_ratio'
  193. import firstLast from './first_last'
  194. import hiddenTask from '../hidden_activity/hidden_task_dialog'
  195. import { throttle } from '@/utils'
  196. import ossurl from '@/utils/ossurl'
  197. import { LEVEL_MAP } from '@/utils/config'
  198. import ruleDialog from './ruleDialog'
  199. export default {
  200. mixins: [loginMixin],
  201. components: {
  202. top,
  203. official,
  204. productA,
  205. productB,
  206. checkout,
  207. resultCom,
  208. prince,
  209. boxChoose,
  210. numChoose,
  211. record,
  212. levelRatio,
  213. firstLast,
  214. hiddenTask,
  215. ruleDialog
  216. },
  217. data() {
  218. return {
  219. ossurl,
  220. resource,
  221. poolId: null,
  222. data: null,
  223. products: null,
  224. horse: null,
  225. lock: false,
  226. tableData: null,
  227. periodQuantity: null,
  228. box: null,
  229. boxNum: null,
  230. probability: null,
  231. leftTime: 0,
  232. smartPayFlag: true,
  233. scrollTop: 0,
  234. current: 0
  235. }
  236. },
  237. computed: {
  238. statusBarHeight() {
  239. if (this.$store.state.systemInfo) {
  240. return this.$store.state.systemInfo.statusBarHeight
  241. }
  242. return 20
  243. },
  244. headerBg() {
  245. return this.scrollTop > 0 ? '#fff' : 'transparent'
  246. },
  247. user() {
  248. return this.$store.state.userInfo
  249. },
  250. leftNum() {
  251. return this.box && this.box.lock && this.box.lock.leftTime
  252. ? (this.leftTime / this.box.lock.leftTime) * 100
  253. : 0
  254. }
  255. },
  256. onPageScroll(e) {
  257. this.scrollTop = e.scrollTop
  258. },
  259. onLoad(options) {
  260. this.poolId = options.poolId
  261. this.poolIn()
  262. if(this.$store.state.hide){
  263. this.showRule()
  264. }
  265. },
  266. mounted() {
  267. setTimeout(() => {
  268. this.init(true)
  269. }, 100)
  270. },
  271. onUnload() {
  272. this.poolOut()
  273. this.lockTimeEnd()
  274. },
  275. onShareAppMessage(res) {
  276. return {
  277. title: this.data.name,
  278. path: '/pages/award/index',
  279. imageUrl: this.data.cover
  280. }
  281. },
  282. onShareTimeline() {
  283. return {
  284. title: '燚火漫域 次元聚集地,潮玩新势力',
  285. query: 'poolId=' + this.poolId,
  286. imageUrl: this.data.cover
  287. }
  288. },
  289. methods: {
  290. showSwipe(index) {
  291. this.$router.push('award_detail_swipe', { poolId: this.poolId, index })
  292. },
  293. getLevel(level) {
  294. let item = LEVEL_MAP[level]
  295. if (item) {
  296. return item.title
  297. } else {
  298. return ''
  299. }
  300. },
  301. back() {
  302. this.$router.back()
  303. },
  304. poolIn() {
  305. if (this.$common.isLogin()) {
  306. this.$service.award.poolIn(this.poolId)
  307. }
  308. },
  309. poolOut() {
  310. if (this.$common.isLogin()) {
  311. this.$service.award.poolOut(this.poolId)
  312. }
  313. },
  314. async init(loading = false) {
  315. this.getData(loading)
  316. this.getBox()
  317. this.getHorse()
  318. },
  319. async getData(loading = false) {
  320. const res = await this.$service.award.detail(this.poolId, loading)
  321. this.data = res
  322. res && (this.products = res.luckGoodsList)
  323. this.$refs.princeRef && this.$refs.princeRef.refresh()
  324. },
  325. refreshBox(loading = false) {
  326. this.getBox(this.boxNum, loading)
  327. },
  328. onChooseBox(index) {
  329. this.getBox(index, true)
  330. },
  331. async getBox(num, loading = false) {
  332. const res = await this.$service.award.box(this.poolId, num, loading)
  333. res && this.handleBoxResult(res)
  334. },
  335. handleBoxResult(res) {
  336. let map = {}
  337. if (res.usedStat) {
  338. res.usedStat.forEach((item) => {
  339. map[item.spuId] = item
  340. })
  341. }
  342. res.usedStat = map
  343. this.box = res
  344. this.boxNum = res.number
  345. this.lockTimeStart()
  346. if (res.leftQuantity <= 0) {
  347. this.probability = [
  348. { level: 'A', probability: '0' },
  349. { level: 'B', probability: '0' },
  350. { level: 'C', probability: '0' },
  351. { level: 'D', probability: '0' }
  352. ]
  353. } else {
  354. this.probability = [
  355. {
  356. level: 'A',
  357. probability: ((res.leftQuantityA / res.leftQuantity) * 100).toFixed(4)
  358. },
  359. {
  360. level: 'B',
  361. probability: ((res.leftQuantityB / res.leftQuantity) * 100).toFixed(4)
  362. },
  363. {
  364. level: 'C',
  365. probability: ((res.leftQuantityC / res.leftQuantity) * 100).toFixed(4)
  366. },
  367. {
  368. level: 'D',
  369. probability: ((res.leftQuantityD / res.leftQuantity) * 100).toFixed(4)
  370. }
  371. ]
  372. }
  373. },
  374. async getHorse() {
  375. const res = await this.$service.award.detailHorse(this.poolId)
  376. this.horse = res
  377. },
  378. async preBox() {
  379. if (this.boxNum <= 1) return
  380. const res = await this.$service.award.preBox(this.poolId, this.boxNum)
  381. res && this.handleBoxResult(res)
  382. },
  383. async nextBox() {
  384. if (this.boxNum >= this.box.lastNumber) return
  385. const res = await this.$service.award.nextBox(this.poolId, this.boxNum)
  386. res && this.handleBoxResult(res)
  387. },
  388. showBox(){
  389. this.$refs.boxRef.show()
  390. },
  391. async pay(num) {
  392. throttle.call(() => {
  393. this.previewPay(num)
  394. })
  395. },
  396. async previewPay(num) {
  397. if (!this.$common.isLogin()) {
  398. this.$router.push('login')
  399. return
  400. }
  401. const res = await this.$service.award.preview(this.poolId, num, this.box.number)
  402. if (res) {
  403. this.$refs.checkoutRef.show(num, res, this.boxNum)
  404. this.lock = true
  405. }
  406. },
  407. async payAll() {
  408. if (!this.$common.isLogin()) {
  409. this.$router.push('login')
  410. return
  411. }
  412. const res = await this.$service.award.preview(
  413. this.poolId,
  414. 1,
  415. this.box.number,
  416. null,
  417. 1
  418. )
  419. if (res) {
  420. this.$refs.checkoutRef.show(res['quantity'], res, this.boxNum, null, 1)
  421. this.lock = true
  422. }
  423. },
  424. async onNumPay({ res, chooseNum, boxNum }) {
  425. this.$refs.checkoutRef.show(chooseNum.length, res, this.boxNum, chooseNum)
  426. },
  427. showCK() {
  428. this.$router.push('store')
  429. },
  430. onClose() {
  431. this.lock = false
  432. },
  433. onSuccess({ tradeNo }) {
  434. this.$refs.numRef && this.$refs.numRef.close()
  435. this.lock = false
  436. this.$message.showLoading()
  437. this.tradeNo = tradeNo
  438. this.getResult(0)
  439. if (this.$store.state.hide == 1) {
  440. this.$service.user.getHide()
  441. this.pageConfig('magic_luck')
  442. }
  443. //菊花刷新
  444. },
  445. async pageConfig(key) {
  446. const res = await this.$service.base.pageConfig(key)
  447. let pageConfig = this.$store.state.pageConfig || {}
  448. pageConfig[key] = res
  449. this.$store.commit(SET_PAGE_CONFIG, { ...pageConfig })
  450. },
  451. getResult(count) {
  452. setTimeout(async () => {
  453. await this.getResultData()
  454. if (this.tableData && this.tableData.length > 0) {
  455. this.$message.hideLoading()
  456. this.showResult()
  457. } else {
  458. if (count < 4) {
  459. this.initData(count + 1)
  460. } else {
  461. this.fail()
  462. }
  463. }
  464. }, 500)
  465. },
  466. async getResultData() {
  467. const res = await this.$service.award.applyResult(this.tradeNo)
  468. if (res && res.inventoryList) {
  469. let array = res.inventoryList
  470. if (res.magicFireworksList && res.magicFireworksList.length > 0) {
  471. array = [...res.magicFireworksList, ...res.inventoryList]
  472. }
  473. this.tableData = array
  474. if (res.kingRealtime) {
  475. this.periodQuantity = res.kingRealtime.periodQuantity
  476. }
  477. if (res.richmanTicketRealtime && res.richmanTicketRealtime.changeTicket) {
  478. this.changeTicket = res.richmanTicketRealtime.changeTicket
  479. } else {
  480. this.changeTicket = 0
  481. }
  482. this.refreshBox()
  483. }
  484. const spuIds = res.inventoryList.map((item) => item.spu.id)
  485. const hideRes = await this.$service.award.hideTaskStart(JSON.stringify(spuIds))
  486. if (hideRes === 1 || hideRes === 2) {
  487. this.$refs.hiddenTaskRef.show(hideRes)
  488. }
  489. return true
  490. },
  491. async showResult() {
  492. if (this.tableData && this.tableData.length > 0) {
  493. let array = [...this.tableData]
  494. this.$refs.result.show(array, this.changeTicket)
  495. }
  496. },
  497. async fail() {
  498. this.$message.hideLoading()
  499. this.tableData = null
  500. this.$message.confirm(
  501. '购买结果请至订单详情查看',
  502. () => {
  503. this.$router.push('order_award')
  504. },
  505. '',
  506. ['去查看', '取消']
  507. )
  508. },
  509. showRecord() {
  510. this.$refs.recordRef.show()
  511. this.lock = true
  512. },
  513. async boxLock() {
  514. if (!this.$common.isLogin()) {
  515. this.$router.push('login')
  516. return
  517. }
  518. await this.$service.award.boxLock(this.poolId, this.boxNum)
  519. this.refreshBox(true)
  520. },
  521. async boxUnLock() {
  522. await this.$service.award.boxUnLock(this.poolId, this.boxNum)
  523. this.refreshBox(true)
  524. },
  525. lockTimeStart() {
  526. this.lockTimeEnd()
  527. if (this.box && this.box.lock) {
  528. this.leftTime = this.box.lock.leftTime
  529. this.timer = setInterval(() => {
  530. this.leftTime -= 1
  531. if (this.leftTime <= 0) {
  532. this.lockTimeEnd()
  533. this.getBox()
  534. }
  535. }, 1000)
  536. }
  537. },
  538. lockTimeEnd() {
  539. if (this.timer) {
  540. clearInterval(this.timer)
  541. this.timer = null
  542. }
  543. this.leftTime = 0
  544. },
  545. closeSmartTitle() {
  546. this.smartPayFlag = false
  547. },
  548. showRule() {
  549. // this.$router.push('playing_method', { type: 2 })
  550. this.$refs.ruleDialog.visible = true
  551. },
  552. handleChange(e) {
  553. this.current = e.detail.current
  554. },
  555. handlePrev() {
  556. this.current -= 1
  557. },
  558. handleNext() {
  559. this.current += 1
  560. },
  561. getLeftNum(row) {
  562. if (
  563. !this.box ||
  564. !this.box.usedStat ||
  565. !this.box.usedStat[row.spu.id] ||
  566. !this.box.usedStat[row.spu.id].quantity
  567. ) {
  568. return row.quantity
  569. }
  570. return row.quantity - this.box.usedStat[row.spu.id].quantity
  571. },
  572. getProbability(row) {
  573. if (!this.box) return
  574. let leftNum = this.getLeftNum(row)
  575. return (
  576. this.$common.ignoreRatio0(
  577. ((leftNum / this.box.leftQuantity) * 100).toFixed(4)
  578. ) + '%'
  579. )
  580. }
  581. }
  582. }
  583. </script>
  584. <style></style>
  585. <style lang="scss" scoped>
  586. .award-detail {
  587. padding-bottom: calc(136rpx + env(safe-area-inset-bottom));
  588. }
  589. .detailWrapper {
  590. background-size: 100% auto;
  591. background-repeat: no-repeat;
  592. height: 1240rpx;
  593. .SwiperBox {
  594. position: relative;
  595. .prev,
  596. .next {
  597. position: absolute;
  598. top: 20%;
  599. z-index: 90;
  600. image {
  601. width: 108rpx;
  602. height: 108rpx;
  603. }
  604. }
  605. .prev {
  606. left: 0;
  607. }
  608. .next {
  609. right: 0;
  610. }
  611. }
  612. .productSwiper {
  613. height: 750rpx;
  614. .imageBox {
  615. text-align: center;
  616. height: 40.5vh;
  617. font-size: 0;
  618. line-height: 0;
  619. image {
  620. width: 520rpx;
  621. height: 40.5vh;
  622. animation: animateImage 3s;
  623. animation-play-state: running;
  624. animation-iteration-count: infinite;
  625. animation-timing-function: linear;
  626. }
  627. }
  628. .level {
  629. text-align: center;
  630. font-size: 24rpx;
  631. font-family: Alimama ShuHeiTi, Alimama ShuHeiTi;
  632. font-weight: 700;
  633. color: #333;
  634. background-size: 272rpx 62rpx;
  635. background-position: center;
  636. background-repeat: no-repeat;
  637. line-height: 62rpx;
  638. }
  639. @keyframes animateImage {
  640. from,
  641. to {
  642. transform: translate3d(0, 0, 0);
  643. }
  644. 25% {
  645. transform: translate3d(0, 10px, 0);
  646. }
  647. 50% {
  648. transform: translate3d(0, 0, 0);
  649. }
  650. 75% {
  651. transform: translate3d(0, -10px, 0);
  652. }
  653. 100% {
  654. transform: translate3d(0, 0, 0);
  655. }
  656. }
  657. }
  658. }
  659. .pagae-nav {
  660. position: fixed;
  661. left: 0;
  662. top: 0;
  663. width: 100%;
  664. z-index: 100;
  665. align-items: center;
  666. .title {
  667. font-size: 30rpx;
  668. font-weight: bold;
  669. text-align: center;
  670. line-height: 72rpx;
  671. width: 500rpx;
  672. }
  673. .back {
  674. z-index: 1800;
  675. font-size: 32rpx;
  676. line-height: 32rpx;
  677. position: absolute;
  678. left: 20rpx;
  679. top: 24rpx;
  680. }
  681. }
  682. .bg {
  683. position: fixed;
  684. z-index: -1;
  685. left: 0;
  686. right: 0;
  687. top: 0;
  688. width: 100%;
  689. height: 100%;
  690. }
  691. .smart_pay {
  692. height: 50rpx;
  693. background: linear-gradient(90deg, #3800b3 0%, #655b82 100%);
  694. margin: 20rpx 28rpx;
  695. border-radius: 20rpx;
  696. padding: 0 20rpx;
  697. color: #fff;
  698. line-height: 50rpx;
  699. .smart_rule {
  700. display: inline-block;
  701. width: 36rpx;
  702. height: 36rpx;
  703. line-height: 30rpx;
  704. margin: 0 0 0 10rpx;
  705. vertical-align: text-top;
  706. }
  707. .smart_X {
  708. position: absolute;
  709. right: 20rpx;
  710. top: 5rpx;
  711. width: 32rpx;
  712. height: 32rpx;
  713. }
  714. }
  715. .fill-height {
  716. height: 168rpx;
  717. }
  718. .bottom {
  719. position: fixed;
  720. left: 0;
  721. right: 0;
  722. bottom: 0;
  723. background: #373737;
  724. height: 168rpx;
  725. padding-bottom: 40rpx;
  726. z-index: 20;
  727. .bottom-btns {
  728. height: 128rpx;
  729. .btnItem {
  730. font-size: 28rpx;
  731. font-family: Source Han Sans CN, Source Han Sans CN;
  732. font-weight: 700;
  733. color: #ffffff;
  734. line-height: 44rpx;
  735. background-size: 100% 100%;
  736. padding: 20rpx 12rpx;
  737. text-align: center;
  738. flex: 1;
  739. margin: 0 13rpx;
  740. .text {
  741. display: inline-block;
  742. font-size: 18rpx;
  743. line-height: 18rpx;
  744. }
  745. &:first-child {
  746. margin-left: 0;
  747. }
  748. &:last-child {
  749. margin-right: 0;
  750. }
  751. }
  752. }
  753. .image {
  754. height: 108rpx;
  755. width: 0;
  756. }
  757. }
  758. .sw,
  759. .mj,
  760. .ck {
  761. position: fixed;
  762. right: 0rpx;
  763. width: 84rpx;
  764. }
  765. .mj {
  766. bottom: 800rpx;
  767. }
  768. .sw {
  769. bottom: 540rpx;
  770. width: 128rpx;
  771. height: 128rpx;
  772. }
  773. .ck {
  774. bottom: 690rpx;
  775. }
  776. .record {
  777. position: fixed;
  778. left: 0rpx;
  779. width: 96rpx;
  780. bottom: 670rpx;
  781. }
  782. .rule {
  783. position: fixed;
  784. left: 10rpx;
  785. bottom: 800rpx;
  786. width: 84rpx;
  787. }
  788. .refresh {
  789. position: fixed;
  790. right: 0rpx;
  791. width: 84rpx;
  792. bottom: 580rpx;
  793. }
  794. .lock {
  795. position: fixed;
  796. left: 10rpx;
  797. width: 84rpx;
  798. height: 96rpx;
  799. bottom: 540rpx;
  800. }
  801. .Inclusive {
  802. position: fixed;
  803. right: 0rpx;
  804. bottom: 460rpx;
  805. width: 96rpx;
  806. height: 96rpx;
  807. }
  808. .lockTimeBox {
  809. display: flex;
  810. align-items: center;
  811. padding: 20rpx;
  812. background-color: #fde9dd;
  813. padding-bottom: 0;
  814. font-size: 24rpx;
  815. .lockTimeBarBox {
  816. position: relative;
  817. flex: 1;
  818. height: 60rpx;
  819. .line {
  820. width: 4rpx;
  821. height: 24rpx;
  822. background: #fead33;
  823. border-radius: 4rpx;
  824. left: 0;
  825. right: 0;
  826. bottom: 16rpx;
  827. position: absolute;
  828. }
  829. .text {
  830. position: absolute;
  831. line-height: 26rpx;
  832. width: 54rpx;
  833. text-align: center;
  834. font-size: 20rpx;
  835. background: #000;
  836. color: #fff;
  837. top: -20rpx;
  838. &::after {
  839. content: '';
  840. display: block;
  841. border: 8rpx solid;
  842. border-color: #000 transparent transparent transparent;
  843. position: absolute;
  844. bottom: -16rpx;
  845. left: 20rpx;
  846. z-index: 100;
  847. }
  848. }
  849. }
  850. .lockTime {
  851. border-radius: 16rpx;
  852. height: 16rpx;
  853. background: rgba(255, 255, 255, 0.63);
  854. position: absolute;
  855. bottom: 20rpx;
  856. left: 0;
  857. right: 0;
  858. overflow: hidden;
  859. .processBar {
  860. position: absolute;
  861. left: 0;
  862. height: 16rpx;
  863. background: linear-gradient(270deg, #fec433 0%, #fead33 100%);
  864. }
  865. }
  866. }
  867. </style>