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