0


【小程序项目开发-- 京东商城】uni-app之商品列表页面 (上)

在这里插入图片描述

👋👋欢迎来到👋👋
🎩魔术之家!!🎩

该文章收录专栏
✨ 2022微信小程序京东商城实战 ✨

专栏内容
✨ 京东商城uni-app项目搭建 ✨
✨ 京东商城uni-app 配置tabBar & 窗口样式 ✨
✨ 京东商城uni-app开发之分包配置 ✨
✨ 京东商城uni-app开发之轮播图 ✨
✨ 京东商城uni-app之分类导航区域 ✨
✨ 京东商城uni-app 首页楼层商品 ✨
✨ 京东商城uni-app 商品分类页面(上) ✨
✨ 京东商城uni-app 商品分类页面(下) ✨
✨ 京东商城uni-app之自定义搜索组件(上) ✨
✨ 京东商城uni-app之自定义搜索组件(中) ✨
✨京东商城uni-app之自定义搜索组件(下) – 搜索历史 ✨

文章目录

一、前言介绍

主要是有三种方式进入到商品页面

  1. 商品楼层点击(传参query 查询)
  2. 分类页面点击(传参cid 分类)
  3. 搜索页面点击(传参query查询)

添加商品页面编译模式

二、创建goodlist 分支(选读*)

 git checkout -b goodlist

在这里插入图片描述

三、商品列表搜索数据请求

商品列表搜索

  • 请求路径:https://请求域名/api/public/v1/goods/search

  • 请求方法:GET

  • 请求参数
    参数名参数说明备注query查询关键词cid分类ID可选pagenum页数索引可选默认第一页pagesize每页长度可选默认20条

  • 响应数据

{"message":{"total":2058,"pagenum":"1","goods":[{"goods_id":57332,"cat_id":998,"goods_name":"400毫升 海鲜食品冷藏冰包 注水冰袋医用冰袋户外冷藏保鲜熟食冷藏反复使用(10个装)","goods_price":14,"goods_number":100,"goods_weight":100,"goods_big_logo":"http://image4.suning.cn/uimg/b2c/newcatentries/0070083251-000000000168369396_1_800x800.jpg","goods_small_logo":"http://image4.suning.cn/uimg/b2c/newcatentries/0070083251-000000000168369396_1_400x400.jpg","add_time":1516662792,"upd_time":1516662792,"hot_mumber":0,"is_promote":false,"cat_one_id":962,"cat_two_id":981,"cat_three_id":998},{"goods_id":57194,"cat_id":992,"goods_name":"亿力洗车工具汽车美容用品海绵刷不伤车漆擦车海棉清洁海绵","goods_price":29,"goods_number":100,"goods_weight":100,"goods_big_logo":"","goods_small_logo":"","add_time":1516662312,"upd_time":1516662312,"hot_mumber":0,"is_promote":false,"cat_one_id":962,"cat_two_id":980,"cat_three_id":992}]},"meta":{"msg":"获取成功","status":200}}
  • data 定义数据存贮参数
<script>
  export default{data(){return{
        title:'',// queryobject
        queryObj:{
          query: '',
          cid:"",// 页面
          pagenum:1,// 数据条数
          pagesize:10}};},onLoad(options){
      console.log(options)this.title = options.name
      this.queryObj.query = options.query || ''
      this.queryObj.cid = options.cat_id || ''
      },

四、调取接口获取列表数据

  1. data定义数据存贮
  2. onload 加载函数
  3. 定义数据调取函数
<script>
  export default{data(){return{
        goodlist:[],// 总的商品数
        total:0};},onLoad(options){
      this.getGoodlist()},methods:{
      async getGoodlist(){const{data:res}= await uni.$http.get('/api/public/v1/goods/search',this.queryObj)
        console.log(res)if(res.meta.status !=200)return uni.$showMsg("数据调取失败") 
        this.goodlist = res.message.goods
        this.total = res.message.total
        }}

五、渲染商品列表页面

  1. 由于有些图片无法显示,定义一个默认图片
// 默认图片
        defaultimg:"your image url"
  1. wxml 结构
<template><view><!-- 列表页 --><view class="goods-list"><view class="good-item"><block v-for="(item,i) in goodlist" v-bind:key="i"><!-- 左侧盒子 --><view class="good-item-left"><!--  没有得话就用默认图片  --><image :src="item.goods_big_logo || defaultimg" mode=""></image></view><!-- 右侧盒子 --><view class="good-item-right"><view class="good-item-name">{{item.goods_name}}</view><view class="good-item-info"><view class="good-price">¥ {{item.goods_price}}</view></view></view></block></view></view></view></template>
  • 效果在这里插入图片描述
  1. 样式美化
<style lang="scss">.goods-list{.good-item {
      display: flex;
      border-bottom:2px solid #f1f1f1;.good-item-left {
        image {
          height:200rpx;
          width:200rpx;
          display: block;}

        padding:20rpx;}.good-item-right {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding:20rpx;.good-item-name {
          font-size:14px;}.good-item-info {.good-price {
            font-size:16px;
            color:#c00000;}}}}}</style>
  • 效果:在这里插入图片描述

六、将商品item组件封装为自定义组件

  1. 在component文件下创建my_goods组件在这里插入图片描述
  2. 将对应结构和样式迁移过去
<template><view><viewclass="good-item"><!-- 左侧盒子 --><viewclass="good-item-left"><!--  没有得话就用默认图片  --><image:src="good.goods_big_logo || defaultimg"mode=""></image></view><!-- 右侧盒子 --><viewclass="good-item-right"><viewclass="good-item-name">{{good.goods_name}}</view><viewclass="good-item-info"><viewclass="good-price">¥ {{good.goods_price}}</view></view></view></view></view></template><script>exportdefault{name:"my-goods",props:{good:{type: Object,default:{}}},data(){return{// 默认图片defaultimg:"https://ts1.cn.mm.bing.net/th/id/R-C.e74289455bec048b0ba2feb90e3b74f2?rik=fYpAtit%2bc2W4ZA&riu=http%3a%2f%2fimage.woshipm.com%2fwp-files%2f2017%2f04%2ftAd0ldHk60s3GAI6TNqd.jpg&ehk=RWuC%2f9spxWPWcW3w4axPrb3YP9Nt3JXlajvJWKRXV5k%3d&risl=&pid=ImgRaw&r=0"};}}</script><stylelang="scss">.good-item{display: flex;border-bottom: 2px solid #f1f1f1;.good-item-left{image{height: 200rpx;width: 200rpx;display: block;}padding: 20rpx;}.good-item-right{display: flex;flex-direction: column;justify-content: space-between;padding: 20rpx;.good-item-name{font-size: 14px;}.good-item-info{.good-price{font-size: 16px;color: #c00000;}}}}</style>

七、使用过滤器处理商品价格

让商品价格以小数点显示

  1. 定义 filter
 filters:{tofixed(num){// 返回两位数值returnNumber(num).toFixed(2)}},
  1. 使用过滤器
<view class="good-price">¥ {{good.goods_price|tofixed}}</view>
  1. 效果

在这里插入图片描述

      🤞到这里,如果还有什么疑问🤞
🎩欢迎私信博主问题哦,博主会尽自己能力为你解答疑惑的!🎩
      🥳如果对你有帮助,你的赞是对博主最大的支持!!🥳

本文转载自: https://blog.csdn.net/weixin_66526635/article/details/125815203
版权归原作者 计算机魔术师 所有, 如有侵权,请联系我们删除。

“【小程序项目开发-- 京东商城】uni-app之商品列表页面 (上)”的评论:

还没有评论