Merge pull request 'feature/kefu_web' (#29) from feature/kefu_web into master
Reviewed-on: http://8.136.139.249:3000/wmtx/sdk/pulls/29master
commit
504fb1a4f6
@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||
<script src="__JS__/resize.js" type=""></script>
|
||||
<title>隐私指引</title>
|
||||
</head>
|
||||
<style>
|
||||
a {
|
||||
color:#02A7F0;
|
||||
text-decoration:none;
|
||||
}
|
||||
.title{
|
||||
text-align: center;
|
||||
font-size: .38rem;
|
||||
}
|
||||
h2,p{
|
||||
color: #333;
|
||||
font-weight: 400;
|
||||
}
|
||||
p{
|
||||
font-size: .32rem;
|
||||
line-height: 20px;
|
||||
}
|
||||
|
||||
</style>
|
||||
<body style="padding: 0 15px;">
|
||||
|
||||
<div class="page__bd">
|
||||
<article class="weui-article">
|
||||
<h2 class="title">服务协议与隐私政策指引</h2>
|
||||
<section>
|
||||
<p>
|
||||
请您务必仔细阅读并充分理解
|
||||
<foreach name="list" item="vo" >
|
||||
<a class="jump" data-url="{$vo}" href="javascript:">{$key}</a>
|
||||
<if condition="$key eq '《服务协议》' ">
|
||||
和
|
||||
</if>
|
||||
</foreach>
|
||||
来帮助您了解我们在收集、使用、存储和共享您个人信息的情况以及您享有的相关权利。如您同意,请点击“同意并继续”开始接受我们的服务
|
||||
</p>
|
||||
</section>
|
||||
</article>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
<script src="__JS__/jquery.min.js"></script>
|
||||
<script>
|
||||
var type = '{$type}';
|
||||
$(".jump").on("click",function(){
|
||||
var url = $(this).data('url');
|
||||
console.log(url);
|
||||
if (type == 1) {
|
||||
window.txyxsdk.openUrl(url);
|
||||
} else {
|
||||
window.webkit.messageHandlers.openUrl.postMessage(url);
|
||||
}
|
||||
})
|
||||
</script>
|
||||
</html>
|
Loading…
Reference in New Issue