2 Star 0 Fork 0

杨志宇/kgc-easybuy01-web

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
admin.html 4.96 KB
一键复制 编辑 原始数据 按行查看 历史
杨志宇 提交于 2019-10-14 09:01 . 杨志宇功能完结(1)
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link type="text/css" rel="stylesheet" href="css/style.css" />
<!--[if IE 6]>
<script src="js/iepng.js" type="text/javascript"></script>
<script type="text/javascript">
EvPNG.fix('div, ul, img, li, input, a');
</script>
<![endif]-->
<script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="js/menu.js"></script>
<script type="text/javascript" src="js/select.js"></script>
<title>MenberList</title>
</head>
<body>
<div class="head1">
</div>
<div class="i_bg bg_color">
<!--Begin 用户中心 Begin -->
<div class="m_content">
<!--左边分类列表-->
<div class="m_left">
</div>
<div class="m_right">
<div class="m_des">
<table border="0" style="width:870px; line-height:22px;" cellspacing="0" cellpadding="0">
<tr valign="top">
<td width="115"><img src="images/user.jpg" width="90" height="90" /></td>
<td>
<div class="m_user">zxzxTRACY</div>
<p>
等级:注册用户 <br />
<font color="#ff4e00">您还差 270 积分达到 分红100</font><br />
上一次登录时间: 2015-09-28 18:19:47<br />
您还没有通过邮件认证 <a href="#" style="color:#ff4e00;">点此发送认证邮件</a>
</p>
<div class="m_notice">
用户中心公告!
</div>
</td>
</tr>
</table>
</div>
<div class="mem_t">账号信息</div>
<table border="0" class="acc_tab" style="width:870px;" cellspacing="0" cellpadding="0">
<tr>
<td class="td_l">姓名: </td>
<td>12345678</td>
</tr>
<tr>
<td class="td_2 b_none">身份证号:</td>
<td>522124***********8</td>
</tr>
<tr>
<td class="td_3 b_none">电 话:</td>
<td>186****1234</td>
</tr>
<tr>
<td class="td_4">邮 箱: </td>
<td>*******789@qq.com</td>
</tr>
</table>
</div>
</div>
<!--End 用户中心 End-->
<div class="foot2">
</div>
<div class="foot1">
</div>
</div>
</body>
<script type="text/javascript" src="js/interceptor.js"></script>
<script type="text/javascript">
jQuery.noConflict();
jQuery(function () {
interceptorUser();
addhead1();
addfoot1();
addfoot2();
m_left();
getAdminUser();
});
//获得包含的页面head1
function addhead1(){
jQuery.ajax({
url:"/head1.html",
dataType:"html",
success:function (head1) {
jQuery(".head1").html(head1);
},
error:function () {
alert("回调失败!")
}
});
}
//获得左边分类管理列表
function m_left(){
jQuery.ajax({
url:"/m_left.html",
dataType:"html",
success:function (m_left) {
jQuery(".m_left").html(m_left);
},
error:function () {
alert("回调失败!")
}
});
}
//获得包含页面foot1
function addfoot1(){
jQuery.ajax({
url:"/foot1.html",
dataType:"html",
success:function (foot1) {
jQuery(".foot1").html(foot1);
},
error:function () {
alert("回调失败!")
}
});
}
//获得包含页面foot2
function addfoot2(){
jQuery.ajax({
url:"/foot2.html",
dataType:"html",
success:function (foot2) {
jQuery(".foot2").html(foot2);
},
error:function () {
alert("回调失败!")
}
});
}
//拿到管理员首页信息
function getAdminUser(){
jQuery.ajax({
url:"/kgc-easybuy01/getAdminUser",
success:function (user) {
jQuery(".m_user").text(user.loginName);
jQuery(".td_l").next().text(user.userName);
jQuery(".td_2").next().text(user.identityCode);
jQuery(".td_3").next().text(user.mobile);
jQuery(".td_4").next().text(user.email);
},
error:function () {
alert("回调失败!")
}
});
}
</script>
<html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/yzy2218751441/kgc-easybuy01-web.git
git@gitee.com:yzy2218751441/kgc-easybuy01-web.git
yzy2218751441
kgc-easybuy01-web
kgc-easybuy01-web
master

搜索帮助