You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
git/scr/food/pages/index/index.wxml

38 lines
1.4 KiB

2 years ago
<view class="imagesize">
<image src=" /images/logo.jpg" style="width:350px" class="in-select2" mode="widthFix">
</image>
</view>
<navigator class="imagesize">
<image src="/images/perfer.jpg" style="width:440px" class="in-select" mode="widthFix"></image>
</navigator>
<navigator class="imagesize">
2 years ago
<image src="/images/zhuanpang.jpg" style="width:440px" class="in-select" mode="widthFix" bindtap="toturning"></image>
2 years ago
</navigator>
<view class="divLine"></view>
<!-- 导航栏 -->
<scroll-view class="navbar" scroll-x="true" scroll-left="{{tabs}}" >
<view class="nav-item" wx:for="{{tabs}}" wx:key="id" bindtap="tabSelect" >
<view class="nav-text {{item==tabCur?'tab-on':''}}">{{item}}</view>
</view>
</scroll-view>
<view class="foodlist">
<view class='a' wx:for="{{foodlist}}"><!--wx:for是微信数据绑定的一种方式该数组有多少数据就显示多少个view-->
<!--item就相当于数组名+下标的结合体,适用于调用数组所有数据-->
2 years ago
<view catchtap="toDetail" data-foodid="{{item._id}}">
2 years ago
<view class='img'>
2 years ago
<image src="{{item.url}}" style="border-radius:20px;"></image>
2 years ago
</view>
<view class='info'>
<view class='title'>{{item.food_name}}</view>
<view class='price'>{{item.price}}</view>
<view class='num'>{{item.food_shop}}</view>
</view>
</view>
<view class='clear'></view>
</view>
</view>