Commit 0d085d85 by 陈超

T

parent a2569e0c
...@@ -440,6 +440,7 @@ div::-webkit-scrollbar { ...@@ -440,6 +440,7 @@ div::-webkit-scrollbar {
border-radius:9px; border-radius:9px;
padding-left: 0.5rem; padding-left: 0.5rem;
padding-right: 0.5rem; padding-right: 0.5rem;
width: 2.4375rem;
} }
.center_order_part { .center_order_part {
......
<include file="__THEME__/_header_w3g" /> <include file="__THEME__/_header_w3g" />
<script> <script>
var REPOHNE_VAR="{:U('home/Repwd/getVrifi')}"; let REPOHNE_VAR="{:U('home/Repwd/getVrifi')}"
var REPWDHANDLE="{:U('home/Repwd/repwdhandle')}"; let REPWDHANDLE="{:U('home/Repwd/repwdhandle')}"
var REPWDEMAIL="{:U('basic/Passport/doFindPasswordByEmail')}"; let REPWDEMAIL="{:U('basic/Passport/doFindPasswordByEmail')}"
var OKEMAILADD="{:U('basic/Passport/okemailadd')}"; let OKEMAILADD="{:U('basic/Passport/okemailadd')}"
</script> </script>
<!-- <div class="content"> <!-- <div class="content">
<div class="loginbox"> <div class="loginbox">
...@@ -147,17 +147,22 @@ ...@@ -147,17 +147,22 @@
} }
}, },
computed: { computed: {
valid: function() { valid: function() {
return !this.counting return !this.counting
}, },
codeText: function() { codeText: function() {
return this.counting ? (this.count + 's') : '发验证码' return this.counting ? (this.count + 's') : '发验证码'
}, },
isOk: function() { isOk: function() {
return this.phone.isMobile() && this.code.isCode() && this.password.isPwd() && (this.password == this.repassword) return this.phone.isMobile() && this.code.isCode() && this.password.isPwd() && (this.password == this.repassword)
} },
}, },
methods: { methods: {
onConfirm: function() { onConfirm: function() {
let that = this let that = this
let phone = this.phone let phone = this.phone
...@@ -177,9 +182,9 @@ ...@@ -177,9 +182,9 @@
return return
} }
} }
}) })
}, },
onSendCode: function() { onSendCode: function() {
let that = this let that = this
let phone = that.phone let phone = that.phone
...@@ -206,6 +211,7 @@ ...@@ -206,6 +211,7 @@
} }
}) })
}, },
onTick: function() { onTick: function() {
if(this.count > 0) { if(this.count > 0) {
this.count -= 1 this.count -= 1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment