my-popup.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624
  1. <template>
  2. <uni-popup ref="popup" :mask-click="false" maskBackgroundColor="rgba(0, 0, 0, 0.6)">
  3. <swiper ref="swiper" class="swiper" :style="getSwiperStyle()" :current="swiperCurrent"
  4. @change="swiperChange" :indicator-dots="dataList.length > 1" indicator-active-color="rgba(46, 133, 236, 1)"
  5. :autoplay="false" :interval="5000">
  6. <swiper-item v-for="(item, index) in dataList" :key="index">
  7. <!-- 标题 + 图片 + 活动时间 + 活动简介 -->
  8. <view v-if="item.type == 1" class="swiper-item-view uni-column">
  9. <text class="swiper-item-title" v-html="item.data.title"></text>
  10. <view class="swiper-item-main uni-column uni-jcse">
  11. <image mode="aspectFit" class="swiper-item-image" :src="item.data.img"></image>
  12. <view class="swiper-item-time uni-row">
  13. <image mode="aspectFit" class="clock" src="/static/default/clock.png"></image>
  14. <text class="acttime">{{acttime}}</text>
  15. </view>
  16. <view class="swiper-item-content uni-column">
  17. <text class="introduce-content" v-html="item.data.content"></text>
  18. </view>
  19. </view>
  20. <button v-if="index < dataList.length - 1" class="swiper-item-button" @click="swiperNext">继
  21. 续</button>
  22. <button v-else class="swiper-item-button" @click="popupClose">确 定</button>
  23. </view>
  24. <!-- 标题 + 图片 -->
  25. <view v-if="item.type == 2" class="swiper-item-view uni-column">
  26. <text class="swiper-item-title" v-html="item.data.title"></text>
  27. <view class="swiper-item-main uni-column">
  28. <image mode="aspectFit" :style="getImageStyle2(item.data.imgParam)"
  29. :src="item.data.img">
  30. </image>
  31. </view>
  32. <button v-if="index < dataList.length - 1" class="swiper-item-button" @click="swiperNext">继
  33. 续</button>
  34. <button v-else class="swiper-item-button" @click="popupClose">确 定</button>
  35. </view>
  36. <!-- 【成就-奖牌】 标题 + 图片 + 活动简介 -->
  37. <view v-if="item.type == 3" class="swiper-item-view swiper-item-view-bg uni-column">
  38. <text class="swiper-item-title" v-html="item.data.title"></text>
  39. <view class="swiper-item-main uni-column uni-jcse">
  40. <image mode="aspectFit" style="height: 140px; margin-top: 25px;" :src="item.data.img"></image>
  41. <text class="swiper-item-content2" v-html="item.data.content"></text>
  42. </view>
  43. <button v-if="index < dataList.length - 1" class="swiper-item-button" @click="swiperNext">继
  44. 续</button>
  45. <button v-else class="swiper-item-button" @click="popupClose">确 定</button>
  46. </view>
  47. <!-- 【成就-兑换】 标题 + 图片 + 二维码 -->
  48. <view v-if="item.type == 4" class="swiper-item-view swiper-item-view-bg2 uni-jct uni-column">
  49. <view v-if="item.data.sponsorsLogo" class="sponsorsLogo" :style="getSponsorsLogoStyle(item.data.sponsorsLogo)"></view>
  50. <text class="swiper-item-title" v-html="item.data.title"></text>
  51. <view class="swiper-item-main uni-column uni-jcse">
  52. <view class="uni-column uni-jcse" style="height: 50px;">
  53. <text class="swiper-item-content3" v-html="item.data.content"></text>
  54. <text class="swiper-item-content4">【{{item.data.sourceName}}】</text>
  55. </view>
  56. <image class="swiper-item-image2" mode="aspectFit" :src="item.data.img"></image>
  57. <template v-if="[1,3].includes(item.data.exState)">
  58. <!-- verfType: 兑换券展示类型 1 本系统核销 2 赞助商提供码核销 3 赞助商不提供码核销 -->
  59. <uv-qrcode v-if="item.data.verfType==1" ref="qrcode" size="100px" :value="item.data.qrCode">
  60. <!-- <template v-slot:loading>
  61. <text style="color: green;">loading...</text>
  62. </template> -->
  63. </uv-qrcode>
  64. <view v-if="item.data.verfType==2" class="swiper-item-couponNum">券码:{{item.data.otherSerCode}}</view>
  65. <view v-if="item.data.expireTime > 0" class="swiper-item-content4" style="color: #ED0000;">( 有效期至
  66. {{fmtTime(item.data.expireTime, 1)}}
  67. <span v-if="item.data.exState == 3" style="color: #ffaa00; font-size: bold;">已临期</span>
  68. )
  69. </view>
  70. <view v-if="item.data.cDesc.length > 0" class="swiper-item-desc" v-html="item.data.cDesc"></view>
  71. </template>
  72. <view v-if="item.data.exState == 2" class="uni-column uni-jcse" style="height: 100px;">
  73. <text style="color: red;">已兑换</text>
  74. <text class="swiper-item-content4">( 兑换时间 {{fmtTime(item.data.exTime, 3)}} )</text>
  75. </view>
  76. <view v-if="item.data.exState == 4" class="uni-column uni-jcse" style="height: 100px;">
  77. <text style="color: red;">已过期</text>
  78. <text v-if="item.data.expireTime > 0" class="swiper-item-content4">( 过期时间
  79. {{fmtTime(item.data.expireTime, 1)}} )</text>
  80. </view>
  81. </view>
  82. <button v-if="index < dataList.length - 1" class="swiper-item-button" @click="swiperNext">继
  83. 续</button>
  84. <button v-else class="swiper-item-button" @click="popupClose">关 闭</button>
  85. </view>
  86. <!-- 【兑换地点 - 单点】标题 + 图片(点击图片打开地图APP进行地点定位) -->
  87. <view v-if="item.type == 5" class="swiper-item-view uni-column">
  88. <text class="swiper-item-title" v-html="item.data.title"></text>
  89. <view class="swiper-item-main uni-column">
  90. <image mode="aspectFit" style="height: 237px; margin-top: 15px; margin-bottom: 25px;"
  91. :src="item.data.img" @click="dealNavClick(item.data.point)">
  92. </image>
  93. </view>
  94. <button v-if="index < dataList.length - 1" class="swiper-item-button" @click="swiperNext">继
  95. 续</button>
  96. <button v-else class="swiper-item-button" @click="popupClose">确 定</button>
  97. </view>
  98. <!-- 通知 -->
  99. <view v-if="item.type == 6" class="swiper-item-view uni-column">
  100. <text class="swiper-item-title" v-html="item.data.title"></text>
  101. <view class="swiper-item-main uni-column uni-jcse">
  102. <!-- mqType 消息类型 2:卡片图片 3:卡片文字 -->
  103. <image v-if="item.data.mqType == 2" mode="aspectFit"
  104. style="height: 237px; margin-bottom: 25px;" :src="item.data.message">
  105. </image>
  106. <text v-if="item.data.mqType == 3" class="swiper-item-message"
  107. v-html="item.data.message"></text>
  108. </view>
  109. <button v-if="index < dataList.length - 1" class="swiper-item-button" style="width: 50%;" @click="swiperNext">继
  110. 续</button>
  111. <view v-else class="uni-row" style="width: 100%;">
  112. <button class="swiper-item-button" style="width: 50%;" @click="popupClose">确 定</button>
  113. <text class="swiper-item-noMoreReminders" @click="onNoMoreRemindersClick">不再提醒</text>
  114. </view>
  115. </view>
  116. <!-- 标题 + HTML内容 + 图片(可为空) -->
  117. <view v-if="item.type == 7" class="swiper-item-view uni-column">
  118. <image v-if="item.data.topLogo" class="swiper-item-topLogo"
  119. :style="getImageStyle(item.data.topLogo)" mode="aspectFit" :src="item.data.topLogo.src"></image>
  120. <text class="swiper-item-title" v-html="item.data.title"></text>
  121. <image v-if="item.data.logo" class="swiper-item-logo"
  122. :style="getImageStyle(item.data.logo)" mode="aspectFit" :src="item.data.logo.src"></image>
  123. <text v-if="item.data.logo && item.data.logo.memo" class="swiper-item-logoMemo" v-html="item.data.logo.memo"></text>
  124. <view class="swiper-item-main uni-column uni-jcse">
  125. <view class="swiper-item-content5">
  126. <view v-if="item.data.content" v-html="item.data.content"></view>
  127. <view v-if="item.data.imageList" class="uni-row uni-jcse" style="margin-top: 20px;">
  128. <image v-for="(item, index) in item.data.imageList" :key="index" mode="aspectFit"
  129. :style="getImageStyle(item)" :src="item.src"></image>
  130. </view>
  131. <view v-if="item.data.memo" style="padding-top: 10px;" v-html="item.data.memo"></view>
  132. <view v-if="item.data.pointList" style="margin-top: 15px;">
  133. <view class="uni-row uni-jcsb" style="width: 96%; line-height: 22px;" v-for="(point, index) in item.data.pointList" :key="index">
  134. <view class="uni-row uni-jct" style="width: 80%;">
  135. <!-- <text v-if="point.map" class="nowrap" v-html="point.map + ':'"></text> -->
  136. <!-- <text v-if="point.name" class="swiper-item-pointName nowrap" v-html="(point.map ? (point.map + ':' + point.name) : point.name)"></text> -->
  137. <text v-if="point.tel" class="swiper-item-pointName nowrap" v-html="point.tel"></text>
  138. </view>
  139. <view class="uni-row uni-jcsa" style="width: 20%;" @click="dealNavClick(point)">
  140. <image mode="aspectFit" style="width: 10px; height: 15px;" src="/static/common/nav2.png"></image>
  141. <text class="" style="color: #E60012; font-size: 14px;" >导航</text>
  142. </view>
  143. </view>
  144. </view>
  145. </view>
  146. </view>
  147. <image v-if="item.data.bottomLogo" class="swiper-item-bottomLogo" mode="aspectFit"
  148. :style="getImageStyle(item.data.bottomLogo)" :src="item.data.bottomLogo.src"></image>
  149. <button v-if="index < dataList.length - 1" class="swiper-item-button" @click="swiperNext">继
  150. 续</button>
  151. <button v-else class="swiper-item-button" @click="popupClose">确 定</button>
  152. </view>
  153. <!-- 【兑换地点 - 多点】标题 + 头部图片 + 头部memo + 多点导航列表 + 底部memo -->
  154. <view v-if="item.type == 8" class="swiper-item-view uni-column">
  155. <text class="swiper-item-title" v-html="item.data.title"></text>
  156. <image v-if="item.data.topImg" class="" :style="getImageStyle(item.data.topImg)" mode="aspectFit" :src="item.data.topImg.src"></image>
  157. <view v-if="item.data.topMemo" v-html="item.data.topMemo"></view>
  158. <view class="swiper-item-main uni-column uni-jcse">
  159. <view class="swiper-item-content5">
  160. <view v-if="item.data.content" v-html="item.data.content"></view>
  161. <view class="uni-column uni-jcse" style="margin-top: 20px;">
  162. <view class="uni-row uni-jcsb" style="width: 96%; line-height: 30px;" v-for="(point, index) in item.data.pointList" :key="index">
  163. <view class="uni-row uni-jct" style="width: 80%;">
  164. <!-- <text v-if="point.map" class="nowrap" v-html="point.map + ':'"></text> -->
  165. <text v-if="point.name" class="nowrap" v-html="point.map ? (point.map + ':' + point.name) : point.name"></text>
  166. </view>
  167. <view class="uni-row uni-jcsa" style="width: 20%;" @click="dealNavClick(point)">
  168. <image mode="aspectFit" style="width: 10px; height: 15px;" src="/static/common/nav2.png"></image>
  169. <text class="" style="color: #E60012; font-size: 14px;" >导航</text>
  170. </view>
  171. </view>
  172. </view>
  173. <view v-if="item.data.bottomMemo" style="padding-top: 10px;" v-html="item.data.bottomMemo" @click="dealUrlClick(item.data.bottomMemoUrl)"></view>
  174. </view>
  175. </view>
  176. <button v-if="index < dataList.length - 1" class="swiper-item-button" @click="swiperNext">继
  177. 续</button>
  178. <button v-else class="swiper-item-button" @click="popupClose">确 定</button>
  179. </view>
  180. <!-- 警告 -->
  181. <view v-if="item.type == 9" class="swiper-item-view uni-column">
  182. <text class="swiper-item-title" v-html="item.data.title"></text>
  183. <view class="swiper-item-main uni-column uni-jct">
  184. <view class="uni-row">
  185. <image mode="aspectFit" style="width: 58px; height: 64px; margin: 5px 15px;" :src="item.data.iconUrl"></image>
  186. <text style="margin-right: 5px; font-size: 12px; margin-top: 40px;">x</text>
  187. <text style="font-size: 18px; margin-top: 40px;">{{item.data.iconNum}}</text>
  188. </view>
  189. <text class="swiper-item-warn" v-html="item.data.message"></text>
  190. <image mode="aspectFit" style="width: 100px; height: 100px;" :src="item.data.qrCodeUrl"></image>
  191. </view>
  192. <button v-if="index < dataList.length - 1" class="swiper-item-button" @click="swiperNext">继
  193. 续</button>
  194. <button v-else class="swiper-item-button" @click="popupClose">确 定</button>
  195. </view>
  196. </swiper-item>
  197. </swiper>
  198. </uni-popup>
  199. </template>
  200. <script>
  201. import tools from '/common/tools';
  202. // import {
  203. // teamName
  204. // } from '/common/define';
  205. export default {
  206. name: "my-popup",
  207. props: {
  208. dataList: [{}],
  209. acttime: "", // 活动时间
  210. teamType: {
  211. type: Number,
  212. default: -1
  213. },
  214. config: {
  215. type: Object,
  216. default: () => ({
  217. height: ""
  218. })
  219. }
  220. },
  221. emits: ['popup-close', 'noMoreRemindersClick'],
  222. data() {
  223. return {
  224. swiperCurrent: 0, // swiper当前所在滑块的 index
  225. isOpen: false,
  226. // item: {}
  227. };
  228. },
  229. methods: {
  230. getSwiperStyle() {
  231. let styleStr = "";
  232. if (this.config.height != undefined && this.config.height != "") {
  233. styleStr += `height: ${this.config.height};`;
  234. // console.log("[getSwiperStyle] style:", styleStr);
  235. }
  236. return styleStr;
  237. },
  238. //当前轮播索引
  239. swiperChange(e) {
  240. const curIndex = e.detail.current;
  241. // console.log("swiperChange", curIndex, this.swiperCurrent);
  242. this.swiperCurrent = curIndex;
  243. },
  244. swiperNext() {
  245. this.swiperCurrent++;
  246. },
  247. popupOpen() {
  248. if (this.dataList.length == 0) {
  249. console.log("[popupOpen] dataList为空,禁止弹窗");
  250. return;
  251. }
  252. this.swiperCurrent = 0;
  253. this.$refs.popup.open();
  254. this.isOpen = true;
  255. },
  256. popupClose() {
  257. this.$refs.popup.close();
  258. this.isOpen = false;
  259. this.$emit('popup-close');
  260. },
  261. fmtTime(timestamp, type = 2) {
  262. return tools.timestampToTime(timestamp * 1000, type);
  263. },
  264. dealNavClick(navPoint) {
  265. const url =
  266. `action://to_map_app?title=${navPoint.name}&latitude=${navPoint.latitude}&longitude=${navPoint.longitude}`;
  267. // window.location.href = url;
  268. tools.appAction(url);
  269. },
  270. dealUrlClick(url) {
  271. if (url != undefined && url.length > 0) {
  272. tools.appAction(url);
  273. }
  274. },
  275. getImageStyle(item) {
  276. let styleStr = "";
  277. let width = "90px";
  278. let height = "90px";
  279. if (item != undefined && item.width != undefined) {
  280. width = item.width;
  281. }
  282. if (item != undefined && item.height != undefined) {
  283. height = item.height;
  284. }
  285. // const width = item.width ?? "90px";
  286. // const height = item.height ?? "90px";
  287. styleStr = `width: ${width}; height: ${height};`;
  288. return styleStr;
  289. },
  290. getImageStyle2(item) {
  291. let styleStr = "";
  292. let height = "237px";
  293. if (item != undefined && item.height != undefined) {
  294. height = item.height;
  295. }
  296. styleStr = `height: ${height}; margin-top: 15px; margin-bottom: 25px;`;
  297. return styleStr;
  298. },
  299. getSponsorsLogoStyle(bgurl) {
  300. return `background-image: url("${bgurl}")`;
  301. },
  302. onNoMoreRemindersClick() {
  303. this.$emit('noMoreRemindersClick');
  304. },
  305. // getTeamName(teamType, teamIndex) {
  306. // return teamName[teamType][teamIndex];
  307. // },
  308. // onItemClick(item) {
  309. // this.data.item = item
  310. // this.$emit('my-combo-list-click', this.data);
  311. // }
  312. }
  313. }
  314. </script>
  315. <style lang="scss" scoped>
  316. .swiper {
  317. width: 90vw;
  318. height: 439px;
  319. background-color: #FEFBF6;
  320. border-radius: 25px;
  321. }
  322. ::v-deep uni-swiper-item {
  323. overflow: auto;
  324. }
  325. .swiper-item-view {
  326. // min-height: 95%;
  327. min-height: 94.3%;
  328. padding-top: 25px;
  329. overflow: auto;
  330. flex-grow: 1;
  331. // justify-content: space-between;
  332. }
  333. .swiper-item-view-bg {
  334. background-image: url("/static/backgroud/top_colorbar.png"), url("/static/backgroud/oval.png");
  335. background-repeat: no-repeat;
  336. background-position-x: center;
  337. background-position-y: 75px, 190px;
  338. background-size: 80%, 70%;
  339. }
  340. .swiper-item-view-bg2 {
  341. // background-image: url("/static/backgroud/oval.png");
  342. // background-repeat: no-repeat;
  343. // background-position-x: center;
  344. // background-position-y: 198px;
  345. // background-size: 66%;
  346. }
  347. .swiper-item-topLogo {
  348. width: 100px;
  349. height: 100px;
  350. margin-bottom: 18px;
  351. }
  352. .swiper-item-logo {
  353. width: 100px;
  354. height: 100px;
  355. margin-bottom: 5px;
  356. }
  357. .swiper-item-logoMemo {
  358. font-size: 14px;
  359. color: #FF870E;
  360. margin-bottom: 10px;
  361. }
  362. .swiper-item-bottomLogo {
  363. width: 100px;
  364. height: 100px;
  365. margin-bottom: 30px;
  366. }
  367. .swiper-item-title {
  368. margin-bottom: 10px;
  369. color: #333333;
  370. font-size: 20px;
  371. font-weight: 550;
  372. }
  373. .swiper-item-main {
  374. width: 100%;
  375. flex-grow: 1;
  376. }
  377. .swiper-item-image {
  378. height: 150px;
  379. }
  380. .swiper-item-image2 {
  381. height: 110px;
  382. // margin-top: 5px;
  383. }
  384. .swiper-item-time {
  385. height: 33px;
  386. margin-top: 10px;
  387. padding: 0 25px;
  388. justify-content: space-evenly;
  389. background-color: white;
  390. border: 0.5px solid;
  391. border-color: #e7e7e7;
  392. border-radius: 20px;
  393. box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.13);
  394. }
  395. .swiper-item-content {
  396. width: 80%;
  397. margin-top: 15px;
  398. margin-bottom: 30px;
  399. justify-content: start;
  400. flex-grow: 1;
  401. color: #333333;
  402. font-weight: 400;
  403. }
  404. .swiper-item-content2 {
  405. width: 80%;
  406. margin-top: 60px;
  407. margin-bottom: 10px;
  408. // justify-content: center;
  409. text-align: center;
  410. color: #333333;
  411. font-size: 13px;
  412. line-height: 40px;
  413. flex-grow: 1;
  414. }
  415. .swiper-item-content3 {
  416. // width: 80%;
  417. // margin-top: 5px;
  418. color: #333333;
  419. font-weight: 400;
  420. text-align: center;
  421. }
  422. .swiper-item-content4 {
  423. // width: 80%;
  424. text-align: center;
  425. color: #333333;
  426. font-size: 12px;
  427. font-weight: 400;
  428. }
  429. .swiper-item-content5 {
  430. width: 80%;
  431. flex-grow: 1;
  432. color: #333333;
  433. font-size: 13px;
  434. font-weight: 400;
  435. line-height: 20px;
  436. overflow-y: scroll;
  437. }
  438. .swiper-item-pointName {
  439. font-size: 13px;
  440. font-weight: 500;
  441. color: #333333;
  442. }
  443. .swiper-item-couponNum {
  444. font-size: 16px;
  445. font-weight: 500;
  446. color: #383838;
  447. }
  448. .swiper-item-desc {
  449. width: 80%;
  450. font-size: 12px;
  451. font-weight: 400;
  452. color: #818181;
  453. }
  454. ::v-deep li {
  455. margin-bottom: 5px;
  456. }
  457. .swiper-item-message {
  458. width: 80%;
  459. margin-top: 10px;
  460. margin-bottom: 10px;
  461. // justify-content: center;
  462. text-align: left;
  463. color: #333333;
  464. font-size: 13px;
  465. font-weight: 400;
  466. line-height: 20px;
  467. flex-grow: 1;
  468. }
  469. .swiper-item-warn {
  470. width: 80%;
  471. margin-top: 10px;
  472. margin-bottom: 10px;
  473. // justify-content: center;
  474. text-align: left;
  475. color: #333333;
  476. font-size: 13px;
  477. font-weight: 400;
  478. line-height: 20px;
  479. // flex-grow: 1;
  480. }
  481. .swiper-item-button {
  482. width: 80%;
  483. height: 38px;
  484. margin-bottom: 25px;
  485. color: #ffffff;
  486. /* font-weight: bold; */
  487. line-height: 38px;
  488. background-color: #2e85ec;
  489. border-radius: 27px;
  490. }
  491. .swiper-item-button2 {
  492. width: 50%;
  493. height: 38px;
  494. margin-bottom: 25px;
  495. color: #ffffff;
  496. /* font-weight: bold; */
  497. line-height: 38px;
  498. background-color: #2e85ec;
  499. border-radius: 27px;
  500. }
  501. .swiper-item-noMoreReminders {
  502. position: absolute;
  503. right: 10px;
  504. width: 80px;
  505. font-size: 12px;
  506. margin-bottom: 25px;
  507. text-align: center;
  508. text-decoration: underline;
  509. }
  510. .acttime {
  511. font-weight: 550;
  512. color: #333333;
  513. font-size: 15px;
  514. }
  515. .clock {
  516. width: 15px;
  517. height: 15px;
  518. margin-right: 10px;
  519. }
  520. .introduce-content {
  521. color: #333333;
  522. font-size: 13px;
  523. font-weight: 400;
  524. line-height: 20px;
  525. flex-grow: 1;
  526. }
  527. .nowrap {
  528. white-space: nowrap;
  529. overflow: hidden;
  530. text-overflow: ellipsis;
  531. }
  532. .sponsorsLogo {
  533. position: absolute;
  534. width: 120px;
  535. // width: 75px;
  536. height: 75px;
  537. left: 18px;
  538. top: 8px;
  539. background-position-x: left;
  540. background-position-y: center;
  541. background-repeat: no-repeat;
  542. background-size: contain;
  543. // background-size: 100% auto;
  544. }
  545. ::v-deep .uni-swiper-dots-horizontal {
  546. bottom: 75px;
  547. }
  548. // ::v-deep .uni-swiper-dot-active {
  549. // background: #ff870e !important;
  550. // }
  551. </style>