|
@@ -29,7 +29,7 @@
|
|
</div>
|
|
</div>
|
|
<image src="../../assets/imgs/sign_show.png" class="sign-icon" @click="changeSignPop"> </image>
|
|
<image src="../../assets/imgs/sign_show.png" class="sign-icon" @click="changeSignPop"> </image>
|
|
<sign-page if="{{showSignPop}}"></sign-page>
|
|
<sign-page if="{{showSignPop}}"></sign-page>
|
|
- <short-page if="{{showShortPop}}"></short-page>
|
|
|
|
|
|
+ <short-page if="{{showShortPop}}" @addshort="shortEnd"></short-page>
|
|
<div class="stack-popup" @click="closeWrap" if="showPopup">
|
|
<div class="stack-popup" @click="closeWrap" if="showPopup">
|
|
<div class="customer-popup">
|
|
<div class="customer-popup">
|
|
<text class="title">联系客服</text>
|
|
<text class="title">联系客服</text>
|
|
@@ -102,11 +102,14 @@ export default {
|
|
this.showShortPop = !value;
|
|
this.showShortPop = !value;
|
|
})
|
|
})
|
|
},
|
|
},
|
|
|
|
+ shortEnd(value) {
|
|
|
|
+ this.showShortPop = !value.detail.installed;
|
|
|
|
+ },
|
|
onBackPress() {
|
|
onBackPress() {
|
|
// 退出逻辑
|
|
// 退出逻辑
|
|
if (this.$app.$def.data.backClickCount === 0) {
|
|
if (this.$app.$def.data.backClickCount === 0) {
|
|
this.$app.$def.data.backClickCount++;
|
|
this.$app.$def.data.backClickCount++;
|
|
- this.$app.$def.createShortcut()
|
|
|
|
|
|
+ this.$app.$def.createShortcut();
|
|
return true;
|
|
return true;
|
|
}
|
|
}
|
|
},
|
|
},
|