<script>
|
export default {
|
name: "lanyaerji",
|
data() {
|
return {
|
ls:[
|
{title:"康倍星助行器", synopsis:"老人助力行走器 可推可坐", img:"/static/imgs/quanshou/SW1.png"},
|
{title:"EMBERTON III", synopsis:"无线蓝牙家用户外防尘防水长续航小音响", img:"/static/imgs/quanshou/SW2.png"},
|
{title:"哈曼卡顿音响", synopsis:"蓝牙音箱 环绕立体声下沉式低音炮", img:"/static/imgs/quanshou/SW3.png"},
|
{title:"吉普自行车", synopsis:"山地车成人越野学生代步", img:"/static/imgs/quanshou/SW4.png"},
|
{title:"富迪堡葡萄酒", synopsis:"虎爵大师干红葡萄酒", img:"/static/imgs/quanshou/SW5.png"},
|
{title:"浴百家浴室柜", synopsis:"陶瓷一体盆柜洗手盆柜组合洗漱台", img:"/static/imgs/quanshou/SW6.png"},
|
{title:"小牧卫浴智能马桶", synopsis:"马桶座圈加热离座冲停零压劲冲", img:"/static/imgs/quanshou/SW7.png"},
|
{title:"蓝牙耳机", synopsis:"无线降噪IPX4防水", img:"/static/imgs/quanshou/SW8.png"},
|
]
|
}
|
},
|
}
|
</script>
|
|
<template>
|
<view>
|
|
<view style="display: flex;flex-wrap: wrap;justify-content: space-between;">
|
|
<view v-for="i in ls" :key="i.title" style="width: calc(50% - 14rpx);background: #F9F9F9;margin-bottom: 28rpx;position: relative;border-radius: 24rpx">
|
<image style="height: 359.23rpx;width: 100%;border-radius: 24rpx 24rpx 0 0 " :src="i.img"></image>
|
<image style="width: 68rpx;height: 72rpx;position: absolute;right: 22rpx;" src="/static/imgs/quanshou/SWLL.png"></image>
|
<view style="padding: 10rpx 20rpx 20rpx 20rpx;">
|
<view style="font-weight: 600;color: #333333;font-size: 32rpx;">{{ i.title }}</view>
|
<view class="ellipsis">{{ i.synopsis }}</view>
|
</view>
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
</template>
|
|
<style scoped lang="scss">
|
.ellipsis {
|
white-space: nowrap;
|
overflow: hidden;
|
text-overflow: ellipsis;
|
font-size: 24rpx;color: #666666;margin-top: 10rpx;
|
}
|
|
</style>
|