deming/components/shop/group/index.vue
2020-06-11 16:12:04 +08:00

66 lines
1.3 KiB
Vue

<template>
<view class="group">
<view class="top">
<text>全部拼团</text>
<text>查看更多></text>
</view>
<view class="label">
<text>sda</text>
<text>asda</text>
<text>dsad</text>
<text>asdas</text>
</view>
<view class="list">
<sitem></sitem>
<sitem></sitem>
<sitem></sitem>
</view>
</view>
</template>
<script>
import sitem from "./item"
export default {
name:"group",
components:{
sitem
},
data(){
return {
}
}
}
</script>
<style lang="scss" scoped>
.group{
.top{
height: 90rpx;
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
>text:first-child{
font-size: 30rpx;
color: #333;
}
>text:last-child{
font-size: 18rpx;
color: #999;
}
}
.label{
display: flex;
font-size: 24rpx;
color: #999;
>text{
margin-right: 34rpx;
}
}
.list{
display: flex;
justify-content: space-between;
margin-top: 21rpx;
}
}
</style>