<script>
|
export default {
|
name: "lanyaerji",
|
data() {
|
return {
|
ls:[
|
{title:"报喜干红葡萄酒", synopsis:"报喜干红葡萄酒750ml", img:"/static/img/quanshou/3A.png"},
|
{title:"茶叶", synopsis:"茶拼装茶叶礼盒装莫兰迪高端送礼送长辈高档茶叶礼盒装", img:"/static/img/quanshou/6A.png"},
|
{title:"COACH 男包", synopsis:"男包 老花飞行包时尚百搭实用单肩斜挎包 黑色", img:"/static/img/quanshou/1.png"},
|
{title:"蓝牙耳机", synopsis:"头戴式蓝牙立体声HIFI无线耳机", img:"/static/img/quanshou/8A.png"},
|
{title:"美的冰箱 节能保鲜", synopsis:"三循环系统迷你超薄三门一流节省定頻3级能效非风冷变频", img:"/static/img/quanshou/7.png"},
|
{title:"五粮液 单瓶", synopsis:"普五八代 2022-25年 浓香型白酒 52度", img:"/static/img/quanshou/11.png"},
|
{title:"兆亮 八宝罗盘吊坠", synopsis:"兆亮黄金吊坠女足金八宝罗盘平安扣项链挂坠0.9-1克 ", img:"/static/img/quanshou/2.png"},
|
{title:"联想 27英寸显示器", synopsis:"联想拯救者 27英寸电竞显示器 2K 180Hz", img:"/static/img/quanshou/5.png"},
|
{title:"海斯曼 智能跑步机", synopsis:"海斯曼智能家用跑步机减肥静音全折叠新款 智能升级版", img:"/static/img/quanshou/4.png"},
|
{title:"小米 215L", synopsis:"米家215升小型家用电冰箱 三门三温节能安静运行", img:"/static/img/quanshou/10.png"},
|
]
|
}
|
},
|
}
|
</script>
|
|
<template>
|
<view>
|
|
<view style="display: flex;flex-wrap: wrap;justify-content: space-between">
|
<view v-for="i in ls" style="background: #FFFFFF;border-radius: 24rpx 24rpx 24rpx 24rpx;width: calc( 50% - 9rpx);padding: 30rpx;position: relative;margin-bottom: 20rpx;">
|
<view style="font-size: 32rpx;color: #333333;font-weight: 600;margin-bottom: 10rpx;">{{ i.title }}</view>
|
<view style="font-size: 24rpx;color: #666666;margin-bottom: 20rpx;min-height: 150rpx">{{i.synopsis}}</view>
|
<view style="text-align: right;position: absolute;right: 0;bottom: 0rpx;">
|
<image :src="i.img" style="width: 112rpx;height:96rpx;" mode="widthFix"></image>
|
</view>
|
<view style="position: absolute;left: 0;bottom: -8rpx;">
|
<image src="@/static/img/MKL.png" style="width: 174rpx;height: 50rpx;"></image>
|
</view>
|
</view>
|
|
|
</view>
|
<view style="text-align: center;color: #999999;font-size: 24rpx;margin: auto">实际以用户收到的商品为准</view>
|
</view>
|
</template>
|
|
<style scoped lang="scss">
|
|
</style>
|