You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.1 KiB
51 lines
1.1 KiB
1 year ago
|
<?php
|
||
|
|
||
|
namespace app\api\controller;
|
||
|
|
||
|
class Temp
|
||
|
{
|
||
|
public function redirectH5() {
|
||
|
$html = '
|
||
|
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en" style="font-size: 62.5%;">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta http-equiv="cache-control" content="no-cache" />
|
||
|
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0" />
|
||
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||
|
<meta content="telephone=yes" name="format-detection" />
|
||
|
<meta content="email=no" name="format-detection" />
|
||
|
<title></title>
|
||
|
<style>
|
||
|
*{
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
.view{
|
||
|
width: 100%;
|
||
|
height: 100vh;
|
||
|
text-align: center;
|
||
|
font-size: 18px;
|
||
|
line-height: 40px;
|
||
|
color: #212121;
|
||
|
}
|
||
|
.view img{
|
||
|
width: 80px;
|
||
|
margin-top: 150px;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="view">
|
||
|
<img src="../../imgs/img.png" />
|
||
|
<p>合同填写完成</p>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>';
|
||
|
|
||
|
echo $html;exit();
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|