商城首页

This commit is contained in:
2020-06-11 09:34:23 +08:00
parent 92deb50c1a
commit 72a29af788
6 changed files with 417 additions and 0 deletions

View File

@@ -0,0 +1,71 @@
<template>
<view class="seckill">
<view class="top">
<view class="title">
<view class="name">全部秒杀</view>
<view class="time">
<text class="num">12</text>
<text class="mah">:</text>
<text class="num">12</text>
<text class="mah">:</text>
<text class="num">12</text>
</view>
</view>
<view class="next">
查看更多>
</view>
</view>
<view class="list">
<sitem></sitem>
<sitem></sitem>
<sitem></sitem>
</view>
</view>
</template>
<script>
import sitem from "./item"
export default {
name:"seckill",
components:{
sitem
}
}
</script>
<style lang="scss" scoped>
.seckill{
.top{
height: 60rpx;
display: flex;
align-items: center;
justify-content: space-between;
.title{
display: flex;
align-items: center;
.name{
font-size: 30rpx;
color: #333;
}
.time{
margin-left: 39rpx;
display: flex;
align-items: center;
font-size: 20rpx;
.num{
width: 25rpx;
height: 25rpx;
background-color: #bfbfbf;
margin: 0 10rpx;
}
}
}
.next{
font-size: 18rpx;
color: #999;
}
}
.list{
display: flex;
justify-content: space-between;
}
}
</style>

View File

@@ -0,0 +1,63 @@
<template>
<view class="item">
<image class="head"></image>
<text class="title">商品名</text>
<view class="price">
<text>99</text>
<text>299</text>
</view>
<view class="info">
<text>剩余21件</text>
<text>立即购买</text>
</view>
</view>
</template>
<script>
export default {
name:"item"
}
</script>
<style lang="scss" scoped>
.item{
width: 210rpx;
.head{
width: 210rpx;
height: 131rpx;
border-radius: 6rpx;
}
.title{
font-size: 26rpx;
color: #333;
margin-top: 16rpx;
}
.price{
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 19rpx;
>text:first-child{
font-size: 26rpx;
color: #FF3131;
}
>text:last-child{
font-size: 24rpx;
color: #999;
}
}
.info{
display: flex;
align-items: center;
justify-content: space-between;
font-size: 22rpx;
margin-top: 19rpx;
>text:first-child{
color: #666;
}
>text:last-child{
color: #FDD360;
}
}
}
</style>