You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

117 lines
2.4 KiB

5 years ago
<template>
<view>
5 years ago
<image class="top-pic" :src="STATIC_URL+'join.png'" mode="widthFix"></image>
<view class="bg-white text-black msg-con">
5 years ago
<view class="">如果您想</view>
<view class="">致力于为消费者提供更有品质的生活</view>
<view class="">倡导独立不盲从的价值观</view>
<view class="">请联系我们</view>
</view>
5 years ago
<view class="box bg-white flex justify-between flex-wrap">
<view class="item flex flex-direction justify-center" v-for="(item,index) in list" :key="index">
5 years ago
<view class="flex">
5 years ago
<view class="flex flex-direction justify-center align-center icon-con">
<image :src="item.icon" class="icon" mode="heightFix"></image>
5 years ago
</view>
<view class="clear">
5 years ago
<view class="text-hidden txt">{{item.txt}}</view>
<view class="site">{{item.website}}</view>
5 years ago
</view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
5 years ago
STATIC_URL: this.STATIC_URL,
list: [{
icon: "/static/mine/h01.png",
txt: "母婴亲子·运动旅行",
website: "Fonnie@cn-recook.com"
5 years ago
},
{
5 years ago
icon: "/static/mine/h02.png",
txt: "服饰内衣·箱包",
website: "Hedy@cn-recook.com"
5 years ago
},
{
5 years ago
icon: "/static/mine/h03.png",
txt: "农副产品·蔬果生鲜",
website: "Helen@cn-recook.com"
5 years ago
},
{
5 years ago
icon: "/static/mine/h04.png",
txt: "美妆个护·个护清洁",
website: "Martin@cn-recook.com"
5 years ago
},
{
5 years ago
icon: "/static/mine/h05.png",
txt: "电器·3C产品",
website: "Shawn@cn-recook.com"
5 years ago
},
{
5 years ago
icon: "/static/mine/h06.png",
txt: "其他",
website: "Franco@cn-recook.com"
5 years ago
},
{
5 years ago
icon: "/static/mine/h07.png",
txt: "家装家居·美食酒水·进口食品",
website: "Michelle@cn-recook.com"
5 years ago
},
5 years ago
5 years ago
]
};
}
}
</script>
<style lang="scss">
5 years ago
.top-pic {
width: 690rpx;
height: 368rpx;
margin: 20rpx 30rpx;
}
.msg-con {
padding: 30rpx;
margin-bottom: 20rpx;
line-height: 45rpx;
}
.box {
padding: 30rpx;
5 years ago
5 years ago
.item {
width: 50%;
height: 120rpx;
.icon-con {
width: 40rpx;
height: 40rpx;
.icon {
height: 32rpx;
width: auto;
margin-right: 10rpx;
}
}
.txt {
font-size: 26rpx;
color: #333333;
line-height: 40rpx;
}
.site {
font-size: 24rpx;
color: #666666;
}
}
}
5 years ago
</style>