mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
Merge branch 'master' of gitlab.qima-inc.com:weapp/zui
This commit is contained in:
commit
7da23c154f
3
app.json
3
app.json
@ -9,7 +9,8 @@
|
||||
"pages/panel/index",
|
||||
"pages/tab/index",
|
||||
"pages/quantity/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