78 lines
1.8 KiB
HTML
78 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
{block name="title"}<title>{$title | default='YwxApp'}</title>{/block}
|
|
<meta name="renderer" content="webkit">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
<link href="/assets/layui/css/layui.css" rel="stylesheet">
|
|
<link href="/assets/ywxapp/css/wxapp.css" rel="stylesheet">
|
|
<style>
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
body {
|
|
padding-bottom: 64px;
|
|
}
|
|
|
|
.layui-card {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.layui-card-body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
}
|
|
|
|
.layui-table-view {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
}
|
|
|
|
.layui-table-box {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
}
|
|
|
|
.layui-table-body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
}
|
|
</style>
|
|
<script src="/assets/layui/layui.js"></script>
|
|
<script type="text/javascript">
|
|
// 全局路径配置:仅注入部署参数,路由方法来自 layui 的 route 模块。
|
|
// app 为 ThinkPHP 真实应用目录名(backend/member/frontend/home),对应 public/static/<app> 目录。
|
|
layui.app= window.APP = {
|
|
root: "{$site.root|default=''}",
|
|
assetUrl: "/assets",
|
|
module: "{$site.module}",
|
|
realModule: "{$site.app}",
|
|
routeBase: "{$route_base}",
|
|
controller: "{$site.controller}",
|
|
action: "{$site.action}"
|
|
};
|
|
</script>
|
|
<script src="/assets/ywxapp/ywxapp.js" module="{$site.app}"></script>
|
|
</head>
|
|
|
|
<body>
|
|
{block name="body"}{/block}
|
|
|
|
{block name="script"}{/block}
|
|
</body>
|
|
|
|
</html>
|