| 1234567891011121314151617181920212223242526272829 |
- <template>
- <button>检查登录状态中……</button>
- </template>
- <script>
- export default {
- onLoad() {
- this.checkLogin()
- },
- methods: {
- async checkLogin() {
- // uni.showToast({
- // title: 'test',
- // mask: false,
- // duration: 1500
- // });
- const res = await this.$post('/api/admin/index/check_login')
- if(!res) return
- if (res.status) uni.redirectTo({
- url: `/module/main/index`
- })
- }
- }
- }
- </script>
- <style>
-
- </style>
|