mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-05-21 22:09:16 +08:00
steps
This commit is contained in:
parent
8e9c71ebd1
commit
0578ae1697
3
app.json
3
app.json
@ -8,7 +8,8 @@
|
||||
"pages/loadmore/index",
|
||||
"pages/panel/index",
|
||||
"pages/tab/index",
|
||||
"pages/toptips/index"
|
||||
"pages/toptips/index",
|
||||
"pages/steps/index"
|
||||
],
|
||||
"window":{
|
||||
"navigationBarBackgroundColor": "#FAFAFA",
|
||||
|
13
pages/steps/index.js
Normal file
13
pages/steps/index.js
Normal file
@ -0,0 +1,13 @@
|
||||
var app = getApp()
|
||||
|
||||
Page({
|
||||
data: {
|
||||
},
|
||||
|
||||
onLoad: function () {
|
||||
|
||||
},
|
||||
|
||||
onShow: function() {
|
||||
},
|
||||
})
|
24
pages/steps/index.wxml
Normal file
24
pages/steps/index.wxml
Normal file
@ -0,0 +1,24 @@
|
||||
<view class="top-info__steps zui-steps zui-steps-3">
|
||||
<view
|
||||
class="zui-steps__step zui-steps__step--first-child zui-steps__step--done">
|
||||
<text class="zui-steps__title">步骤一</text>
|
||||
<view class="zui-steps__icon">
|
||||
<view class="zui-steps__circle"></view>
|
||||
</view>
|
||||
<view class="zui-steps__line"></view>
|
||||
</view>
|
||||
<view class="zui-steps__step zui-steps__step--done zui-steps__step--cur">
|
||||
<text class="zui-steps__title">步骤二</text>
|
||||
<view class="zui-steps__icon">
|
||||
<view class="zui-steps__circle"></view>
|
||||
</view>
|
||||
<view class="zui-steps__line"></view>
|
||||
</view>
|
||||
<view class="zui-steps__step zui-steps__step--last-child">
|
||||
<text class="zui-steps__title">步骤三</text>
|
||||
<view class="zui-steps__icon">
|
||||
<view class="zui-steps__circle"></view>
|
||||
</view>
|
||||
<view class="zui-steps__line"></view>
|
||||
</view>
|
||||
</view>
|
Loading…
x
Reference in New Issue
Block a user