uni-agree.js 280 字节
Newer Older
DCloud_JSON's avatar
DCloud_JSON 已提交
1
export default function(){
2 3 4 5
	if (uni.getSystemInfoSync().platform == "android") {
		let iKnowAgree = uni.getStorageSync('iKnowAgree') || false;
		if(!iKnowAgree){
			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
			})
		}
	}
}