123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- <template>
- <view>
-
- <swiper :indicator-dots="true" :autoplay="true" :interval="3000" :duration="1000" :circular="true">
-
- <swiper-item v-for="(item, i) in swiperList" :key="i">
- <navigator class="swiper-item" :url="'/subpkg/goods_detail/goods_detail?goods_id=' + item.goods_id">
-
- <image :src="item.image_src"></image>
- </navigator>
- </swiper-item>
- </swiper>
-
- <view class="nav-list">
- <view class="nav-item" v-for="(item, i) in navList" :key="i" @click="navClickHandler(item)">
- <image :src="item.image_src" class="nav-img"></image>
- </view>
- </view>
-
- <view class="floor-list">
-
- <view class="floor-item" v-for="(item, i) in floorList" :key="i">
-
- <image :src="item.floor_title.image_src" class="floor-title"></image>
-
- <view class="floor-img-box">
-
- <view class="left-img-box">
- <image :src="item.product_list[0].image_src" :style="{width:item.product_list[0].image_width + 'rpx'}" mode="widthFix"></image>
- </view>
-
- <view class="right-img-box">
- <navigator class="right-img-item" v-for="(item2, i2) in item.product_list" :key="i2" v-if="i2 !== 0" :url="item2.url">
- <image :src="item2.image_src" mode="widthFix" :style="{width:item2.image_width + 'rpx'}"></image>
- </navigator>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- swiperList: [],
-
- navList: [],
-
- floorList: [],
- }
- },
- onLoad() {
-
- this.getSwiperList(),
-
- this.getNavList(),
-
- this.getFloorList()
- },
- methods: {
-
- async getSwiperList() {
-
- const { data: res } = await uni.$http.get('/api/public/v1/home/swiperdata')
-
- if (res.meta.status !== 200) return uni.$showMsg()
-
- this.swiperList = res.message
- },
- async getNavList() {
- const { data: res } = await uni.$http.get('/api/public/v1/home/catitems')
- if (res.meta.status !== 200) return uni.$showMsg()
- this.navList = res.message
- },
-
- navClickHandler(item) {
-
- if (item.name === '分类') {
- uni.switchTab({
- url: '/pages/cate/cate'
- })
- }
- },
-
- async getFloorList() {
- const { data: res } = await uni.$http.get('/api/public/v1/home/floordata')
- if (res.meta.status !== 200) return uni.$showMsg()
-
- res.message.forEach(floor => {
- floor.product_list.forEach(prod => {
- prod.url = '/subpkg/goods_list/goods_list?' +
- prod.navigator_url.split('?')[1]
- })
- })
- this.floorList = res.message
- }
- },
- }
- </script>
- <style lang="scss">
- swiper {
- height: 330rpx;
-
- .swiper-item,
- image {
- width: 100%;
- height: 100%;
- }
- }
- .nav-list {
- display: flex;
- justify-content: space-around;
- margin: 15px 0;
-
- .nav-img {
- width: 128rpx;
- height: 140rpx;
- }
- }
- .floor-title {
- height: 60rpx;
- width: 100%;
- display: flex;
- }
- .right-img-box {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-around;
- }
- .floor-img-box {
- display: flex;
- padding-left: 10rpx;
- }
- </style>
|