|
@@ -1,63 +1,54 @@
|
|
|
<template>
|
|
|
- <van-popup
|
|
|
- v-model="showFlag"
|
|
|
- :lock-scroll="false"
|
|
|
- position="bottom"
|
|
|
- :close-on-click-overlay="false"
|
|
|
- @click-overlay="showFlag = false"
|
|
|
- style="height: 85%;">
|
|
|
- <div class="goods">
|
|
|
- <div
|
|
|
- ref="menuWrapper"
|
|
|
- class="menu-wrapper">
|
|
|
- <ul>
|
|
|
- <li
|
|
|
- v-for="(item, index) in goods"
|
|
|
- :key="index"
|
|
|
- ref="menuList"
|
|
|
- :class="{'current':currentIndex === index}"
|
|
|
- class="menu-item"
|
|
|
- @click="selectMenu(index, $event)">
|
|
|
- <span class="text">{{ item.category_type_name }}</span>
|
|
|
- </li>
|
|
|
- </ul>
|
|
|
- </div>
|
|
|
- <div
|
|
|
- ref="foodsWrapper"
|
|
|
- class="foods-wrapper">
|
|
|
- <ul>
|
|
|
- <li
|
|
|
- v-for="(item, index) in goods"
|
|
|
- :key="index"
|
|
|
- ref="foodList"
|
|
|
- class="food-list">
|
|
|
- <h1 class="title">{{ item.category_type_name }}</h1>
|
|
|
- <ul class="food-item-wrap">
|
|
|
- <li
|
|
|
- v-for="(food, idx) in item.category_data"
|
|
|
- :key="idx"
|
|
|
- class="food-item"
|
|
|
- @click="selectFood(food, $event)">
|
|
|
- <div class="icon">
|
|
|
- <img
|
|
|
- :src="food.category_img_url"
|
|
|
- alt=""
|
|
|
- height="48"
|
|
|
- width="48">
|
|
|
- </div>
|
|
|
- <h2 class="name">{{ food.category_name }}</h2>
|
|
|
- </li>
|
|
|
- </ul>
|
|
|
- </li>
|
|
|
- </ul>
|
|
|
- </div>
|
|
|
+ <div class="goods">
|
|
|
+ <div
|
|
|
+ ref="menuWrapper"
|
|
|
+ class="menu-wrapper">
|
|
|
+ <ul>
|
|
|
+ <li
|
|
|
+ v-for="(item, index) in goods"
|
|
|
+ :key="index"
|
|
|
+ ref="menuList"
|
|
|
+ :class="{'current':currentIndex === index}"
|
|
|
+ class="menu-item"
|
|
|
+ @click="selectMenu(index, $event)">
|
|
|
+ <span class="text">{{ item.category_type_name }}</span>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
</div>
|
|
|
- </van-popup>
|
|
|
+ <div
|
|
|
+ ref="foodsWrapper"
|
|
|
+ class="foods-wrapper">
|
|
|
+ <ul>
|
|
|
+ <li
|
|
|
+ v-for="(item, index) in goods"
|
|
|
+ :key="index"
|
|
|
+ ref="foodList"
|
|
|
+ class="food-list">
|
|
|
+ <h1 class="title">{{ item.category_type_name }}</h1>
|
|
|
+ <ul class="food-item-wrap">
|
|
|
+ <li
|
|
|
+ v-for="(food, idx) in item.category_data"
|
|
|
+ :key="idx"
|
|
|
+ class="food-item"
|
|
|
+ @click="selectFood(food, $event)">
|
|
|
+ <div class="icon">
|
|
|
+ <img
|
|
|
+ :src="food.category_img_url"
|
|
|
+ alt=""
|
|
|
+ height="48"
|
|
|
+ width="48">
|
|
|
+ </div>
|
|
|
+ <h2 class="name">{{ food.category_name }}</h2>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
|
|
|
<script type="text/ecmascript-6">
|
|
|
import BScroll from 'better-scroll'
|
|
|
-import { Popup } from 'vant'
|
|
|
|
|
|
export default {
|
|
|
props: {
|
|
@@ -72,7 +63,8 @@ export default {
|
|
|
return {
|
|
|
listHeight: [],
|
|
|
scrollY: 0,
|
|
|
- showFlag: false
|
|
|
+ meunScroll: null,
|
|
|
+ foodsScroll: null
|
|
|
}
|
|
|
},
|
|
|
computed: {
|
|
@@ -107,12 +99,10 @@ export default {
|
|
|
top.location.href = food.link_url
|
|
|
},
|
|
|
show () {
|
|
|
- this.showFlag = true
|
|
|
-
|
|
|
setTimeout(() => {
|
|
|
this._initScroll()
|
|
|
this._calculateHeight()
|
|
|
- })
|
|
|
+ }, 500)
|
|
|
},
|
|
|
_initScroll () {
|
|
|
if (!this.meunScroll) {
|
|
@@ -155,22 +145,18 @@ export default {
|
|
|
this.meunScroll.scrollToElement(el, 300, 0, -100)
|
|
|
}
|
|
|
},
|
|
|
- components: {
|
|
|
- 'van-popup': Popup
|
|
|
+ beforeDestroy () {
|
|
|
+ if (this.meunScroll) {
|
|
|
+ this.meunScroll.destroy()
|
|
|
+ }
|
|
|
+ if (this.foodsScroll) {
|
|
|
+ this.foodsScroll.destroy()
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
-.mall-container {
|
|
|
- position: fixed;
|
|
|
- left: 0;
|
|
|
- top: 0;
|
|
|
- right: 0;
|
|
|
- bottom: 0;
|
|
|
- z-index: 3;
|
|
|
-}
|
|
|
-
|
|
|
.goods {
|
|
|
display: flex;
|
|
|
position: absolute;
|