网友真实露脸自拍10p,成人国产精品秘?久久久按摩,国产精品久久久久久无码不卡,成人免费区一区二区三区

小程序模板網

微信小程序快速開發-食堂菜單案例

發布時間:2018-04-21 09:49 所屬欄目:小程序開發教程

(1)這是目錄結構。 

(2)只寫了一個index頁面。

——這個頁面的布局分為上下兩部分。上面一部分是一個view,里面嵌套了3個view,用來切換tab的。

——下面是內容區域。用了小程序的swiper控件,swiper控件里面放置的是scroll-view控件。這里面設置的高度用的是百分比,這存在一定的問題。不如CSS3可以混用百分比和數值來的方便,雖然這種方式存在兼容性問題。

——index.wxml。

 

				
  1. <view class="recipe_tabs">
  2. <view class="recipe_tab {{currentTab==0 ? 'recipe_tab_active' : ''}}" data-current="0" bindtap="swipeContent">早餐</view>
  3. <view class="recipe_tab {{currentTab==1 ? 'recipe_tab_active' : ''}}" data-current="1" bindtap="swipeContent">午餐</view>
  4. <view class="recipe_tab {{currentTab==2 ? 'recipe_tab_active' : ''}}" data-current="2" bindtap="swipeContent">咖吧</view>
  5. </view>
  6.  
  7. <swiper current="{{currentTab}}" class="swiper_container" bindchange="swiperChange">
  8. <swiper-item>
  9. <scroll-view scroll-y style="height:100%">
  10. <view class="recipe_cell" wx:for="{{breakfests}}">
  11. <image class="recipe_img" src="{{item.RECIPE_IMG}}"></image>
  12. <view class="recipe_name">{{item.RECIPE_NAME}}</view>
  13. </view>
  14. </scroll-view>
  15. </swiper-item>
  16. <swiper-item>
  17. <scroll-view scroll-y style="height:100%">
  18. <view class="recipe_cell" wx:for="{{lunches}}">
  19. <image class="recipe_img" src="{{item.RECIPE_IMG}}"></image>
  20. <view class="recipe_name">{{item.RECIPE_NAME}}</view>
  21. </view>
  22. </scroll-view>
  23. </swiper-item>
  24. <swiper-item>
  25. <scroll-view scroll-y style="height:100%">
  26. <view class="recipe_cell" wx:for="{{desserts}}">
  27. <image class="recipe_img" src="{{item.RECIPE_IMG}}"></image>
  28. <view class="recipe_name">{{item.RECIPE_NAME}}</view>
  29. </view>
  30. </scroll-view>
  31. </swiper-item>
  32. </swiper>

(3)樣式沒什么好說的,index.wxss。

/index.wxss/

 

				
  1. page{
  2. background-color: #EEEEEE;
  3. height: 100%;
  4. }
  5.  
  6. /* recipe_tab */
  7. .recipe_tabs{
  8. background-color: #FFFFFF;
  9. height: 7%;
  10. }
  11. .recipe_tab{
  12. display: inline-block;


易優小程序(企業版)+靈活api+前后代碼開源 碼云倉庫:starfork
本文地址:http://www.xiuhaier.com/wxmini/doc/course/23853.html 復制鏈接 如需定制請聯系易優客服咨詢:800182392 點擊咨詢
QQ在線咨詢
AI智能客服 ×