msite.vue 5.1 KB
Newer Older
M
maguohua 已提交
1
<template>
M
maguohua 已提交
2 3
    <div>
    	<head-top signin-up='msite'>
M
updata  
maguohua 已提交
4
    		<router-link :to="'/search/' + geohash" class="link_search" slot="search">
M
maguohua 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17
	    		<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg" version="1.1">
	    			<circle cx="9" cy="9" r="8" stroke="rgb(255,255,255)" stroke-width="2" fill="none"/>
	    			<line x1="15" y1="15" x2="20" y2="20" style="stroke:rgb(255,255,255);stroke-width:2"/>
	    		</svg>
    		</router-link>
			<router-link to="/home" slot="msite-title" class="msite_title">
				<span class="title_text">{{msietTitle}}</span>
			</router-link>
    	</head-top>
    	<nav class="msite_nav">
    		<div class="swiper-container">
		        <div class="swiper-wrapper">
		            <div class="swiper-slide food_types_container" v-for="(item, index) in foodTypes" :key="index">
M
maguohua 已提交
18
	            		<router-link :to="{path: '/food', query: {geohash, title: foodItem.title, restaurant_category_id: getCategoryId(foodItem.link)}}" v-for="foodItem in item" :key="foodItem.id" class="link_to_food">
M
maguohua 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
	            			<figure>
	            				<img :src="imgBaseUrl + foodItem.image_url">
	            				<figcaption>{{foodItem.title}}</figcaption>
	            			</figure>
	            		</router-link>	
		            </div>
		        </div>
		        <div class="swiper-pagination"></div>
		    </div>
    	</nav>
    	<div class="shop_list_container">
	    	<header class="shop_header">
	    		<svg class="shop_icon">
	    			<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#shop"></use>
	    		</svg>
	    		<span class="shop_header_title">附近商家</span>
	    	</header>
M
maguohua 已提交
36
	    	<shop-list v-if="hasGetData" :geohash="geohash"></shop-list>
M
maguohua 已提交
37 38
    	</div>
    </div>    
M
maguohua 已提交
39 40 41
</template>

<script>
M
maguohua 已提交
42 43 44 45 46 47 48
import {mapMutations} from 'vuex'
import {imgBaseUrl} from '../../config/env'
import headTop from '../../components/header/head'
import shopList from '../../components/common/shoplist'
import {msiteAdress, msiteFoodTypes, msiteShopList} from '../../service/getData'
import '../../plugins/swiper.min.js'
import '../../style/swiper.min.css'
M
maguohua 已提交
49 50 51 52

export default {
	data(){
        return {
M
maguohua 已提交
53
        	geohash: '', // city页面传递过来的地址geohash
M
maguohua 已提交
54
            msietTitle: '请选择地址...', // msiet页面头部标题
M
maguohua 已提交
55
            foodTypes: [], // 食品分类列表
M
maguohua 已提交
56
            hasGetData: false, //是否已经获取地理位置数据,成功之后再获取商铺列表信息
M
maguohua 已提交
57
            imgBaseUrl, //图片域名地址
M
maguohua 已提交
58 59
        }
    },
M
maguohua 已提交
60
    async beforeMount(){
M
maguohua 已提交
61
		this.geohash = this.$route.query.geohash || 'wtw3sm0q087';
M
maguohua 已提交
62 63
		//保存geohash 到vuex
		this.SAVE_GEOHASH(this.geohash);
M
maguohua 已提交
64 65 66 67 68
    	//获取位置信息
    	let res = await msiteAdress(this.geohash);
    	this.msietTitle = res.name;

    	// 记录当前经度纬度
M
maguohua 已提交
69
    	this.RECORD_ADDRESS(res);
M
maguohua 已提交
70 71 72 73 74 75 76 77 78 79 80 81 82 83

    	this.hasGetData = true;
    },
    mounted(){
        //获取导航食品类型列表
       	msiteFoodTypes(this.geohash).then(res => {
       		let resLength = res.length;
       		let resArr = res.concat([]); // 返回一个新的数组
       		let foodArr = [];
    		for (let i = 0, j = 0; i < resLength; i += 8, j++) {
    			foodArr[j] = resArr.splice(0, 8);
    		}
    		this.foodTypes = foodArr;
        }).then(() => {
M
maguohua 已提交
84
        	//初始化swiper
M
maguohua 已提交
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
        	new Swiper('.swiper-container', {
		        pagination: '.swiper-pagination',
		        loop: true
		    });
        })
    },
    components: {
    	headTop,
    	shopList
    },
    computed: {

    },
    methods: {
    	...mapMutations([
M
maguohua 已提交
100
    		'RECORD_ADDRESS', 'SAVE_GEOHASH'
M
maguohua 已提交
101 102 103 104 105 106 107 108 109 110
    	]),
    	// 解码url地址,求去restaurant_category_id值
    	getCategoryId(url){
    		let urlData = decodeURIComponent(url.split('=')[1].replace('&target_name',''));
    		if (/restaurant_category_id/gi.test(urlData)) {
    			return JSON.parse(urlData).restaurant_category_id.id
    		}else{
    			return ''
    		}
    	}
M
maguohua 已提交
111 112 113
    },
    watch: {

M
maguohua 已提交
114 115 116 117 118 119
    }
}

</script>

<style lang="scss" scoped>
M
maguohua 已提交
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
    @import '../../style/mixin';
	.link_search{
		left: .8rem;
		@include wh(.8rem, .9rem);
		@include ct;
	}
	.msite_title{
		@include center;
        width: 50%;
        color: #fff;
        text-align: center;
        margin-left: -0.5rem;
        .title_text{
            @include sc(0.8rem, #fff);
            text-align: center;
            display: block;
        }
	}
	.msite_nav{
		padding-top: 2.1rem;
		background-color: #fff;
		border-bottom: 0.025rem solid $bc;
		.swiper-container{
			@include wh(100%, auto);
			padding-bottom: 0.6rem;
			.swiper-pagination{
				bottom: 0.2rem;
			}
		}
	}
	.food_types_container{
		display:flex;
		flex-wrap: wrap;
		.link_to_food{
			width: 25%;
			padding: 0.3rem 0rem;
			@include fj(center);
			figure{
				img{
					margin-bottom: 0.3rem;
					@include wh(1.8rem, 1.8rem);
				}
				figcaption{
					text-align: center;
					@include sc(0.55rem, #666);
				}
			}
		}
	}
	.shop_list_container{
		margin-top: .4rem;
		border-top: 0.025rem solid $bc;
		background-color: #fff;
		.shop_header{
			.shop_icon{
				fill: #999;
				margin-left: 0.6rem;
				vertical-align: middle;
				@include wh(0.6rem, 0.6rem);
			}
			.shop_header_title{
				color: #999;
				@include font(0.55rem, 1.6rem);
			}
		}
	}

M
maguohua 已提交
187
</style>