|
@@ -41,14 +41,14 @@ export default {
|
|
|
password: this.$store.state.vuex_user.password
|
|
|
},
|
|
|
isRemember: true, // 是否记住密码
|
|
|
- isAuthuserYs: false, // 是否同意隐私政策
|
|
|
+ isAuthuserYs: true, // 是否同意隐私政策
|
|
|
envTips: '',
|
|
|
buildType: '',
|
|
|
};
|
|
|
},
|
|
|
mounted() {
|
|
|
this.isRemember = this.$store.state.vuex_isRemember || true;
|
|
|
- this.isAuthuserYs = this.$store.state.vuex_isUsrAuthYs || false;
|
|
|
+ this.isAuthuserYs = this.$store.state.vuex_isUsrAuthYs || true;
|
|
|
this.envTips = getApp().globalData.envTips;
|
|
|
this.buildType = getApp().globalData.buildType;
|
|
|
},
|