Initial commit: MSH System\n\n- msh_single_uniapp: Vue 2 + UniApp 前端(微信小程序/H5/App/支付宝小程序)\n- msh_crmeb_22: Spring Boot 2.2 后端(C端API/管理端/业务逻辑)\n- models-integration: AI服务集成(Coze/KieAI/腾讯ASR)\n- docs: 产品文档与设计稿
This commit is contained in:
58
msh_single_uniapp/static/html/pc.html
Normal file
58
msh_single_uniapp/static/html/pc.html
Normal file
@@ -0,0 +1,58 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang=zh-CN>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1">
|
||||
<title>加载中...</title>
|
||||
<meta name="Copyright" content="helang">
|
||||
<!-- <link rel="shortcut icon" type="image/png" href="/uniapp-extend/static/logo.png"> -->
|
||||
<meta name="keywords" content="加载中...">
|
||||
<meta name="description" content="加载中...">
|
||||
<style type="text/css">
|
||||
body{
|
||||
margin: 0;
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
iframe{
|
||||
width: 375px;
|
||||
height: 667px;
|
||||
background-color: #fff;
|
||||
/* box-sizing: content-box; */
|
||||
box-sizing: border-box;
|
||||
border: none;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 450px) {
|
||||
iframe {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
margin: auto;
|
||||
border: 1px solid #f5f5f5;
|
||||
border-radius: 4px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<script type="text/javascript">
|
||||
window.isPC = true;
|
||||
window.onload = function(){
|
||||
/* 监听电脑浏览器窗口尺寸改变 */
|
||||
if(window.innerWidth <= 420){
|
||||
window.location.pathname = '/';
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<!--若你的项目未设置根目录(默认为 / 时),则使用下方代码-->
|
||||
<iframe src="/" id="iframe"></iframe>
|
||||
<script src="https://pv.sohu.com/cityjson?ie=utf-8"></script>
|
||||
<script type="text/javascript">
|
||||
// var Ip=returnCitySN['cip']
|
||||
// localStorage.setItem('Ip', Ip)
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user