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