uni-agree.js 282 字节
Newer Older
雪洛's avatar
雪洛 已提交
1 2 3 4 5 6 7 8 9 10 11
export default function(){
	console.log(uni.getSystemInfoSync().platform)
	let userprotocol = uni.getStorageSync('userprotocol');
	console.log('userprotocol',userprotocol);
	if(!userprotocol){
		uni.navigateTo({
			url:'/pages/uni-agree/uni-agree',
			animationType:"none"
		})
	}
}