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

 2023-09-09 阅读 741 评论 0

摘要:uni程序怎么样。🤵‍♂️ 个人主页: @计算机魔术师 👨‍💻 作者简介:CSDN内容合伙人,全栈领域优质创作者。 该文章收录专栏 ✨ 2022微信小程序京东商城实战 ✨ 文章目录一、前言介绍二、创建goodlist 分支(选读*)三、商品列表

在这里插入图片描述

uni程序怎么样。🤵‍♂️ 个人主页: @计算机魔术师
👨‍💻 作者简介:CSDN内容合伙人,全栈领域优质创作者。

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

文章目录

  • 一、前言介绍
  • 二、创建goodlist 分支(选读*)
  • 三、商品列表搜索数据请求
  • 四、调取接口获取列表数据
  • 五、渲染商品列表页面
  • 六、将商品item组件封装为自定义组件
  • 七、使用过滤器处理商品价格

一、前言介绍

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

  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:'',// queryobjectqueryObj: {query: '',cid:"",// 页面pagenum: 1,// 数据条数pagesize: 10}};},onLoad(options){console.log(options)this.title = options.namethis.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.goodsthis.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><view class="good-item"><!-- 左侧盒子 --><view class="good-item-left"><!--  没有得话就用默认图片  --><image :src="good.goods_big_logo || defaultimg" mode=""></image></view><!-- 右侧盒子 --><view class="good-item-right"><view class="good-item-name">{{good.goods_name}}</view><view class="good-item-info"><view class="good-price">¥ {{good.goods_price}}</view></view></view></view></view>
</template><script>export default {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><style lang="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){// 返回两位数值return Number(num).toFixed(2)}},
  1. 使用过滤器
    <view class="good-price">{{good.goods_price | tofixed }}</view>
  1. 效果

在这里插入图片描述

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

版权声明:本站所有资料均为网友推荐收集整理而来,仅供学习和研究交流使用。

原文链接:https://808629.com/31803.html

发表评论:

本站为非赢利网站,部分文章来源或改编自互联网及其他公众平台,主要目的在于分享信息,版权归原作者所有,内容仅供读者参考,如有侵权请联系我们删除!

Copyright © 2022 86后生记录生活 Inc. 保留所有权利。

底部版权信息