待收货

This commit is contained in:
2019-12-14 15:32:50 +08:00
parent d0e12335ea
commit 62eb95c156
12 changed files with 144 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
Component({
properties: {
},
data: {
steps: [
{
text: '步骤一',
desc: '描述信息'
},
{
text: '步骤二',
desc: '描述信息'
},
{
text: '步骤三',
desc: '描述信息'
},
{
text: '步骤四',
desc: '描述信息'
}
]
},
methods: {
}
})

View File

@@ -0,0 +1,6 @@
{
"component": true,
"usingComponents": {
"van-steps": "../utils/dist/steps/index"
}
}

View File

@@ -0,0 +1,17 @@
.logistics{
margin-top: 20rpx;
background-color: #fff;
.title{
height: 84rpx;
font-size: 28rpx;
color: #333;
line-height: 84rpx;
border-bottom: 2rpx solid #e5e5e5;
padding-left: 29rpx;
box-sizing: border-box;
}
.schedule{
width: 650rpx;
margin-left: 50rpx;
}
}

View File

@@ -0,0 +1,4 @@
<view class="logistics">
<view class="title">物流追踪</view>
<van-steps steps="{{ steps }}" active="{{ 1 }}" direction="vertical" active-color="#47C877" class="schedule" />
</view>

View File

@@ -0,0 +1 @@
.logistics{margin-top:20rpx;background-color:#fff}.logistics .title{height:84rpx;font-size:28rpx;color:#333;line-height:84rpx;border-bottom:2rpx solid #e5e5e5;padding-left:29rpx;box-sizing:border-box}.logistics .schedule{width:650rpx;margin-left:50rpx}