|
@@ -31,11 +31,14 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <u-button :style="[inputStyle]" class="login-btn" type="success" shape="circle" @click="login">{{show2?'登录':'关注公众号'}}</u-button>
|
|
|
+ <u-button :style="[inputStyle]" class="login-btn" type="success" shape="circle" @click="login">登录</u-button>
|
|
|
<u-verification-code :seconds="sendMsgSecond" ref="uCode" @change="codeChange" @end="end" @start="start" change-text="已发送(Xs)">
|
|
|
</u-verification-code>
|
|
|
</view>
|
|
|
|
|
|
+ <view class="foot" v-if="!show2">
|
|
|
+ <span style="color: red;">*</span>我们将使用您的微信昵称及头像,为您补全本平台帐号相关基础信息,请点击下方“<span style="color: #3fbd70;">使用完整服务</span>”。
|
|
|
+ </view>
|
|
|
<u-modal v-model="show1" @confirm="gotoGz"
|
|
|
cancel-text="暂不关注"
|
|
|
confirm-text="前往关注"
|
|
@@ -250,10 +253,10 @@
|
|
|
this.value = !this.value;
|
|
|
},
|
|
|
login() {
|
|
|
- if(!this.show2){
|
|
|
- this.show1=true;
|
|
|
- return
|
|
|
- }
|
|
|
+ // if(!this.show2){
|
|
|
+ // this.show1=true;
|
|
|
+ // return
|
|
|
+ // }
|
|
|
|
|
|
var checkPhoneResult = checkPhone(this.form.telephone);
|
|
|
|
|
@@ -336,6 +339,19 @@
|
|
|
}
|
|
|
</style>
|
|
|
<style lang="scss" scoped>
|
|
|
+
|
|
|
+ .foot{
|
|
|
+ position:fixed;
|
|
|
+ left: 0;
|
|
|
+ right: 0;
|
|
|
+ bottom: 0;
|
|
|
+ background-color: #fff;
|
|
|
+
|
|
|
+
|
|
|
+ padding: 0 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
@import "@/_theme.scss";
|
|
|
.all{
|
|
|
@include themeify{
|