uni-agree.js 268 字节
Newer Older
1 2 3 4 5 6 7 8 9 10
export default function checkIsAgree(){
	if (uni.getSystemInfoSync().platform == "android") {
		let iKnowAgree = uni.getStorageSync('iKnowAgree') || false;
		if(!iKnowAgree){
			uni.navigateTo({
				url:'/uni_modules/uni-agree/pages/uni-agree/uni-agree'
			})
		}
	}
}