index_mall.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869
  1. <template>
  2. <view>
  3. <!-- <headerSerch :dataConfig="headItem"></headerSerch> -->
  4. <view class="nav-bar_2">
  5. <text class="text_3">中意购</text>
  6. </view>
  7. <view class="block_2 ">
  8. <view class = "map_box" >
  9. <map id="map"
  10. class="map"
  11. :enable-scroll="false"
  12. :latitude="markers[0].latitude"
  13. :longitude="markers[0].longitude"
  14. :markers="markers"
  15. >
  16. </map>
  17. </view>
  18. <view class="image-text_10 flex-row">
  19. <!-- <text class="text-group_2" @click="getCurrentLocation()">切换地点</text>-->
  20. <text class="text-group_2" @click="changeAddress">切换地点</text>
  21. <image class="icon_2" referrerpolicy="no-referrer"
  22. src="../../../static/images/quehuan.png" />
  23. </view>
  24. </view>
  25. <!-- 轮播 -->
  26. <view class="swiper-group">
  27. <u-swiper :list="swiperList" @change="e => current = e.current" :autoplay="false">
  28. <view slot="indicator" class="indicator">
  29. <view class="indicator__dot"
  30. v-for="(item, index) in swiperList"
  31. :key="index"
  32. :class="[index === current && 'indicator__dot--active']">
  33. </view>
  34. </view>
  35. </u-swiper>
  36. </view>
  37. <view class="header-group">
  38. <view class="tabs">
  39. <u-tabs class="defalt-utabs" :is-scroll="false" :list="navigationList" @click="clickNav" lineColor="#B22338" :inactiveStyle="{ color: '#999999' }"
  40. :activeStyle="{ color: '#B22338', fontWeight: 'bold' }" keyName="title"></u-tabs>
  41. </view>
  42. </view>
  43. <view class="good-list">
  44. <latestGroupBuying @changeTab="changeTab" :iSshowH="true" @detail="goDetail" :currentId="currentId"
  45. - :isSortType="false" :positionInfo="positionInfo" ref="latestGroupBuying"></latestGroupBuying>
  46. </view>
  47. <view v-if="!isLogin">
  48. <u-skeleton :loading="true" rows="20" :animate="true"></u-skeleton>
  49. </view>
  50. <view v-else>
  51. </view>
  52. <uni-popup ref="popup" type="top">
  53. <view class="popup flex-col justify-center ">
  54. <view class="map1_box flex-row justify-center">
  55. <map id="map1"
  56. class="map"
  57. :latitude="markers1[0].latitude"
  58. :longitude="markers1[0].longitude"
  59. :markers="markers1"
  60. @regionchange="regionChange"
  61. >
  62. </map>
  63. </view>
  64. <view class="btn_box flex-row justify-center">
  65. <u-button @click="closePopup">取消</u-button>
  66. <u-button @click="changeAddressConfirm">确定</u-button>
  67. </view>
  68. </view>
  69. </uni-popup>
  70. </view>
  71. </template>
  72. <script>
  73. import headerSerch from './components/headerSerch';
  74. import latestGroupBuying from './components/latestGroupBuying';
  75. import {
  76. toLogin
  77. } from '@/libs/login.js';
  78. import {
  79. mapGetters
  80. } from "vuex";
  81. import {getAdsList, getNoticeList, getCategoryOne,getGoodsPage, getIndexData, getGoodsInfo} from '../../../api/home.js'
  82. import {latestGroupon, historyGroupon, detailGroupon, goodsDetail} from '../../../api/groupon.js'
  83. import {
  84. goShopDetail
  85. } from '@/libs/order.js';
  86. import UButton from "../../../uni_modules/uview-ui/components/u-button/u-button";
  87. export default {
  88. components: {
  89. UButton,
  90. headerSerch,
  91. latestGroupBuying
  92. },
  93. data () {
  94. return {
  95. markers:[{
  96. id: 1,
  97. latitude: '26.64702',//纬度,必填
  98. longitude:'106.63024',//经度,必填
  99. title:'标记点名称',//标注点名
  100. width:32,//标注图标宽度,Number类型
  101. height:32,//标注图标高度,Number类型
  102. iconPath:'../../../static/images/addressIcon.png',//显示的图标,必填
  103. label: {
  104. content: `标记点名称`,
  105. textAlign:"center"
  106. }
  107. }],
  108. markers1:[{
  109. id: 1,
  110. latitude: '26.64702',//纬度,必填
  111. longitude:'106.63024',//经度,必填
  112. title:'标记点名称',//标注点名
  113. width:32,//标注图标宽度,Number类型
  114. height:32,//标注图标高度,Number类型
  115. iconPath:'../../../static/images/addressIcon.png',//显示的图标,必填
  116. label: {
  117. content: `地址名称,暂时展示这个吧`,
  118. textAlign:"center"
  119. }
  120. }],
  121. currentId: 0,
  122. noticeShow: false,
  123. noticeContent: '',
  124. tempArr: [],
  125. where: {
  126. zoneType: 8,
  127. current: 1,
  128. size: 20,
  129. },
  130. isSortType: 0,
  131. current: 0,
  132. noticeList: [],
  133. notice: [
  134. '寒雨连江夜入吴',
  135. '平明送客楚山孤',
  136. '洛阳亲友如相问',
  137. '一片冰心在玉壶'
  138. ],
  139. swiperList: [
  140. 'https://cdn.uviewui.com/uview/swiper/swiper3.png',
  141. 'https://cdn.uviewui.com/uview/swiper/swiper2.png',
  142. 'https://cdn.uviewui.com/uview/swiper/swiper1.png',
  143. ],
  144. navigationList: [{
  145. title: '最新团购',
  146. id: '0'
  147. }, {
  148. title: '历史团购',
  149. id: '1'
  150. }],
  151. positionInfo: {
  152. address: '',
  153. longitude: '106.62502', //经度
  154. latitude: '26.65214', //纬度
  155. },
  156. user_latitude: '',
  157. user_longitude: ''
  158. }
  159. },
  160. computed: mapGetters(['isLogin']),
  161. created () {
  162. this.getAdsList();
  163. this.getLatestGroupon();
  164. this.getCurrentLocation()
  165. },
  166. onMounted (options) {
  167. },
  168. onLoad (options) {
  169. },
  170. onShow () {
  171. },
  172. updated () {
  173. },
  174. watch: {
  175. isLogin: {
  176. deep: true, //深度监听设置为 true
  177. handler: function (newV, oldV) {
  178. this.getAdsList()
  179. this.getLatestGroupon()
  180. }
  181. }
  182. },
  183. methods: {
  184. /**
  185. * 地图点击事件 定位不正确,原因未知,先不用
  186. * @param e
  187. */
  188. // tap(e){
  189. // console.log(e)
  190. // this.markers1[0].latitude= e.detail.latitude;
  191. // this.markers1[0].latitude= e.detail.latitude;
  192. //
  193. // },
  194. /**
  195. * 地图拖动事件
  196. * @param e
  197. */
  198. regionChange(e){
  199. this.mapContext = uni.createMapContext("map1", this);
  200. this.mapContext.getCenterLocation({
  201. type: 'gcj02',
  202. success: (res) => {
  203. this.markers1[0].longitude = res.longitude;
  204. this.markers1[0].latitude = res.latitude;
  205. }
  206. });
  207. },
  208. /**
  209. * 解析地址信息
  210. * @param longitude
  211. * @param longitude
  212. */
  213. // getAddressMsg(longitude,longitude){
  214. // //家里没信号收不到验证码短信。申请不到腾讯地图key,先这样吧。
  215. //
  216. // },
  217. closePopup(){
  218. this.$refs.popup.close()
  219. },
  220. changeAddressConfirm(){
  221. this.$refs.popup.close()
  222. this.markers = this.markers1
  223. },
  224. changeAddress(){
  225. this.$refs.popup.open('top')
  226. },
  227. // 通过自带的方法获取到当前的经纬度,调用方法获取到地址获取到地址的中文信息
  228. getCurrentLocation () {
  229. let that = this //在uniapp中药定义一下this才能使用
  230. uni.getLocation({
  231. type: 'wgs84',
  232. success: function (res) {
  233. console.log("dizhixinxi -> ", res)
  234. that.positionInfo.longitude = res.longitude;
  235. that.positionInfo.latitude = res.latitude;
  236. this.markers1[0].longitude = res.longitude;
  237. this.markers1[0].latitude = res.latitude;
  238. this.markers[0].longitude = res.longitude;
  239. this.markers[0].latitude = res.latitude;
  240. // that.loAcquire(that.positionInfo.longitude, that.positionInfo.latitude)
  241. }
  242. });
  243. },
  244. // 获取当前地址
  245. loAcquire (longitude, latitude) {
  246. let that = this;
  247. // uni.showLoading({
  248. // title: '加载中',
  249. // mask: true
  250. // });
  251. let str = `output=jsonp&key='此处输入你申请的密钥'=${latitude},${longitude}` //记得在这里要输入密钥哦!
  252. console.log(this.$jsonp);
  253. this.$jsonp('https://apis.map.qq.com/ws/geocoder/v1/?', {}).then(res => {
  254. console.log(res);
  255. uni.hideLoading();
  256. if (res.status == 0) {
  257. that.positionInfo.address = '当前位置是:' + res.result.address_component.street_number; //当前定位
  258. }
  259. })
  260. },
  261. pullResh () {
  262. if (this.current == 0) {
  263. uni.showLoading({ title: '刷新中' });
  264. this.getAdsList()
  265. this.getLatestGroupon()
  266. } else {
  267. this.$refs.latestGroupBuying.getGoodsPage()
  268. }
  269. },
  270. getLatestGroupon() {
  271. // let that = this;
  272. // latestGroupon({
  273. // current: 1,
  274. // size: 1,
  275. // longitude: that.positionInfo.longitude,
  276. // latitude: that.positionInfo.latitude
  277. // }).then(res => {
  278. // console.log(res)
  279. // })
  280. },
  281. getGoodsInfo () {
  282. getGoodsInfo({
  283. current: 1,
  284. size: 50,
  285. isRecom: 1
  286. }).then(res => {
  287. this.tempArr = res.data
  288. uni.stopPullDownRefresh()
  289. uni.hideLoading();
  290. })
  291. },
  292. getBroGoodsInfo () {
  293. getGoodsInfo({
  294. current: 1,
  295. size: 50,
  296. zoneType: 6
  297. }).then(res => {
  298. this.tempArrBao = res.data
  299. })
  300. },
  301. getCategoryOne () {
  302. getCategoryOne().then(res => {
  303. this.navigationList = []
  304. let tuiJian = {
  305. title: '推荐',
  306. id: '0'
  307. }
  308. this.navigationList = res.data
  309. this.navigationList.unshift(tuiJian)
  310. })
  311. },
  312. menusTap (url, zoneType) {
  313. let that = this
  314. // #ifdef H5
  315. location.href = url
  316. // #endif
  317. // #ifdef MP || APP-PLUS
  318. if (zoneType == 8) {
  319. //共富取消中间过渡界面
  320. getGoodsInfo(that.where).then(res => {
  321. let list = res.data;
  322. if (that.where.zoneType == 8 && list.length == 1) {
  323. // 自动跳转共富1580商品详情
  324. that.godDetail(list[0])
  325. }
  326. })
  327. } else {
  328. uni.navigateTo({
  329. url: "/pages/goods/goods_list_mall/index?zoneType=" + zoneType + "&title=" + url
  330. });
  331. }
  332. // #endif
  333. },
  334. // 去详情页
  335. godDetail (item) {
  336. goShopDetail(item, this.uid).then(res => {
  337. uni.navigateTo({
  338. url: `/pages/goods_details/index?id=${item.id}`
  339. + "&zoneType=" + item.zoneType
  340. })
  341. })
  342. },
  343. noticeClose () {
  344. this.noticeShow = false
  345. },
  346. goNoticeDetail (value) {
  347. this.noticeContent = this.noticeList[value].content
  348. this.noticeShow = true
  349. },
  350. getNoticeList () {
  351. getNoticeList().then(res => {
  352. this.notice = []
  353. this.noticeList = res.data
  354. res.data.forEach(element => {
  355. this.notice.push(element.title)
  356. });
  357. })
  358. },
  359. getAdsList () {
  360. let that = this;
  361. getAdsList({
  362. type: 2
  363. }).then(res => {
  364. if (res.data.length > 0) {
  365. that.swiperList = []
  366. res.data.forEach(element => {
  367. that.swiperList.push(element.imageUrl)
  368. });
  369. }
  370. });
  371. },
  372. // 促销列表的点击事件;
  373. changeTab (type) {
  374. this.goodType = type;
  375. this.tempArr = [];
  376. this.page = 1;
  377. this.loadend = false;
  378. let onloadH = true;
  379. this.getGroomList(onloadH);
  380. },
  381. // 精品推荐
  382. getGroomList (onloadH) {
  383. let that = this;
  384. let type = that.goodType;
  385. if (that.loadend) return false;
  386. if (that.loading) return false;
  387. if (onloadH) {
  388. that.$set(that, 'iSshowH', true);
  389. }
  390. uni.request({
  391. url: 'api/groom/list',
  392. success: res => {
  393. that.$set(that, 'iSshowH', false);
  394. let maxPage = Math.ceil(this.numConfig / this.limit);
  395. let list = res.data.list,
  396. loadend = list.length < that.limit || that.page >= maxPage;
  397. let tempArr = that.$util.SplitArray(list, that.tempArr);
  398. that.$set(that, 'tempArr', tempArr.slice(0, this.numConfig));
  399. that.loadend = loadend;
  400. that.loadTitle = loadend ? that.$t(`没有更多内容啦~`) : that.$t(`加载更多`);
  401. that.page = that.page + 1;
  402. that.loading = false;
  403. }
  404. })
  405. // getGroomList(type, {
  406. // page: that.page,
  407. // limit: this.numConfig
  408. // })
  409. // .then(({
  410. // data
  411. // }) => {
  412. // that.$set(that, 'iSshowH', false);
  413. // let maxPage = Math.ceil(this.numConfig / this.limit);
  414. // let list = data.list,
  415. // loadend = list.length < that.limit || that.page >= maxPage;
  416. // let tempArr = that.$util.SplitArray(list, that.tempArr);
  417. // that.$set(that, 'tempArr', tempArr.slice(0, this.numConfig));
  418. // that.loadend = loadend;
  419. // that.loadTitle = loadend ? that.$t(`没有更多内容啦~`) : that.$t(`加载更多`);
  420. // that.page = that.page + 1;
  421. // that.loading = false;
  422. // })
  423. // .catch(res => {
  424. // that.loading = false;
  425. // that.loadTitle = that.$t(`加载更多`);
  426. // });
  427. },
  428. goDetail (item) {
  429. goShopDetail(item, this.$store.state.app.uid).then(res => {
  430. uni.navigateTo({
  431. url: `/pages/goods_details/index?id=${item.id}`
  432. });
  433. });
  434. },
  435. // 去商品详情
  436. goGoodsDetail (item) {
  437. goShopDetail(item, this.uid).then(res => {
  438. uni.navigateTo({
  439. url: `/pages/goods_details/index?id=${item.id}`
  440. });
  441. });
  442. },
  443. clickNav (e) {
  444. this.current = e.index
  445. // if (e.index > 0) {
  446. this.currentId = e.id
  447. // }
  448. // console.log("currentId ->", this.currentId)
  449. }
  450. }
  451. }
  452. </script>
  453. <style lang="scss" scoped>
  454. @import '../../../static/css/common.css';
  455. page {
  456. background-color: #ee4040;
  457. }
  458. .header-group {
  459. background-color: #F9F9F9;
  460. .search-group {
  461. display: flex;
  462. align-items: center;
  463. justify-content: space-between;
  464. padding: 30rpx 30rpx 10rpx 30rpx;
  465. .logo {
  466. width: 138rpx;
  467. height: 46rpx;
  468. }
  469. .message {
  470. line-height: 1;
  471. image {
  472. width: 48rpx;
  473. height: 48rpx;
  474. }
  475. }
  476. .search {
  477. flex: 1;
  478. padding: 0 30rpx;
  479. .searchBox {
  480. padding: 0 30rpx;
  481. display: flex;
  482. align-items: center;
  483. background-color: #FFF;
  484. border-radius: 100rpx;
  485. height: 60rpx;
  486. image {
  487. width: 28rpx;
  488. height: 28rpx;
  489. padding-right: 20rpx;
  490. }
  491. text {
  492. font-size: 24rpx;
  493. color: #999;
  494. }
  495. }
  496. }
  497. }
  498. .tabs {
  499. padding: 0 20rpx;
  500. }
  501. }
  502. .tab-content {
  503. .swiper-group {
  504. padding: 20rpx 30rpx 10rpx 30rpx;
  505. background-image: linear-gradient(to bottom, #EB4C63, #F9F9F9);
  506. }
  507. .grid-box {
  508. padding: 10rpx 30rpx 20rpx 30rpx;
  509. .grid-group {
  510. padding: 20rpx 0;
  511. border-radius: 20rpx;
  512. background-color: #FFF;
  513. display: flex;
  514. align-items: center;
  515. flex-wrap: wrap;
  516. .grid-item {
  517. width: 33.333%;
  518. display: flex;
  519. flex-direction: column;
  520. align-items: center;
  521. margin: 10rpx 0;
  522. image {
  523. width: 98rpx;
  524. height: 98rpx;
  525. }
  526. text {
  527. font-size: 24rpx;
  528. color: #666;
  529. margin-top: 10rpx;
  530. }
  531. }
  532. }
  533. }
  534. .notice {
  535. padding: 0 30rpx;
  536. }
  537. .sale-group {
  538. padding: 20rpx 30rpx;
  539. .sale-content {
  540. border-radius: 20rpx;
  541. background-image: linear-gradient(45deg, #EB4C63, #FFA470);
  542. padding: 20rpx 0;
  543. .title {
  544. display: flex;
  545. align-items: center;
  546. justify-content: space-between;
  547. color: #FFF;
  548. font-weight: bold;
  549. padding: 0 30rpx;
  550. .more {
  551. display: flex;
  552. align-items: center;
  553. font-size: 24rpx;
  554. font-weight: normal;
  555. image {
  556. width: 24rpx;
  557. height: 24rpx;
  558. }
  559. }
  560. }
  561. .goods-scroll {
  562. white-space: nowrap;
  563. padding: 20rpx 15rpx 0 15rpx;
  564. .goods-item {
  565. display: inline-block;
  566. width: 240rpx;
  567. padding: 15rpx;
  568. margin: 0 10rpx;
  569. background-color: #FFF;
  570. border-radius: 10rpx;
  571. image {
  572. width: 210rpx;
  573. height: 210rpx;
  574. }
  575. .goods-name {
  576. font-size: 26rpx;
  577. color: #333;
  578. width: 240rpx;
  579. margin: 6rpx 0;
  580. word-break: break-all;
  581. white-space: pre-wrap;
  582. text-overflow: ellipsis;
  583. display: -webkit-box;
  584. line-height: 1.2;
  585. -webkit-box-orient: vertical;
  586. -webkit-line-clamp: 2;
  587. overflow: hidden;
  588. }
  589. .tags {
  590. display: inline-block;
  591. font-size: 20rpx;
  592. padding: 6rpx;
  593. background-color: #FCE9EC;
  594. color: #EB4C63;
  595. margin: 6rpx 0;
  596. }
  597. .price {
  598. font-size: 32rpx;
  599. font-weight: bold;
  600. color: #EB4C63;
  601. }
  602. }
  603. }
  604. }
  605. }
  606. .goods-list {
  607. .title {
  608. text-align: center;
  609. color: #333;
  610. display: flex;
  611. align-items: center;
  612. justify-content: center;
  613. font-size: 32rpx;
  614. font-weight: bold;
  615. .line {
  616. display: inline-block;
  617. width: 200rpx;
  618. height: 2rpx;
  619. margin: 0 30rpx;
  620. background-color: #FFA470;
  621. }
  622. }
  623. .list-group {
  624. display: flex;
  625. align-items: center;
  626. flex-wrap: wrap;
  627. padding: 15rpx;
  628. box-sizing: border-box;
  629. .list-item-content {
  630. width: 50%;
  631. padding: 15rpx;
  632. box-sizing: border-box;
  633. .list-item {
  634. padding: 15rpx;
  635. background-color: #FFF;
  636. border-radius: 10rpx;
  637. image {
  638. width: 100%;
  639. }
  640. .goods-name {
  641. font-size: 28rpx;
  642. color: #333;
  643. margin: 6rpx 0;
  644. word-break: break-all;
  645. white-space: pre-wrap;
  646. text-overflow: ellipsis;
  647. display: -webkit-box;
  648. line-height: 1.4;
  649. -webkit-box-orient: vertical;
  650. -webkit-line-clamp: 2;
  651. overflow: hidden;
  652. }
  653. .tags {
  654. display: inline-block;
  655. font-size: 20rpx;
  656. padding: 6rpx;
  657. background-color: #FCE9EC;
  658. color: #EB4C63;
  659. margin: 6rpx 0;
  660. }
  661. .price {
  662. font-size: 32rpx;
  663. font-weight: bold;
  664. color: #EB4C63;
  665. }
  666. }
  667. }
  668. }
  669. }
  670. }
  671. .nav-bar_2 {
  672. width: 374px;
  673. margin-top: 6px;
  674. padding: 10px 9px 7px 16px;
  675. }
  676. .text_3 {
  677. overflow-wrap: break-word;
  678. color: rgba(51, 51, 51, 1);
  679. font-size: 18px;
  680. letter-spacing: 2px;
  681. font-family: STYuanti-SC-Regular;
  682. font-weight: NaN;
  683. text-align: left;
  684. white-space: nowrap;
  685. line-height: 24px;
  686. margin-top: 3px;
  687. }
  688. .applet-top-bar_1 {
  689. width: 90px;
  690. height: 30px;
  691. }
  692. .block_2 {
  693. box-shadow: 0px 2px 4px 0px rgba(178, 35, 56, 0.05);
  694. align-self: center;
  695. margin: 20rpx;
  696. margin-top: 4px;
  697. height: 70px;
  698. position: relative;
  699. top:0;
  700. left:0
  701. }
  702. .image-text_9 {
  703. width: 228px;
  704. }
  705. .icon_1 {
  706. width: 16px;
  707. height: 16px;
  708. margin: 2px 0 2px 0;
  709. }
  710. .text-group_1 {
  711. overflow-wrap: break-word;
  712. color: rgba(51, 51, 51, 1);
  713. font-size: 12px;
  714. text-align: left;
  715. white-space: nowrap;
  716. line-height: 20px;
  717. max-width: 190px;
  718. display: block;
  719. white-space: pre-line;
  720. }
  721. .image-text_10 {
  722. width: 56px;
  723. position: absolute;
  724. top:25px;
  725. right:10px
  726. }
  727. .text-group_2 {
  728. overflow-wrap: break-word;
  729. color: rgba(153, 153, 153, 1);
  730. font-size: 10px;
  731. font-weight: NaN;
  732. line-height: 20px;
  733. }
  734. .icon_2 {
  735. width: 12px;
  736. height: 12px;
  737. margin: 4px 0 4px 0;
  738. }
  739. .bord{
  740. border: 1px solid red;
  741. }
  742. .map_box{
  743. width: 100%;
  744. height: 70px;
  745. }
  746. .map{
  747. width: 100%;
  748. height: 100%;
  749. }
  750. .indicator {
  751. @include flex(row);
  752. justify-content: center;
  753. &__dot {
  754. height: 6px;
  755. width: 6px;
  756. border-radius: 100px;
  757. background-color: rgba(255, 255, 255, 0.35);
  758. margin: 0 5px;
  759. transition: background-color 0.3s;
  760. &--active {
  761. background-color: #ffffff;
  762. }
  763. }
  764. }
  765. .indicator-num {
  766. padding: 2px 0;
  767. background-color: rgba(0, 0, 0, 0.35);
  768. border-radius: 100px;
  769. width: 35px;
  770. @include flex;
  771. justify-content: center;
  772. &__text {
  773. color: #FFFFFF;
  774. font-size: 12px;
  775. }
  776. }
  777. .popup{
  778. width: 750rpx;
  779. height: 750rpx;
  780. background-color: #F9F9F9;
  781. }
  782. .map1_box{
  783. width: 750rpx;
  784. height: 670rpx;
  785. }
  786. .btn_box{
  787. width: 750rpx;
  788. height: 80rpx;
  789. }
  790. </style>