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.
45 lines
1.6 KiB
45 lines
1.6 KiB
<!DOCTYPE html>
|
|
<html lang="zh-cn">
|
|
|
|
<head >
|
|
<meta charset="utf-8">
|
|
<!--#include file="/widget/head.html"-->
|
|
<script type="text/javascript" src="../js/utils.js?v=1.0"></script>
|
|
<script type="text/javascript" src="../js/notice/xm-select.js"></script>
|
|
<style>
|
|
.layui-form-label {
|
|
padding: 0 15px 10px 9px;
|
|
margin-bottom: 0px;
|
|
}
|
|
.layui-form-item{
|
|
margin-bottom: 0px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="layui-layout-body" layadmin-themealias="default">
|
|
<div id="wrapper">
|
|
<!-- Navigation -->
|
|
<!--#include file="/widget/nav.html"-->
|
|
<div id="page-wrapper" class="layui-body layadmin-tabsbody-item layui-show layui-fluid layui-row layui-col-space15">
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<h2 class="page-header">玩家信息</h2>
|
|
</div>
|
|
</div>
|
|
<iframe src="../dist/index.html#/userTable" width="1850px" height="770px" scrolling="yes" noresize="noresize" frameborder="0" id="activityTable"></iframe>
|
|
<!--#include file="/widget/tail.html"-->
|
|
<script>
|
|
$(document).ready(function(){
|
|
localStorage.setItem('os-token', cookie.get("token"))
|
|
});
|
|
$(window).load(function () {
|
|
var c = document.getElementById("userTable");
|
|
c.parentNode.setAttribute("class", "gray");
|
|
c.parentNode.parentNode.parentNode.setAttribute("class", "active");
|
|
c.parentNode.parentNode.setAttribute("class", "nav nav-second-level collapse in");
|
|
var b = c.parentNode.parentNode.parentNode.children[0].children[1];
|
|
})
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|
|
|