Преглед изворни кода

解决重置密码通过原密码修改不能跳转到验证密保的问题以及移动端选择地址输入框有内容时隐藏小图标

hangb пре 7 година
родитељ
комит
6ef28699d8

+ 1 - 1
components/mobile/changeManager/StepAppeal.vue

@@ -66,7 +66,7 @@
                       placeholder="注册地址"
                       v-model="regAddress"
                       @click.native="chooseAddress"></mt-field>
-            <i class="fa fa-map-marker fa-p"></i>
+            <i class="fa fa-map-marker fa-p" v-show="regAddress.length === 0"></i>
           </div>
           <div class="page-part">
             <mt-field placeholder="申诉说明"

+ 1 - 1
components/mobile/enterpriseCertification/stepOne.vue

@@ -47,7 +47,7 @@
                       placeholder="注册地址"
                       v-model="regAddress"
                       @click.native="chooseAddress"></mt-field>
-            <i class="fa fa-map-marker fa-p"></i>
+            <i class="fa fa-map-marker fa-p" v-show="regAddress.length === 0"></i>
           </div>
           <div class="form-btn">
             <div class="page-part">

+ 1 - 1
components/mobile/reset/stepBefore.vue

@@ -14,7 +14,7 @@
                   v-model="password"></mt-field>
       </div>
       <div class="page-part">
-        <mt-button size="large" type="primary" @click="sureAccount('new')">下一步</mt-button>
+        <mt-button size="large" type="primary" @click="sureAccount('security')">下一步</mt-button>
       </div>
     </div>
   </div>

+ 1 - 1
components/reset/PasswordStepBefore.vue

@@ -88,7 +88,7 @@
             .then(response => {
               this.isShowLoading = false
               if (response.data.success) {
-                this.$emit('stepEvent', 'new')
+                this.$emit('stepEvent', 'security')
                 this.$emit('tokenEvent', response.data.content.token)
               } else {
                 return Promise.reject(response.data)