This commit is contained in:
2019-12-14 10:25:59 +08:00
parent f625f398c7
commit 10d81f738d
20 changed files with 214 additions and 227 deletions

View File

@@ -0,0 +1,8 @@
Component({
properties: {
},
data: {
},
methods: {
}
})

View File

@@ -0,0 +1,3 @@
{
"component": true
}

View File

@@ -0,0 +1,40 @@
.message {
padding: 35rpx;
display: flex;
align-items: center;
border-bottom: 1rpx solid #F2F2F2;
.image {
width: 141rpx;
height: 150rpx;
background-color: #000;
margin-left: 34rpx;
}
.introduce {
margin-left: 32rpx;
height: 120rpx;
display: flex;
flex-direction: column;
justify-content: space-between;
width: 362rpx;
.title {
font-size: 28rpx;
color: #333;
}
.count {
font-size: 24rpx;
color: #999;
display: flex;
> view {
margin-right: 27rpx;
}
}
}
.parameter {
width: 150rpx;
height: 120rpx;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: flex-end;
}
}

View File

@@ -0,0 +1,14 @@
<view class="message">
<image class="image"></image>
<view class="introduce">
<view class="title">001|德国双心药房版 胶原蛋白美容口服液养颜</view>
<view class="count">
<view>30只</view>
<view>1.0356kg</view>
</view>
</view>
<view class="parameter">
<view class="price">¥29.80</view>
<view class="num">x2</view>
</view>
</view>

View File

@@ -0,0 +1 @@
.message{padding:35rpx;display:flex;align-items:center;border-bottom:1rpx solid #F2F2F2}.message .image{width:141rpx;height:150rpx;background-color:#000;margin-left:34rpx}.message .introduce{margin-left:32rpx;height:120rpx;display:flex;flex-direction:column;justify-content:space-between;width:362rpx}.message .introduce .title{font-size:28rpx;color:#333}.message .introduce .count{font-size:24rpx;color:#999;display:flex}.message .introduce .count>view{margin-right:27rpx}.message .parameter{width:150rpx;height:120rpx;display:flex;flex-direction:column;justify-content:space-between;align-items:flex-end}