实训日志day8~9 ——6.26~6.27

今天和昨天是开始模拟美团订餐的小程序

我昨天的没有完成好 直接实训第九天开始接着完善

1.在里面添加了图片左右切换美化 

2.添加了美团里面的图标

3.综合排序栏的下拉框完善

wxml文件

<!-- 滚动的区域 -->
<scroll-view style='height:100%;' scroll-y="true" bindscroll="scrollTopfun" scroll-top="{{top}}">
  
  <!-- location -->
  <view class='locat'>
    <image src="../../icons/location.png" style="width:30rpx;height:30rpx;"></image>
    <text>广东海洋大学 ></text>
  </view>

  <!-- 搜索 -->
<view class="scout {{top>=20? 'fixed' :'' }}" bindtap="newpage">
  <image class='img' src='../../icons/icon.png'></image>
  <input class='ipt' placeholder='请输入商家或商品名称' placeholder-class='place' disabled="true"></input>
</view>

  
<!-- swiper -->
<view class="container">
    <view class="top">
      <swiper class="top-swiper" indicator-dots="{{indicatorDots}}" circular="true"
        autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}">
        <block wx:for="{{imgUrls}}">
          <swiper-item>
            <image mode="widthFix" src="{{item}}"/>
          </swiper-item>
        </block>
      </swiper>
      <swiper class="middle-swiper" indicator-dots="true" autoplay="" interval="" duration="500">
        <swiper-item wx:for="{{icons}}" wx:for-item="list">
          <view class='icon' wx:for="{{list}}" wx:for-item="item">
            <image src="{{item.img}}"></image>
            <text>{{item.name}}</text>
          </view>
        </swiper-item>
      </swiper>
   
         <view >附近商家</view>
        

         <!-- navbar -->
<view class="navbar {{top>= 112 ? 'navfixed' :'' }}">
  <view bindtap='click'>
      {{show}}
      <view class='sj'></view>
  </view>
  <view>销量高</view>
  <view>速度快</view>
  <view>减配送费</view>
  <view>筛选</view>
  

  <!-- select -->
  <view class='select' wx:if="{{flag}}">
    <!-- option -->
    <view wx:for="{{arr}}" bindtap='showtext' wx:key="{{index}}" data-key="{{index}}">{{item}}</view>
  </view>
</view>

 

     

   
        <view>21</view>
    <view>世</view>
    <view>纪</view>
    <view>优</view>
    <view>秀</view>
    <view>海</view>
    <view>大</view>
    <view>的</view>
    <view>女</view>
    <view>大</view>
    <view>学</view>
    <view>生</view>
    <view>不</view>
    <view>吃</view>
    <view>外</view>
    <view>卖</view>
    
            
        

        <view class="loading">努力加载中…</view>

    </view>
    </view>
</scroll-view>

wxss文件

/**index.wxss**/
page{
  height: 100%;
}

/* 定位区域 */
.locat{
  display: flex;
  align-items: center;
  padding: 0 20rpx;
}

.locat>text{
  margin-left: 10rpx;
  color: #999;
  font-size: 28rpx;
}

/* 搜索 */
.scout{
  background-color: #fff;
  display:flex;
  justify-content:center;
  align-items: center;
  padding: 20rpx 0 0;
  position: relative;
}
.scout>.img{
  width: 40rpx;
  height: 40rpx;
  position: absolute;
  left: 22rpx;
}
.scout>.ipt{
  width:90%;
background-color:#f0f5f8;border-radius:15rpx;
  padding: 8rpx 0rpx;
  padding-left: 50rpx;
}
.place{
  font-size: 28rpx;
}
.fixed{
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
}

.navfixed{
  width: 100%;
  position: fixed;
  top: 108rpx;
  z-index: 99;
}
.navbar{
  display: flex;
  justify-content: space-around;
  top: 108rpx;
  background-color: #fff;
}

.navbar>view{
  font-size: 28rpx;
}
.navbar>view:first-child{
  display: flex;
  align-items: center;
  position: relative;
}
.navbar .sj{
  width: 0;
  height: 0;
  border: 10rpx solid transparent;
  border-top-color:#000;
  position: absolute;
  top: 50%;
  transform: translateY(-5rpx);
  right:-20rpx;
}

.select{
  width: 100%;
  position: fixed;
  top: 145rpx;
  bottom: 0;
  left: 0;

  background-color: rgba(0,0,0,.3)
}
.select>view{
  padding: 20rpx 30rpx;
  background-color: #fff;
  border-bottom: 1rpx solid #ddd;
}

/* delete */
.li{
  position: relative;
}
.li>.del{
  position: absolute;
  right: -30px;
  top: 0;
}

.container{
  padding: 0 0;
  height: 100%;

}
.top{
 width: 100%;
 height:120%;
 display: flex;
 flex-direction: column;
}
.top-swidder{
   width: 100%;
   height:100%;
}
image{
  width: inherit;
}

.icon text{
  display: block;
  font-size: 0.6rem;
}
.icon{
  display: inline-flex;
  flex-direction: column;
  width: 25%;
  height:40%;
  align-items: center; /*子内容居中*/
}
.icon image{
  width: 3rem;
  height:3rem;
  display: block;
}
.middle-swiper{
  height:10rem;
  margin: 15rpx 0;
}
swiper {
display:block;
height:35%;
}
.middle-swiper {
height:8.5rem;
margin:10rpx 0 0;

}
.filter {
    color: #696969;
    font-size: 32rpx;
    line-height: 3;
}

 

.loading {
    font-size: 32rpx;
    text-align: center;
    line-height: 2;
    margin-bottom: 20rpx;
}
.topnav{
  width: 100%;
  position: fixed;
  top:0;

  z-index: 99;
  background: #fff;
}

 

实现图:

搜索栏截图

 

 

 

主界面图

 

 

 

综合排序栏截图

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值