li-guang
2020-12-29 7890d895bd543436d44ff66c88c356977675e758
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<template>
    <!-- 忘记密码 -->
    <view>
        <view class="input-box">
            <input placeholder="请输入手机号码" placeholder-class="placeholder" class="input-group-row"/>
            <view class="flex mt-10">
                <input placeholder="请输入验证码" placeholder-class="placeholder" class="input-group-row flex-1"/>
                <button class="btn blue-btn">获取验证码</button>
            </view>
        </view>
        <navigator url="./newPassword" hover-class="none" class="next">
            <button class="blue-btn">下一步</button>
        </navigator>
    </view>
</template>
 
<script>
</script>
 
<style>
    .input-box{
        margin: 40px 20px;
    }
    .btn{
        margin: 0;
    }
    .next{
        margin: 60px 20px;
    }
</style>