44 lines
728 B
Plaintext
44 lines
728 B
Plaintext
<template>
|
|
<view class="p-all-30">
|
|
<web-view :src="src"></web-view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
// 登陆协议
|
|
export default {
|
|
data() {
|
|
return {
|
|
src: ''
|
|
}
|
|
},
|
|
onShow(e) {
|
|
|
|
},
|
|
onLoad(option) {
|
|
if (option.type == '0') {
|
|
uni.setNavigationBarTitle({
|
|
title: '用户协议'
|
|
})
|
|
this.src = 'http://share.huizukeji.cn/index/index/text?id=321---'
|
|
} else if (option.type == '1') {
|
|
uni.setNavigationBarTitle({
|
|
title: '隐私政策'
|
|
})
|
|
this.src = 'http://share.huizukeji.cn/index/index/text?id=320---'
|
|
}
|
|
|
|
},
|
|
methods: {
|
|
|
|
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
page {
|
|
background-color: white;
|
|
}
|
|
</style>
|