deming/components/shop/list/item.vue

53 lines
1.1 KiB
Vue
Raw Normal View History

2020-06-11 08:37:52 +00:00
<template>
<view class="item">
2020-06-18 06:57:26 +00:00
<image :src="$u.http.config.baseUrl + info.goods_image" class="img"></image>
2020-06-11 08:37:52 +00:00
<view class="info">
2020-06-18 06:57:26 +00:00
<text class="title u-line-1">{{ info.goods_name }}</text>
<text class="jianjie u-line-2">{{ info.goods_advword }}</text>
<text class="price">{{ info.goods_price }}</text>
2020-06-11 08:37:52 +00:00
</view>
</view>
</template>
<script>
export default {
2020-06-18 06:57:26 +00:00
name:"item",
props: {
info: Object
}
2020-06-11 08:37:52 +00:00
}
</script>
<style lang="scss" scoped>
.item{
width: 330rpx;
height: 469rpx;
margin-bottom: 27rpx;
background-color: #f8f8f8;
border-radius: 10rpx;
overflow: hidden;
.img{
width: 100%;
height: 272rpx;
}
.info{
2020-06-18 06:57:26 +00:00
width: 320rpx;
2020-06-11 08:37:52 +00:00
padding: 0 12rpx;
display: flex;
flex-direction: column;
justify-content: space-around;
.title{
font-size: 30rpx;
color: #333;
}
.jianjie{
font-size: 26rpx;
color: #666;
}
.price{
color: #FF3131;
font-size: 26rpx;
}
}
}
</style>