Files
peko-h5/view/peko/modules/rule-yinyou/environment.html
2023-08-07 16:04:25 +08:00

56 lines
1.5 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8" />
<meta name="viewport"
content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" type="text/css" href="../../common/css/reset.css"/>
<link rel="stylesheet" href="style/_common.css" />
<title>账号申诉</title>
<style>
body{
display: none;
}
</style>
</head>
<body>
<h1 class="title">
账号申诉
<!-- <a href="guide.html">
<img src="images/close.png"/>
</a> -->
</h1>
<ol class="desc">
<li>
1、如何账号申诉
<p>&nbsp;&nbsp;发送以下信息至QQ群</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;① 您的<span class="appname"></span></p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;② 您的联系方式:手机号/QQ号</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;③ 申诉原因</p>
<p>&nbsp;&nbsp;完整提交以上信息后,我们将在一个工作日内为您解决。</p>
</li>
</ol>
<script src="../../common/js/jquery-3.2.1.min.js"></script>
<script src="../../common/js/common2.js"></script>
<script>
$('.appname').html('piko')
getInfoFromClient()
let browser = checkVersion()
if (browser.app) {
if (browser.android) {
let channel = JSON.parse(pubInfo.deviceInfo).channel
if (channel.indexOf('toutiao') != -1 || channel.indexOf('kuaishou') != -1) {
$('.appname').html('piko')
}
}
}
setTimeout(() => {
$('body').show()
}, 0);
</script>
</body>
</html>