欢迎来到258分享网,纯净的网络源码分享基地!

258资源分享网

全部作品
全部作品
网站源码
微信源码
素材特效
源码插件
视频教程
建站学院
热门搜索: 织梦  农业种植  农业  安全设置  官方
258资源分享 > 建站学院 > 微信开发 > 微信小程序快速开发-食堂菜单案例

推荐下载

HTML5响应式自适应网咯设计

2020-05-12   浏览:789

HTML5自适应律师工作室类网

2020-04-04   浏览:654

高端HTML5响应式企业通用网

2020-05-06   浏览:560

html5响应式外贸网站英文版

2020-05-08   浏览:545

HTML5影视传媒文化公司类网

2020-05-12   浏览:543

微信小程序快速开发-食堂菜单案例

发布时间:2020-11-16  

(1)这是目录结构。 

微信小程序快速开发-食堂菜单案例

(2)只写了一个index页面。

——这个页面的布局分为上下两部分。上面一部分是一个view,里面嵌套了3个view,用来切换tab的。

——下面是内容区域。用了小程序的swiper控件,swiper控件里面放置的是scroll-view控件。这里面设置的高度用的是百分比,这存在一定的问题。不如CSS3可以混用百分比和数值来的方便,虽然这种方式存在兼容性问题。

——index.wxml。

 

<view class="recipe_tabs">

<view class="recipe_tab {{currentTab==0 ? 'recipe_tab_active' : ''}}" data-current="0" bindtap="swipeContent">早餐</view>

<view class="recipe_tab {{currentTab==1 ? 'recipe_tab_active' : ''}}" data-current="1" bindtap="swipeContent">午餐</view>

<view class="recipe_tab {{currentTab==2 ? 'recipe_tab_active' : ''}}" data-current="2" bindtap="swipeContent">咖吧</view>

</view>

 

<swiper current="{{currentTab}}" class="swiper_container" bindchange="swiperChange">

<swiper-item>

<scroll-view scroll-y style="height:100%">

<view class="recipe_cell" wx:for="{{breakfests}}">

<image class="recipe_img" src=http://www.yiyongtong.com/archives/"{{item.RECIPE_IMG}}"></image>

<view class="recipe_name">{{item.RECIPE_NAME}}</view>

</view>

</scroll-view>

</swiper-item>

<swiper-item>

<scroll-view scroll-y style="height:100%">

<view class="recipe_cell" wx:for="{{lunches}}">

<image class="recipe_img" src=http://www.yiyongtong.com/archives/"{{item.RECIPE_IMG}}"></image>

<view class="recipe_name">{{item.RECIPE_NAME}}</view>

</view>

</scroll-view>

</swiper-item>

<swiper-item>

<scroll-view scroll-y style="height:100%">

<view class="recipe_cell" wx:for="{{desserts}}">

<image class="recipe_img" src=http://www.yiyongtong.com/archives/"{{item.RECIPE_IMG}}"></image>

<view class="recipe_name">{{item.RECIPE_NAME}}</view>

</view>

</scroll-view>

</swiper-item>

</swiper>

(3)样式没什么好说的,index.wxss。

/index.wxss/

 

page{

background-color: #EEEEEE;

height: 100%;

}

 

/* recipe_tab */

.recipe_tabs{

background-color: #FFFFFF;

height: 7%;

}

.recipe_tab{

display: inline-block;