loginSuccess.js 803 字节
Newer Older
DCloud_JSON's avatar
DCloud_JSON 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
export default function(e = {}) {
	const {
		showToast = true, toastText = '登录成功', autoBack = true
	} = e
	console.log({
		toastText,
		autoBack
	});
	if (showToast) {
		uni.showToast({
			title: toastText,
			icon: 'none'
		});
	}
	if (autoBack) {
		let delta = 0; //判断需要返回几层
DCloud_JSON's avatar
DCloud_JSON 已提交
17 18
		let pages = getCurrentPages();
		uni.$emit('uni-id-pages-login-success',pages)
19
		console.log(pages);
DCloud_JSON's avatar
DCloud_JSON 已提交
20 21 22 23
		pages.forEach((page, index) => {
			if (pages[pages.length - index - 1].route.split('/')[3] == 'login') {
				delta++
			}
DCloud_JSON's avatar
DCloud_JSON 已提交
24 25 26 27 28 29 30 31 32 33 34
		})
		console.log('判断需要返回几层:',pages, delta);
		// #ifdef H5
		if(e.loginType == 'weixin'){
			console.log('window.history',window.history);
			return window.history.go(-3)
		}
		// #endif
		
		uni.navigateBack({
			delta
DCloud_JSON's avatar
DCloud_JSON 已提交
35 36
		})
	}
DCloud_JSON's avatar
DCloud_JSON 已提交
37
}