Browse Source

移动验证手机删除多余的打印输出

hangb 7 years ago
parent
commit
cf576319b0

+ 0 - 1
components/mobile/validation/ValidationPhoneStepEmail.vue

@@ -56,7 +56,6 @@
           .then(response => {
             this.$indicator.close()
             if (response.data.success) {
-              console.log('email', response.data)
               this.hasSend = true
               this.secretEmail = '已发送验证邮件,请查收'
             } else {

+ 0 - 2
components/mobile/validation/ValidationPhoneStepNew.vue

@@ -122,7 +122,6 @@
       },
       // 获取验证码
       getCheckCode () {
-        console.log('获取', this.tokenId)
         if (this.tokenTime > 0 && this.tokenTime < 60) {
           this.downToast('请稍后再点击,我在倒计时')
         } else {
@@ -131,7 +130,6 @@
             let _this = this
             this.$http.get('/update/user/setMobile', {params: {mobile: this.valid.mobile, token: this.$route.query.token ? this.$route.query.token : this.tokenId}})
               .then(response => {
-                console.log('de', response.data)
                 this.$indicator.close()
                 if (response.data) {
                   this.tokenCode = response.data.content.token

+ 0 - 1
components/validation/PhoneValidation.vue

@@ -140,7 +140,6 @@
           callback(new Error('请填写正确的验证码'))
           this.codeErrorChecked = false
           this.codeChecked = false
-          console.log(this.codeChecked)
         } else {
           if (this.valid.code !== '') {
             if (this.token) {

+ 0 - 2
pages/validation/phoneValidation.vue

@@ -57,7 +57,6 @@
     },
     methods: {
       setStep (type) {
-        console.log(type)
         this.step = type
       },
       setInfo (style) {
@@ -67,7 +66,6 @@
         this.tokenId = token
       },
       setStepLast (type) {
-        console.log(type)
         this.stepLast = type
       }
     }