103 lines
2.6 KiB
HTML
103 lines
2.6 KiB
HTML
<!--
|
|
* @Author: YwxApp <ywx@ywxapp.cn>
|
|
* @Date: 2026-04-29 02:32:33
|
|
* @LastEditors: YwxApp <ywx@ywxapp.cn>
|
|
* @LastEditTime: 2026-08-06 23:31:51
|
|
* @Description:
|
|
* @FilePath: \ywxapp_dev\app\member\view\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="/static/member/css/common.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.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__}
|
|
|
|
<script>
|
|
layui.use(["element", "http", "route"], function () {
|
|
var element = layui.element;
|
|
var http = layui.http;
|
|
var $ = layui.$;
|
|
$("#logout").on("click", function () {
|
|
http.post("{:url('user/Login/logout')}").then(function (res) {
|
|
if (res.code == 0) {
|
|
var appName = (layui.setter && layui.setter.appName) || (layui.app && wlayui.app.module) || "user";
|
|
layui.data(appName, { key: "access_token", remove: true });
|
|
layui.data(appName, { key: "refresh_token", remove: true });
|
|
layui.data(appName, { key: "menus", remove: true });
|
|
location.href = "/";
|
|
} else {
|
|
layer.msg(res.msg || "退出登录失败");
|
|
}
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
|
|
</html> |