作者 何书鹏
1 个管道 的构建 通过 耗费 1 秒

隐私协议

... ... @@ -16,6 +16,9 @@ class Index extends Frontend
return $this->view->fetch();
}
/**
* 下载APP
*/
public function download()
{
$href = '';
... ... @@ -38,4 +41,14 @@ class Index extends Frontend
return $this->view->fetch();
}
/**
* 用户协议及隐私协议
*/
public function agreement()
{
$content = db('mobile_config')->where('id',1)->value('agreement');
$this->assign('content',$content);
return $this->view->fetch();
}
}
... ...
<html lang="en">
<head>
<meta charset="UTF-8">
<title>隐私保护协议</title>
<style>
.dialog-content{ background-color: #fff; padding:50px 25px; }
.dialog-content h1 {
margin-bottom: 10px;
text-align: center;
font-size: 32px;
}
.dialog-content h2 {
font-size: 18px;
}
.dialog-content h2.dialog-title-small {
text-align: center;
margin-bottom: 20px;
}
.dialog-content h2,
.dialog-content p {
text-indent: 28px;
font-size:14px;
color:#666666;
}
.dialog-content p {
line-height: 1.6em;
margin-bottom: 10px;
}
</style>
</head>
<body>
<!-- 隐私保护协议 begin-->
<div id="ystk_con">
<div class="dialog-content">
{$content}
</div>
</div>
<!-- 隐私保护协议 edn-->
</body>
</html>
\ No newline at end of file
... ...