-
23App.vue
-
38androidPrivacy.json
-
9common/css/app.scss
-
3common/js/mixins.js
-
3manifest.json
-
9pages.json
-
2pages/indexEntry/enroll/signContract/signContract.vue
-
23pages/indexEntry/theory/theory.vue
-
44pages/indexEntry/theory/webView.vue
-
43pages/indexEntry/webView/webView.vue
-
3pages/mineEntry/myOrder/detail/detail.vue
-
2pages/mineEntry/personaInfo/personaInfo.vue
-
4pages/mineEntry/refund/comp/myform.vue
-
6pages/tabbar/index/index.vue
-
11pages/tabbar/learnCar/comp/subject2.vue
-
11pages/tabbar/learnCar/comp/subject3.vue
-
2pages/tabbar/learnCar/comp/topInfo.vue
-
7pages/tabbar/mine/index.vue
-
BINstatic/images/bigImg/h1Active.png
-
BINstatic/images/bigImg/homeBg.png
-
BINstatic/images/bigImg/indexTopBanner.png
-
BINstatic/images/bigImg/loginTopBg.png
-
BINstatic/images/bigImg/topBg.png
-
BINstatic/images/topBg.png
@ -0,0 +1,38 @@ |
|||
{ |
|||
"version" : "1", |
|||
"prompt" : "template", |
|||
"title" : "服务协议和隐私政策", |
|||
"message" : " 请你务必审慎阅读、充分理解“服务协议”和“隐私政策”各条款,包括但不限于:为了更好的向你提供服务,我们需要收集你的设备标识、操作日志等信息用于分析、优化应用性能。<br/> 你可阅读<a href=\"\">《服务协议》</a>和<a href=\"\">《隐私政策》</a>了解详细信息。如果你同意,请点击下面按钮开始接受我们的服务。", |
|||
"buttonAccept" : "同意并接受", |
|||
"buttonRefuse" : "暂不同意", |
|||
"hrefLoader" : "system", |
|||
"backToExit" : "true", |
|||
"second" : { |
|||
"title" : "确认提示", |
|||
"message" : " 进入应用前,你需先同意<a href=\"http://file.jaxc.cn/htmls/user.html\">《服务协议》</a>和<a href=\"http://file.jaxc.cn/htmls/y.html\">《隐私政策》</a>,否则将退出应用。", |
|||
"buttonAccept" : "同意并继续", |
|||
"buttonRefuse" : "退出应用" |
|||
}, |
|||
"disagreeMode" : { |
|||
"support" : false, |
|||
"loadNativePlugins" : false, |
|||
"visitorEntry" : false, |
|||
"showAlways" : false |
|||
}, |
|||
"styles" : { |
|||
"backgroundColor" : "#fff", |
|||
"borderRadius" : "5px", |
|||
"title" : { |
|||
"color" : "#333" |
|||
}, |
|||
"buttonAccept" : { |
|||
"color" : "#333" |
|||
}, |
|||
"buttonRefuse" : { |
|||
"color" : "#cccccc" |
|||
}, |
|||
"buttonVisitor" : { |
|||
"color" : "#333" |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,44 @@ |
|||
<template> |
|||
<view class="pageBg"> |
|||
<web-view :src="link" :webview-styles="webviewStyles" :update-title="false"></web-view> |
|||
</view> |
|||
</template> |
|||
|
|||
<script> |
|||
let wv |
|||
export default { |
|||
data() { |
|||
return { |
|||
webviewStyles: { |
|||
progress: { |
|||
color: '#3877ff' |
|||
}, |
|||
}, |
|||
link: '' |
|||
} |
|||
}, |
|||
onLoad() { |
|||
this.link = this.$store.state.webViewUrl |
|||
console.log('webview地址'+ this.$store.state.webViewUrl) |
|||
}, |
|||
onReady() { |
|||
let statusBar = uni.getWindowInfo().statusBarHeight |
|||
// #ifdef APP-PLUS |
|||
let boxHeight = 0 |
|||
uni.getSystemInfo({ |
|||
success: res => boxHeight = res.windowHeight // 屏幕可用高度 |
|||
}) |
|||
var currentWebview = this.$scope |
|||
.$getAppWebview() //此对象相当于html5plus里的plus.webview.currentWebview()。在uni-app里vue页面直接使用plus.webview.currentWebview()无效 |
|||
setTimeout(function() { |
|||
wv = currentWebview.children()[0] |
|||
wv.setStyle({ |
|||
top: statusBar, |
|||
height: boxHeight - statusBar |
|||
}) |
|||
}, 1000); //如果是页面初始化调用时,需要延时一下 |
|||
// #endif |
|||
} |
|||
} |
|||
</script> |
|||
|
After Width: 54 | Height: 12 | Size: 667 B |
After Width: 750 | Height: 600 | Size: 110 KiB |
After Width: 750 | Height: 492 | Size: 394 KiB |
After Width: 375 | Height: 180 | Size: 36 KiB |
After Width: 750 | Height: 278 | Size: 48 KiB |
After Width: 750 | Height: 278 | Size: 48 KiB |