| | |
| | | stagingHead,
|
| | | wxAuthorize,
|
| | | refreshToken,
|
| | | app_url
|
| | | app_url, |
| | | delHkUserOpenid
|
| | | } from '@/api'
|
| | | export default {
|
| | | data() {
|
| | |
| | | loginOut() {
|
| | | logoutPost({
|
| | | isH5: 1
|
| | | }).then(res => {
|
| | | this.$store.commit('empty')
|
| | | setTimeout(() => {
|
| | | window.location.href = app_url
|
| | | }, 300)
|
| | | }).then(res => { |
| | | const userInfo = uni.getStorageSync('userInfo') |
| | | const openId = uni.getStorageSync('openId') |
| | | this.$store.commit('empty') |
| | | if(openId){ |
| | | delHkUserOpenid({ |
| | | userName: userInfo.username, |
| | | openId |
| | | }).then(ress => { |
| | | setTimeout(() => { |
| | | window.location.href = app_url |
| | | }, 300) |
| | | }) |
| | | }else{ |
| | | setTimeout(() => { |
| | | window.location.href = app_url |
| | | }, 300) |
| | | } |
| | | |
| | | })
|
| | | },
|
| | | getTaskInfo() {
|