41 lines
1.2 KiB
PHP
41 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* APP 审核标准文档
|
|
*/
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>APP 审核标准</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div class="container mt-5">
|
|
<h1 class="mb-4">APP 审核标准</h1>
|
|
<section class="mb-5">
|
|
<h2>内容审核</h2>
|
|
<ul>
|
|
<li>无违法、违规内容</li>
|
|
<li>无侵犯知识产权内容</li>
|
|
</ul>
|
|
</section>
|
|
<section class="mb-5">
|
|
<h2>功能审核</h2>
|
|
<ul>
|
|
<li>功能完整,无明显缺陷</li>
|
|
<li>与描述功能一致</li>
|
|
</ul>
|
|
</section>
|
|
<section class="mb-5">
|
|
<h2>性能审核</h2>
|
|
<ul>
|
|
<li>启动速度快</li>
|
|
<li>无明显卡顿</li>
|
|
</ul>
|
|
</section>
|
|
</div>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html>
|