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