Houjie
2025-04-11 1bf977929dd324f3ac64b70debd8a79443c54392
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<template>
    <view>
        <scroll-view :scroll-y="modalName==null" class="page" :class="modalName!=null?'show':''">
            <cu-custom bgColor="bg-gradual-pink" :isBack="false">
                <!-- <block slot="backText">返回</block> -->
                <block slot="content">退出页</block>
            </cu-custom>
            <view class="solids-bottom padding-xs flex align-center">
                <view class="flex-sub text-center">
                    <view class="solid-bottom text-xsl padding">
                        <text class=" cuIcon-roundcheckfill text-green"></text>
                    </view>
                    <view class="padding">{{item.msg}}</view>
                </view>
            </view>
            <view class="padding flex flex-direction">
                <button class="cu-btn bg-green shadow-blur round lg" @tap="goback()">返回登录
                </button>
            </view>
        </scroll-view>
    </view>
 
</template>
 
<script>
    import api from "@/api/api";
    
    export default {
        data() {
            return {
                modalName: null,
                item:{msg:'退出成功'},
            }
        },
        onLoad: function (option) {
            api.logout().then(res=>{
                uni.clearStorageSync()
            })
        },
        methods: {
            goback(){
                uni.navigateTo({
                    url:'/pages/login/login'
                })
            }
        }
    }
</script>
 
<style>
</style>