push
This commit is contained in:
parent
8d05bab236
commit
6c21adaaba
@ -9,29 +9,13 @@
|
|||||||
<view class="info">
|
<view class="info">
|
||||||
<view class="item">
|
<view class="item">
|
||||||
<view class="name">手机号</view>
|
<view class="name">手机号</view>
|
||||||
<u--input
|
<u--input placeholder="请输入手机号" border="none" v-model="phone" @change="changePhone" clearable type="number"
|
||||||
placeholder="请输入手机号"
|
@blur="checkPhone" @confirm="checkPhone"></u--input>
|
||||||
border="none"
|
|
||||||
v-model="phone"
|
|
||||||
@change="changePhone"
|
|
||||||
clearable
|
|
||||||
type="number"
|
|
||||||
@blur="checkPhone"
|
|
||||||
@confirm="checkPhone"
|
|
||||||
></u--input>
|
|
||||||
</view>
|
</view>
|
||||||
<view class="item">
|
<view class="item">
|
||||||
<view class="name">确定手机号</view>
|
<view class="name">确定手机号</view>
|
||||||
<u--input
|
<u--input placeholder="请输入手机号" border="none" v-model="determinePhone" @change="changeDeterminePhone" clearable
|
||||||
placeholder="请输入手机号"
|
type="number" @blur="checkPhone" @confirm="checkPhone"></u--input>
|
||||||
border="none"
|
|
||||||
v-model="determinePhone"
|
|
||||||
@change="changeDeterminePhone"
|
|
||||||
clearable
|
|
||||||
type="number"
|
|
||||||
@blur="checkPhone"
|
|
||||||
@confirm="checkPhone"
|
|
||||||
></u--input>
|
|
||||||
<view class="right" v-show="isRight" :style="{ background: !isTrue ? '#76c458' : '#FF0000' }">
|
<view class="right" v-show="isRight" :style="{ background: !isTrue ? '#76c458' : '#FF0000' }">
|
||||||
<u-icon name="checkmark-circle" color="#fff" v-if="!isTrue"></u-icon>
|
<u-icon name="checkmark-circle" color="#fff" v-if="!isTrue"></u-icon>
|
||||||
<u-icon name="close-circle" color="#fff" v-else></u-icon>
|
<u-icon name="close-circle" color="#fff" v-else></u-icon>
|
||||||
@ -99,6 +83,7 @@ export default {
|
|||||||
page {
|
page {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
.main {
|
.main {
|
||||||
background: url("@/static/image/login-bg.png") no-repeat;
|
background: url("@/static/image/login-bg.png") no-repeat;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
@ -107,17 +92,22 @@ page {
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
|
overflow-y: auto;
|
||||||
|
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
height: 200rpx;
|
height: 200rpx;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
||||||
.img {
|
.img {
|
||||||
width: 124rpx;
|
width: 124rpx;
|
||||||
height: 72rpx;
|
height: 72rpx;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
@ -129,13 +119,17 @@ page {
|
|||||||
background: #fff;
|
background: #fff;
|
||||||
border-radius: 40rpx 40rpx 0rpx 0rpx;
|
border-radius: 40rpx 40rpx 0rpx 0rpx;
|
||||||
padding: 62rpx 32rpx;
|
padding: 62rpx 32rpx;
|
||||||
|
overflow-y: auto;
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
color: #626262;
|
color: #626262;
|
||||||
font-size: 40rpx;
|
font-size: 40rpx;
|
||||||
margin-left: 36rpx;
|
margin-left: 36rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.info {
|
.info {
|
||||||
margin-top: 90rpx;
|
margin-top: 90rpx;
|
||||||
|
|
||||||
.item {
|
.item {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
background: #f8f8f8;
|
background: #f8f8f8;
|
||||||
@ -146,15 +140,18 @@ page {
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
padding-left: 24rpx;
|
padding-left: 24rpx;
|
||||||
margin-bottom: 20rpx;
|
margin-bottom: 20rpx;
|
||||||
|
|
||||||
.name {
|
.name {
|
||||||
width: 200rpx;
|
width: 200rpx;
|
||||||
height: 72rpx;
|
height: 72rpx;
|
||||||
line-height: 72rpx;
|
line-height: 72rpx;
|
||||||
border-right: 1rpx solid #d1d1d1;
|
border-right: 1rpx solid #d1d1d1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/deep/ .u-input {
|
/deep/ .u-input {
|
||||||
margin-left: 40rpx;
|
margin-left: 40rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.right {
|
.right {
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 70rpx;
|
width: 70rpx;
|
||||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"usingComponents": {},
|
"component": true,
|
||||||
"component": true
|
"usingComponents": {}
|
||||||
}
|
}
|
@ -1,10 +1,10 @@
|
|||||||
{
|
{
|
||||||
|
"component": true,
|
||||||
"usingComponents": {
|
"usingComponents": {
|
||||||
"u-popup": "/uview-ui/components/u-popup/u-popup",
|
"u-popup": "/uview-ui/components/u-popup/u-popup",
|
||||||
"u-icon": "/uview-ui/components/u-icon/u-icon",
|
"u-icon": "/uview-ui/components/u-icon/u-icon",
|
||||||
"u-line": "/uview-ui/components/u-line/u-line",
|
"u-line": "/uview-ui/components/u-line/u-line",
|
||||||
"u-loading-icon": "/uview-ui/components/u-loading-icon/u-loading-icon",
|
"u-loading-icon": "/uview-ui/components/u-loading-icon/u-loading-icon",
|
||||||
"u-gap": "/uview-ui/components/u-gap/u-gap"
|
"u-gap": "/uview-ui/components/u-gap/u-gap"
|
||||||
},
|
}
|
||||||
"component": true
|
|
||||||
}
|
}
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
|
"component": true,
|
||||||
"usingComponents": {
|
"usingComponents": {
|
||||||
"u-loading-icon": "/uview-ui/components/u-loading-icon/u-loading-icon",
|
"u-loading-icon": "/uview-ui/components/u-loading-icon/u-loading-icon",
|
||||||
"u-icon": "/uview-ui/components/u-icon/u-icon"
|
"u-icon": "/uview-ui/components/u-icon/u-icon"
|
||||||
},
|
}
|
||||||
"component": true
|
|
||||||
}
|
}
|
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"usingComponents": {},
|
"component": true,
|
||||||
"component": true
|
"usingComponents": {}
|
||||||
}
|
}
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
|
"component": true,
|
||||||
"usingComponents": {
|
"usingComponents": {
|
||||||
"u-picker": "/uview-ui/components/u-picker/u-picker"
|
"u-picker": "/uview-ui/components/u-picker/u-picker"
|
||||||
},
|
}
|
||||||
"component": true
|
|
||||||
}
|
}
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
|
"component": true,
|
||||||
"usingComponents": {
|
"usingComponents": {
|
||||||
"u-line": "/uview-ui/components/u-line/u-line"
|
"u-line": "/uview-ui/components/u-line/u-line"
|
||||||
},
|
}
|
||||||
"component": true
|
|
||||||
}
|
}
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
|
"component": true,
|
||||||
"usingComponents": {
|
"usingComponents": {
|
||||||
"u-transition": "/uview-ui/components/u-transition/u-transition",
|
"u-transition": "/uview-ui/components/u-transition/u-transition",
|
||||||
"u-loading-icon": "/uview-ui/components/u-loading-icon/u-loading-icon"
|
"u-loading-icon": "/uview-ui/components/u-loading-icon/u-loading-icon"
|
||||||
},
|
}
|
||||||
"component": true
|
|
||||||
}
|
}
|
@ -1,10 +1,10 @@
|
|||||||
{
|
{
|
||||||
|
"component": true,
|
||||||
"usingComponents": {
|
"usingComponents": {
|
||||||
"u-overlay": "/uview-ui/components/u-overlay/u-overlay",
|
"u-overlay": "/uview-ui/components/u-overlay/u-overlay",
|
||||||
"u-transition": "/uview-ui/components/u-transition/u-transition",
|
"u-transition": "/uview-ui/components/u-transition/u-transition",
|
||||||
"u-status-bar": "/uview-ui/components/u-status-bar/u-status-bar",
|
"u-status-bar": "/uview-ui/components/u-status-bar/u-status-bar",
|
||||||
"u-icon": "/uview-ui/components/u-icon/u-icon",
|
"u-icon": "/uview-ui/components/u-icon/u-icon",
|
||||||
"u-safe-bottom": "/uview-ui/components/u-safe-bottom/u-safe-bottom"
|
"u-safe-bottom": "/uview-ui/components/u-safe-bottom/u-safe-bottom"
|
||||||
},
|
}
|
||||||
"component": true
|
|
||||||
}
|
}
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
|
"component": true,
|
||||||
"usingComponents": {
|
"usingComponents": {
|
||||||
"u-icon": "/uview-ui/components/u-icon/u-icon",
|
"u-icon": "/uview-ui/components/u-icon/u-icon",
|
||||||
"u-loading-icon": "/uview-ui/components/u-loading-icon/u-loading-icon"
|
"u-loading-icon": "/uview-ui/components/u-loading-icon/u-loading-icon"
|
||||||
},
|
}
|
||||||
"component": true
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user