You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
686 B

1 year ago
<template>
1 year ago
<view class="content">
11 months ago
1 year ago
</view>
1 year ago
</template>
<script>
1 year ago
export default {
data() {
return {
11 months ago
src: '',
isFlag: true
1 year ago
}
},
11 months ago
onHide() {
uni.setStorageSync('isFlag', false)
},
1 year ago
onShow() {
11 months ago
this.gotoPath()
1 year ago
},
methods: {
11 months ago
gotoPath() {
this.isFlag = uni.getStorageSync('isFlag')
if(this.isFlag) {
uni.navigateTo({
url: "plugin://myPlugin/index"
})
}else {
uni.switchTab({
url: '/pages/index/index'
})
}
}
1 year ago
}
}
1 year ago
</script>
1 year ago
<style lang="scss" scoped>
.content {
width: 100vw;
height: 100vh;
12 months ago
padding-bottom: env(safe-area-inset-bottom);
padding-top: 100rpx;
text-align: center;
1 year ago
}
1 year ago
</style>