小程序通用移动端首页(2024一键复制)

效果预览: 

 

上代码:

<template>
  <view class="content">

    <uni-nav-bar :fixed="true" :border="false">
      <block slot="left">
        <view class="city">
          <view>
            <text class="uni-nav-bar-text">{{ city }}</text>
          </view>
          <uni-icons type="arrowdown" color="#666" size="18" />
        </view>
      </block>
      <view class="input-view">
        <uni-icons class="input-uni-icon" type="search" size="18" color="#999" />
        <input confirm-type="search" class="nav-bar-input" type="text" placeholder="输入搜索关键词"
          @confirm="confirm" />
      </view>
      <block slot="right">
        <view class="city">
          搜索
        </view>
      </block>
    </uni-nav-bar>

    <swiper :indicator-dots="true" :autoplay="true" :interval="3000" :duration="1000">
      <swiper-item>
        <image
          src="https://img.zcool.cn/community/011fbd58ec3c55a8012049ef034bbc.jpg@3000w_1l_2o_100sh.jpg"
          mode=""></image>
      </swiper-item>
      <swiper-item>
        <image
          src="https://img.zcool.cn/community/011fbd58ec3c55a8012049ef034bbc.jpg@3000w_1l_2o_100sh.jpg"
          mode=""></image>
      </swiper-item>
    </swiper>

    <view class="cateBox">
      <view class="c-item">
        <image
          src="https://images.pexels.com/photos/8396730/pexels-photo-8396730.jpeg?auto=compress&cs=tinysrgb&w=600"
          mode=""></image>
        <view class="tit">
          潮流
        </view>
      </view>
      <view class="c-item">
        <image
          src="https://images.pexels.com/photos/8400603/pexels-photo-8400603.jpeg?auto=compress&cs=tinysrgb&w=600"
          mode=""></image>
        <view class="tit">
          复古
        </view>
      </view>
      <view class="c-item">
        <image
          src="https://images.pexels.com/photos/8386653/pexels-photo-8386653.jpeg?auto=compress&cs=tinysrgb&w=600"
          mode=""></image>
        <view class="tit">
          最新
        </view>
      </view>
      <view class="c-item">
        <image
          src="https://images.pexels.com/photos/8581058/pexels-photo-8581058.jpeg?auto=compress&cs=tinysrgb&w=600"
          mode=""></image>
        <view class="tit">
          其他
        </view>
      </view>
    </view>

    <scroll-view :scroll-x="true" class="scrollview-box">
      <block v-for="(item,index) in scrollList" :key="index">
        <view class="item">
          <image :src="item.img" mode="aspectFill"></image>
          <view class="tit">
            <view>{{item.name}}</view>
            <view style="color: darkred;">¥{{item.price}}</view>
          </view>
        </view>
      </block>
    </scroll-view>


    <view class="box">
      <view class="title">
        推荐商品
      </view>

      <view class="lists">
        <view class="h-item" v-for="(item,index) in scrollList.slice(0,3)" :key="index">
          <view class="left">
            <image :src="item.img" mode="aspectFill"></image>
          </view>
          <view class="info">
            <view class="tit">
              {{item.name}}
            </view>
            <view class="auther">
              价格: ¥{{item.price}}
            </view>
          </view>
          <view class="icons">
            流行
          </view>
        </view>
      </view>
    </view>

    <view class="box">
      <view class="title">
        热门商品
      </view>

      <view class="lists-two">
        <view class="item" v-for="(item,index) in scrollList.slice(0,4)" :key="index">
          <image :src="item.img" mode="aspectFill"></image>
          <view class="title fx">
            <view>{{item.name}}</view>
            <view style="color: darkred; font-weight: 500;">¥{{item.price}}</view>
          </view>
        </view>
      </view>
    </view>
  </view>
</template>

<script>
  export default {
    data() {
      return {
        city: '北京',
        cateList: [],
        scrollList: [{
            img: 'https://images.pexels.com/photos/9594679/pexels-photo-9594679.jpeg?auto=compress&cs=tinysrgb&w=600',
            name: '潮流服装',
            price: '99.00'
          },
          {
            img: 'https://images.pexels.com/photos/9594679/pexels-photo-9594679.jpeg?auto=compress&cs=tinysrgb&w=600',
            name: '潮流服装',
            price: '99.00'
          },
          {
            img: 'https://images.pexels.com/photos/9594679/pexels-photo-9594679.jpeg?auto=compress&cs=tinysrgb&w=600',
            name: '潮流服装',
            price: '99.00'
          },
          {
            img: 'https://images.pexels.com/photos/9594679/pexels-photo-9594679.jpeg?auto=compress&cs=tinysrgb&w=600',
            name: '潮流服装',
            price: '99.00'
          },
        ]
      }
    },
    onLoad() {

    },
    methods: {
      search() {
        uni.showToast({
          title: '搜索'
        })
      },
      showCity() {
        uni.showToast({
          title: '选择城市'
        })
      },
      scan() {
        uni.showToast({
          title: '扫码'
        })
      },
      confirm() {
        uni.showToast({
          title: '搜索'
        })
      }
    }
  }
</script>

<style scoped lang="scss">
  .content {
    height: 100%;
    background-color: #f5f5f5;
  }


  swiper {
    height: 300rpx;
  }

  swiper swiper-item {
    height: 100%;
  }

  swiper-item image {
    width: 100%;
    height: 100%;
  }

  .scrollview-box {
    white-space: nowrap;
    width: 100%;
    padding: 20rpx 20rpx 0rpx 20rpx;
  }

  .item {
    width: 300rpx;
    height: 230rpx;
    margin-right: 20rpx;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    border-radius: 10rpx;
    overflow: hidden;
  }

  .scrollview-box .item image {
    width: 300rpx;
    height: 200rpx;
  }

  .scrollview-box .item .tit {
    font-size: 28rpx;
    width: 100%;
    margin: 10rpx 0;
    line-height: 50rpx;
    display: flex;
    justify-content: space-around;
  }

  .lists-two {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 35rpx;
  }

  .lists-two .item {
    width: 45%;
    margin-bottom: 30rpx;
  }

  .lists-two .item image {
    width: 100%;
    margin-bottom: 10rpx;
  }

  .lists-two .item .title {
    font-size: 28rpx;
  }

  .box {
    margin-top: 10px;
    padding: 30rpx 50rpx;
    background-color: #ffffff;
  }

  .cateBox {
    padding: 30rpx 10px 20rpx;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
  }

  .c-item {
    width: 24%;
    height: 100%;
    text-align: center;
  }

  .c-item image {
    width: 100rpx;
    height: 100rpx;
    border-radius: 10rpx;
  }

  .c-item .tit {
    font-size: 28rpx;
    margin-top: 10rpx;
  }

  .title {
    font-size: 34rpx;
    font-weight: 700;
  }

  .box {}

  .h-item {
    height: 140rpx;
    margin-top: 35rpx;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    box-shadow: #f5f5f5 2px 6rpx;
    border-radius: 10rpx;
  }

  .h-item .left image {
    width: 100rpx;
    height: 100rpx;
    border-radius: 10rpx;
    margin-right: 30rpx;
  }

  .h-item .info {
    width: 60%;
  }

  .h-item .info .tit {
    font-size: 30rpx;
    font-weight: 700;
  }

  .h-item .info .auther {
    font-size: 26rpx;
    margin-top: 10rpx;
    color: #999;
  }

  .icons {
    text-align: end;
    width: 10%;
    font-size: 28rpx;
    color: #999;
  }


  .fx {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }


  $nav-height: 30px;

  .box-bg {
    background-color: #F5F5F5;
    padding: 5px 0;
  }

  .city {
    /* #ifndef APP-PLUS-NVUE */
    display: flex;
    /* #endif */
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    // width: 160rpx;
    margin-left: 4px;
  }

  .input-view {
    /* #ifndef APP-PLUS-NVUE */
    display: flex;
    /* #endif */
    flex-direction: row;
    // width: 500rpx;
    flex: 1;
    background-color: #f8f8f8;
    height: $nav-height;
    border-radius: 15px;
    padding: 0 15px;
    flex-wrap: nowrap;
    margin: 7px 0;
    line-height: $nav-height;
  }

  .input-uni-icon {
    line-height: $nav-height;
  }

  .nav-bar-input {
    height: $nav-height;
    line-height: $nav-height;
    /* #ifdef APP-PLUS-NVUE */
    width: 370rpx;
    /* #endif */
    padding: 0 5px;
    font-size: 12px;
    background-color: #f8f8f8;
  }
</style>

      此页面布局为uniapp页面,可编译为H5,小程序,此页面用到了一个uniapp官网提供的导航栏组件,自行安装一下就可以,页面所用图片来源网络。  

      首页是用户体验中至关重要的一环。它是用户进入应用程序的第一站,承载着用户对应用的第一印象。一个吸引人、易用性强的首页可以让用户产生好奇心和愉悦感,从而促使他们探索更多内容,增加用户的留存和活跃度。首页的设计直接影响着用户对应用的使用情况和态度,一个清晰、直观、功能突出的首页能帮助用户快速找到所需信息,提高用户的满意度和忠诚度。同时,首页也是引导用户进行注册、参与活动等行为的重要窗口,通过合理设置首页内容和按钮,可以提高用户的转化率和品牌认知度。因此,精心设计和优化首页是提升应用用户体验、提高用户留存和转化的重要手段之一。

如有帮助,点个赞可否? 

 

  • 11
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

耀南.

你的鼓励将是我最最最最大的动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值