当前位置:   article > 正文

uni-app商城(六)商品列表_uniapp商品列表

uniapp商品列表

贴上代码

<template>
	<view>
		<view class="goods-list">
			<block v-for="(item,i) in goodsList" :key="i">
				<view class="goods-item">
					<!-- 左侧盒子 -->
					<view class="goods-item-left">
						<image :src="item.logo||defaultPic" class="goods-pic"></image>
					</view>
					<!-- 右侧盒子 -->
					<view class="goods-item-right">
						<!-- 商品的名称 -->
						<view class="goods-name">{{item.name}}</view>
						<!-- 价格 -->
						<view class="goods-info-box">
							<view class="goods-price">¥{{item.price|toFixed}}</view>
						</view>
					</view>
				</view>
			</block>
		</view>
	</view>
</template>

<script>
	export default {
		data() {
			return {
				//传参对象
				queryObj: {
					query: '',
					id: '',
					//分页
					pageNum: 1,
					pageSize: 10
				},
				goodsList: [],
				total: 0,
				//默认显示的图片
				defaultPic: '../../static/goods/default.png'
			};
		},
		onLoad(options) {
			this.queryObj.query = options.query || '';
			this.queryObj.id = options.id || '';
			this.getGoodsList();
		},
		methods: {
			getGoodsList() {
				uni.request({
					url: uni.$baseUrl + '/api/Home/GetGoodsList',
					// data: this.queryObj
				}).then((res) => {
					// console.log(res.data.data);			
					if (res.data.code != 200) return uni.$showMsg();
					this.goodsList = res.data.data;
					this.total = res.data.total;
				});
			}
		}
	},
	//价格保留两位小数
	filters:{
		toFixed(num){
			return Number(num).toFixed(2)
		}
	}
</script>

<style lang="scss">
	.goods-item {
		display: flex;
		padding: 10px 5px;
		border-bottom: 1px solid #f0f0f0;

		.goods-item-left {
			margin-right: 5xp;

			.goods-pic {
				width: 100px;
				height: 100px;
				display: block;
			}
		}

		.goods-item-right {
			display: flex;
			flex-direction: column;
			justify-content: space-between;

			.goods-name {
				font-size: 13px;
			}

			.goods-info-box {
				.goods-price {
					color: #c00000;
					font-size: 16px;
				}
			}
		}
	}
</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103

效果示例

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/码创造者/article/detail/779382
推荐阅读
相关标签
  

闽ICP备14008679号