|
@@ -955,6 +955,8 @@ export default {
|
|
|
this.informId = option.informId;
|
|
|
// this.clickOfficial()
|
|
|
}
|
|
|
+ if (option.skipPort) {
|
|
|
+ }
|
|
|
},
|
|
|
onShow() {
|
|
|
|
|
@@ -978,6 +980,18 @@ export default {
|
|
|
mounted() {},
|
|
|
methods: {
|
|
|
...mapMutations(["updateChapterOpen", "updateLiveLast"]),
|
|
|
+ // 手机号码自动登入
|
|
|
+ telphoneLogin() {
|
|
|
+ this.$http({
|
|
|
+ url: "/app/common/telphone_login",
|
|
|
+ method: "post",
|
|
|
+ data: { sign: this.option.skipPort },
|
|
|
+ }).then((res) => {
|
|
|
+ if (res.data.code == 200) {
|
|
|
+ console.log('手机号码自动登入');
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
// 新增微信公众号模板消息点击数据
|
|
|
clickOfficial() {
|
|
|
this.$http({
|