This commit is contained in:
唐明明
2021-09-30 12:17:04 +08:00
parent ac4d252a06
commit 3b1edf89fa
21 changed files with 2142 additions and 1108 deletions

View File

@@ -0,0 +1,42 @@
<template>
<view class="vertical content">
<view class="text">{{text}}</view>
<button class="btn" type="default" :disabled="text != '清理完成'" size="mini" @click="$Router.pushTab({name: 'Index'})">返回首页</button>
</view>
</template>
<script>
export default {
data() {
return {
text: 'Opneid清理中...'
};
},
created() {
uni.removeStorage({
key : 'wxCode',
success : res => {
setTimeout(() => {
this.text = '清理完成'
},1000)
}
})
}
}
</script>
<style lang="scss">
.content{
text-align: center;
height: 100vh;
background: white;
}
.text{
color: gray;
padding-bottom: $padding*2;
}
.btn{
background: $mian-color;
color: white;
}
</style>