1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <template>
- <view class="page">
- <view class="title">身份验证</view>
- <view class="input u-flex" style="margin-top: 28rpx;">
- <u-input placeholder-style='font-size: 32rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #222222;opacity: 0.5;' placeholder='手机号' v-model="phone" type="text" :border="false" :clearable='false' />
- </view>
- <view class="input u-flex">
- <u-input placeholder-style='font-size: 32rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #222222;opacity: 0.5;' placeholder='请输入验证码' v-model="code" type="text" :border="false" :clearable='false' />
- <view class="code">
- 获取验证码
- </view>
- </view>
- <view class="button" @click="changePasswoed">
- 确认
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- code:'',
- phone:''
- };
- },
- methods:{
- changePasswoed(){
- uni.navigateTo({
- url:'/pages/login/changePasswoed'
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .page {
- padding: 52rpx 36rpx 0;
- border-top: 2rpx solid #979797;
- }
- .code {
- font-size: 32rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #06A971;
- }
- .button {
- width: 678rpx;
- height: 84rpx;
- background: #06A971;
- border-radius: 8rpx;
- opacity: 0.5;
- text-align: center;
- margin-top: 46rpx;
- line-height: 84rpx;
- font-size: 32rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #FFFFFF;
- }
- .title {
- height: 74rpx;
- font-size: 52rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- color: #222222;
- line-height: 74rpx;
- }
- .input {
- height: 122rpx;
- display: flex;
- align-items: center;
- border-bottom: 2rpx solid rgba(0, 0, 0, 0.14);
- }
- </style>
|