123 lines
2.3 KiB
Vue
123 lines
2.3 KiB
Vue
<template>
|
||
<view class="page">
|
||
<u-navbar title="安全验证" :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff" title-size='36'
|
||
height='50'></u-navbar>
|
||
<view class="wz" style="margin-top: 64rpx;">
|
||
为了保证您的账号安全,须先验证您的身份,
|
||
</view>
|
||
<view class="wz">
|
||
验证成功后可以进行下一步操作。
|
||
</view>
|
||
<view class="tel">
|
||
+86 158****1232
|
||
</view>
|
||
<view class="btnyzm" @click="btnhuoqu(1)">
|
||
获取验证码
|
||
</view>
|
||
<view class="wufa" @click="btnhuoqu(2)">
|
||
该手机号已无法使用?
|
||
</view>
|
||
<view class="" style="border-bottom: 1px solid #4C97E7;width: 276rpx;margin: auto;">
|
||
|
||
</view>
|
||
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
data() {
|
||
return {
|
||
bgc: {
|
||
backgroundColor: " #48893B",
|
||
},
|
||
}
|
||
},
|
||
onLoad() {
|
||
|
||
},
|
||
// 分享到好友(会话)
|
||
onShareAppMessage: function () {
|
||
return {
|
||
title: '创想物联',
|
||
path: '/pages/shouye/index'
|
||
}
|
||
},
|
||
|
||
// 分享到朋友圈
|
||
onShareTimeline: function () {
|
||
return {
|
||
title: '创想物联',
|
||
query: '',
|
||
path: '/pages/shouye/index'
|
||
}
|
||
},
|
||
onShow() {
|
||
|
||
},
|
||
methods: {
|
||
// 点击跳转获取验证码
|
||
btnhuoqu(num){
|
||
uni.navigateTo({
|
||
url:'/page_fenbaotwo/yzmhq?index=' + num
|
||
})
|
||
},
|
||
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
.wz{
|
||
width: 100%;
|
||
text-align: center;
|
||
font-size: 30rpx;
|
||
color: #3D3D3D;
|
||
}
|
||
.tel{
|
||
font-size: 36rpx;
|
||
color: #3D3D3D;
|
||
font-weight: 600;
|
||
margin-top: 38rpx;
|
||
width: 100%;
|
||
text-align: center;
|
||
}
|
||
.btnyzm{
|
||
width: 652rpx;
|
||
height: 94rpx;
|
||
background: #4C97E7;
|
||
border-radius: 14rpx 14rpx 14rpx 14rpx;
|
||
text-align: center;
|
||
line-height: 94rpx;
|
||
font-size: 36rpx;
|
||
color: #FFFFFF;
|
||
font-weight: 600;
|
||
margin: auto;
|
||
margin-top: 64rpx;
|
||
}
|
||
.wufa{
|
||
font-size: 28rpx;
|
||
color: #4C97E7;
|
||
margin-top: 64rpx;
|
||
text-align: center;
|
||
}
|
||
|
||
/deep/ .u-title{
|
||
padding-bottom: 22rpx;
|
||
}
|
||
/deep/ .uicon-nav-back{
|
||
padding-bottom: 22rpx;
|
||
}
|
||
|
||
page {
|
||
// background: linear-gradient(180deg, #8883F0 0%, rgba(255, 255, 255, 0) 100%);
|
||
background: #F4F5F7;
|
||
}
|
||
|
||
.page {
|
||
width: 750rpx;
|
||
}
|
||
|
||
|
||
|
||
</style> |