72 lines
1.7 KiB
Vue
72 lines
1.7 KiB
Vue
<script setup lang="ts">
|
|
// #ifdef APP-PLUS
|
|
import { setSdkLanguageFromSystem } from '@/uni_modules/tuikit-atomic-x/utils/setSdkLanguageFromSystem'
|
|
// #endif
|
|
import { onLaunch, onShow, onHide } from '@dcloudio/uni-app'
|
|
import { reLaunch } from './utils/router'
|
|
import { useAuthUser } from './composables/useAuthUser'
|
|
import { useUserStore } from './stores/user'
|
|
import { TUIChatKit } from './TUIKit'
|
|
import { getIpBlack } from './api'
|
|
|
|
TUIChatKit.init()
|
|
|
|
const { token } = useAuthUser()
|
|
const { loginTencentIM } = useUserStore()
|
|
/** 静默登录逻辑 */
|
|
const silentLogin = async (e: any) => {
|
|
if (token.value) {
|
|
loginTencentIM()
|
|
// reLaunch('/TUIKit/components/TUIConversation/index')
|
|
return
|
|
}
|
|
|
|
console.log(e, '=====222==')
|
|
if (e?.query?.invitationCode) {
|
|
reLaunch('/pages/login/phone-register/phone-register', {
|
|
invitationCode: e.query.invitationCode
|
|
})
|
|
} else {
|
|
// 没有token去登录页
|
|
reLaunch('/pages/login/login')
|
|
}
|
|
}
|
|
|
|
onLaunch((e: any) => {
|
|
console.log('App Launch111')
|
|
silentLogin(e)
|
|
|
|
// #ifdef APP-PLUS
|
|
setSdkLanguageFromSystem()
|
|
// #endif
|
|
})
|
|
|
|
onShow(() => {
|
|
console.log('App Show222')
|
|
})
|
|
|
|
onHide(async () => {
|
|
if (token.value) {
|
|
const show = await getIpBlack(false)
|
|
console.log(show.data.data, '======')
|
|
}
|
|
|
|
console.log('App Hide333')
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
/*每个页面公共css */
|
|
@import './styles/global.scss';
|
|
|
|
/* common css for page */
|
|
// uni-page-body,
|
|
// html,
|
|
// body,
|
|
// page {
|
|
// width: 100% !important;
|
|
// height: 100% !important;
|
|
// overflow: hidden;
|
|
// }
|
|
</style>
|