|
@@ -1,16 +1,19 @@
|
|
|
<template>
|
|
|
<view class="content">
|
|
|
<u-swiper height="200" :list="imageTopList"></u-swiper>
|
|
|
+ <!-- 商品 -->
|
|
|
<view class="goods">
|
|
|
- <u-section title="人气零食" :show-line="false" sub-title="更多"></u-section>
|
|
|
- <view class="goods-list">
|
|
|
+ <u-section title="人气零食" v-if="goodsList.length" :show-line="false" sub-title="更多"></u-section>
|
|
|
+ <view class="goods-list" v-if="goodsList.length">
|
|
|
<uni-coods v-for="item in goodsList" :key="item.id" :data="item"></uni-coods>
|
|
|
</view>
|
|
|
- <u-section title="居家生活" :show-line="false" sub-title="更多"></u-section>
|
|
|
- <view class="goods-list">
|
|
|
+ <u-section title="居家生活" v-if="goodsList.length" :show-line="false" sub-title="更多"></u-section>
|
|
|
+ <view class="goods-list" v-if="goodsList.length">
|
|
|
<uni-coods v-for="item in goodsList" :key="item.id" :data="item"></uni-coods>
|
|
|
</view>
|
|
|
</view>
|
|
|
+ <!-- 购物车 -->
|
|
|
+ <uni-cart-fix :count="15"></uni-cart-fix>
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
@@ -33,33 +36,37 @@
|
|
|
data() {
|
|
|
return {
|
|
|
imageTopList:[
|
|
|
- {photo:'https://cdn.uviewui.com/uview/example/fade.jpg'},
|
|
|
- {photo:'https://cdn.uviewui.com/uview/example/fade.jpg'}
|
|
|
+ {image:'https://cdn.uviewui.com/uview/example/fade.jpg'},
|
|
|
+ {image:'https://cdn.uviewui.com/uview/example/fade.jpg'}
|
|
|
],
|
|
|
goodsList:[
|
|
|
{
|
|
|
id: 21312312321,
|
|
|
name: '啊撒旦解放拉萨酱豆腐爱丽丝反对萨拉地方就',
|
|
|
- src: 'https://cdn.uviewui.com/uview/example/fade1.jpg',
|
|
|
- price: 50
|
|
|
+ src: 'https://cdn.uviewui.com/uview/example/fade.jpg',
|
|
|
+ price: 50,
|
|
|
+ status: 0
|
|
|
},
|
|
|
{
|
|
|
id: 6465465465,
|
|
|
name: '啊撒旦解放拉萨酱豆腐爱丽丝反对萨拉地方就',
|
|
|
src: 'https://cdn.uviewui.com/uview/example/fade.jpg',
|
|
|
- price: 50
|
|
|
+ price: 50,
|
|
|
+ status: 1
|
|
|
},
|
|
|
{
|
|
|
id: 234324,
|
|
|
name: '啊撒旦解放拉萨酱豆腐爱丽丝反对萨拉地方就',
|
|
|
src: 'https://cdn.uviewui.com/uview/example/fade.jpg',
|
|
|
- price: 50
|
|
|
+ price: 50,
|
|
|
+ status: 0
|
|
|
},
|
|
|
{
|
|
|
id: 4453455,
|
|
|
name: '啊撒旦解放拉萨酱豆腐爱丽丝反对萨拉地方就',
|
|
|
src: 'https://cdn.uviewui.com/uview/example/fade.jpg',
|
|
|
- price: 50
|
|
|
+ price: 50,
|
|
|
+ status: 0
|
|
|
}
|
|
|
]
|
|
|
}
|