82 lines
1.9 KiB
HTML
82 lines
1.9 KiB
HTML
<!--
|
|
* @Author: YwxApp <ywx@ywxapp.cn>
|
|
* @Date: 2026-08-06 22:05:38
|
|
* @LastEditors: YwxApp <ywx@ywxapp.cn>
|
|
* @LastEditTime: 2026-08-07 09:12:10
|
|
* @Description:
|
|
* @FilePath: \ywxapp_dev\app\backend\view\common\layout.html
|
|
* @CustomString: Copyright (c) 2026 YwxApp
|
|
-->
|
|
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>{$title | default='YwxApp'}</title>
|
|
<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/ywxapp.css" rel="stylesheet" />
|
|
<style>
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.layui-fluid {
|
|
margin: 5px;
|
|
}
|
|
|
|
.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.app = {
|
|
root: "{$site.root|default=''}",
|
|
assetUrl: "/assets",
|
|
module: "{$site.module}",
|
|
app: "{$site.app}",
|
|
routeBase: "{$route_base}",
|
|
controller: "{$site.controller}",
|
|
action: "{$site.action}"
|
|
};
|
|
</script>
|
|
<script src="/assets/ywxapp/ywxapp.js" module="{$site.app}"></script>
|
|
</head>
|
|
|
|
<body>
|
|
{__CONTENT__}
|
|
</body>
|
|
</html>
|