topBar component
parent
67a8790b95
commit
1bff3bbc09
|
|
@ -178,6 +178,14 @@
|
||||||
"type": 1,
|
"type": 1,
|
||||||
"openType": "_iframe",
|
"openType": "_iframe",
|
||||||
"href": "view/document/count.html"
|
"href": "view/document/count.html"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 2045,
|
||||||
|
"title": "顶部返回",
|
||||||
|
"icon": "layui-icon layui-icon-face-cry",
|
||||||
|
"type": 1,
|
||||||
|
"openType": "_iframe",
|
||||||
|
"href": "view/document/topBar.html"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}]
|
}]
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
.layui-fixbar li{
|
||||||
|
border-radius: 4px;
|
||||||
|
background-color: #5FB878;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
@ -2,9 +2,11 @@
|
||||||
|
|
||||||
|
|
||||||
@import url("pear-module/dtree/font/dtreefont.css");
|
@import url("pear-module/dtree/font/dtreefont.css");
|
||||||
|
@import url("pear-module/icon/iconfont.css");
|
||||||
|
@import url("pear-module/dtree/dtree.css");
|
||||||
@import url("pear-module/iconPicker.css");
|
@import url("pear-module/iconPicker.css");
|
||||||
@import url("pear-module/treetable.css");
|
@import url("pear-module/treetable.css");
|
||||||
@import url("pear-module/icon/iconfont.css");
|
@import url("pear-module/topBar.css");
|
||||||
@import url("pear-module/select.css");
|
@import url("pear-module/select.css");
|
||||||
@import url("pear-module/layout.css");
|
@import url("pear-module/layout.css");
|
||||||
@import url("pear-module/notice.css");
|
@import url("pear-module/notice.css");
|
||||||
|
|
@ -20,4 +22,3 @@
|
||||||
@import url("pear-module/step.css");
|
@import url("pear-module/step.css");
|
||||||
@import url("pear-module/tab.css");
|
@import url("pear-module/tab.css");
|
||||||
@import url("pear-module/tag.css");
|
@import url("pear-module/tag.css");
|
||||||
@import url("pear-module/dtree/dtree.css");
|
|
||||||
|
|
|
||||||
|
|
@ -66,7 +66,6 @@ layui.define(['table', 'jquery', 'element', 'form', 'tab', 'menu', 'frame'],
|
||||||
}]
|
}]
|
||||||
});
|
});
|
||||||
bodyTab.click(function(id) {
|
bodyTab.click(function(id) {
|
||||||
// 选 项 卡 切 换 刷 新
|
|
||||||
if(!param.tab.keepState){
|
if(!param.tab.keepState){
|
||||||
bodyTab.refresh(false);
|
bodyTab.refresh(false);
|
||||||
}
|
}
|
||||||
|
|
@ -163,9 +162,7 @@ layui.define(['table', 'jquery', 'element', 'form', 'tab', 'menu', 'frame'],
|
||||||
}
|
}
|
||||||
|
|
||||||
this.colorSet = function(color) {
|
this.colorSet = function(color) {
|
||||||
|
|
||||||
var style = '';
|
var style = '';
|
||||||
|
|
||||||
// 自 定 义 菜 单 配 色
|
// 自 定 义 菜 单 配 色
|
||||||
style +=
|
style +=
|
||||||
'.light-theme .pear-nav-tree .layui-this a:hover,.light-theme .pear-nav-tree .layui-this,.light-theme .pear-nav-tree .layui-this a,.pear-nav-tree .layui-this a,.pear-nav-tree .layui-this{background-color: ' +
|
'.light-theme .pear-nav-tree .layui-this a:hover,.light-theme .pear-nav-tree .layui-this,.light-theme .pear-nav-tree .layui-this a,.pear-nav-tree .layui-this a,.pear-nav-tree .layui-this{background-color: ' +
|
||||||
|
|
|
||||||
|
|
@ -17,38 +17,23 @@ layui.define(['jquery', 'element', 'util'], function(exports) {
|
||||||
time: opt.time ? opt.time : false,
|
time: opt.time ? opt.time : false,
|
||||||
done: opt.done ? opt.done : function(){}
|
done: opt.done ? opt.done : function(){}
|
||||||
}
|
}
|
||||||
|
|
||||||
var load = $(option.elem).text();
|
var load = $(option.elem).text();
|
||||||
|
|
||||||
$(option.elem).html("<i class='layui-anim layui-anim-rotate layui-icon layui-anim-loop layui-icon-loading'/>");
|
$(option.elem).html("<i class='layui-anim layui-anim-rotate layui-icon layui-anim-loop layui-icon-loading'/>");
|
||||||
|
|
||||||
var buttons = $(option.elem);
|
var buttons = $(option.elem);
|
||||||
|
|
||||||
if (option.time == "") {
|
if (option.time == "") {
|
||||||
|
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
|
|
||||||
buttons.html(load);
|
buttons.html(load);
|
||||||
|
|
||||||
option.done();
|
option.done();
|
||||||
|
|
||||||
}, option.time);
|
}, option.time);
|
||||||
}
|
}
|
||||||
|
|
||||||
option.text = load;
|
option.text = load;
|
||||||
|
|
||||||
return new button(option);
|
return new button(option);
|
||||||
}
|
}
|
||||||
|
|
||||||
button.prototype.stop = function(success) {
|
button.prototype.stop = function(success) {
|
||||||
|
|
||||||
$(this.option.elem).html(this.option.text);
|
$(this.option.elem).html(this.option.text);
|
||||||
|
|
||||||
success();
|
success();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
exports(MOD_NAME, new button());
|
exports(MOD_NAME, new button());
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,280 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>首页三</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 rel="stylesheet" href="../../component/pear/css/pear.css" />
|
||||||
|
<link rel="stylesheet" href="../../assets/console1.css" />
|
||||||
|
</head>
|
||||||
|
<body class="pear-container">
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<div class="layui-row layui-col-space10">
|
||||||
|
|
||||||
|
<div class="layui-card">
|
||||||
|
<div class="layui-card-header">动态</div>
|
||||||
|
<div class="layui-card-body">
|
||||||
|
<dl class="layuiadmin-card-status">
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>七彩枫叶 在 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin 专区</a> 回答问题</p>
|
||||||
|
<span>几秒前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>简 在 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin 专区</a> 进行了 <a lay-href="http://fly.layui.com/vipclub/list/layuiadmin/column/quiz/">提问</a></p>
|
||||||
|
<span>2天前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>恒宇少年 将 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin </a> 更新至 2.3.0 版本</p>
|
||||||
|
<span>7天前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>如花 在 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin 社区</a> 发布了 <a lay-href="http://fly.layui.com/column/suggest/">建议</a></p>
|
||||||
|
<span>7天前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>就眠仪式 在 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin 社区</a> 发布了 <a lay-href="http://fly.layui.com/column/suggest/">建议</a></p>
|
||||||
|
<span>8天前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>贤心 在 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin 专区</a> 进行了 <a lay-href="http://fly.layui.com/vipclub/list/layuiadmin/column/quiz/">提问</a></p>
|
||||||
|
<span>8天前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>七彩枫叶 在 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin 专区</a> 回答问题</p>
|
||||||
|
<span>几秒前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>简 在 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin 专区</a> 进行了 <a lay-href="http://fly.layui.com/vipclub/list/layuiadmin/column/quiz/">提问</a></p>
|
||||||
|
<span>2天前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>恒宇少年 将 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin </a> 更新至 2.3.0 版本</p>
|
||||||
|
<span>7天前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>如花 在 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin 社区</a> 发布了 <a lay-href="http://fly.layui.com/column/suggest/">建议</a></p>
|
||||||
|
<span>7天前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>就眠仪式 在 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin 社区</a> 发布了 <a lay-href="http://fly.layui.com/column/suggest/">建议</a></p>
|
||||||
|
<span>8天前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>贤心 在 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin 专区</a> 进行了 <a lay-href="http://fly.layui.com/vipclub/list/layuiadmin/column/quiz/">提问</a></p>
|
||||||
|
<span>8天前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>七彩枫叶 在 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin 专区</a> 回答问题</p>
|
||||||
|
<span>几秒前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>简 在 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin 专区</a> 进行了 <a lay-href="http://fly.layui.com/vipclub/list/layuiadmin/column/quiz/">提问</a></p>
|
||||||
|
<span>2天前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>恒宇少年 将 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin </a> 更新至 2.3.0 版本</p>
|
||||||
|
<span>7天前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>如花 在 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin 社区</a> 发布了 <a lay-href="http://fly.layui.com/column/suggest/">建议</a></p>
|
||||||
|
<span>7天前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>就眠仪式 在 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin 社区</a> 发布了 <a lay-href="http://fly.layui.com/column/suggest/">建议</a></p>
|
||||||
|
<span>8天前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>贤心 在 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin 专区</a> 进行了 <a lay-href="http://fly.layui.com/vipclub/list/layuiadmin/column/quiz/">提问</a></p>
|
||||||
|
<span>8天前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>七彩枫叶 在 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin 专区</a> 回答问题</p>
|
||||||
|
<span>几秒前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>简 在 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin 专区</a> 进行了 <a lay-href="http://fly.layui.com/vipclub/list/layuiadmin/column/quiz/">提问</a></p>
|
||||||
|
<span>2天前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>恒宇少年 将 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin </a> 更新至 2.3.0 版本</p>
|
||||||
|
<span>7天前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>如花 在 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin 社区</a> 发布了 <a lay-href="http://fly.layui.com/column/suggest/">建议</a></p>
|
||||||
|
<span>7天前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>就眠仪式 在 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin 社区</a> 发布了 <a lay-href="http://fly.layui.com/column/suggest/">建议</a></p>
|
||||||
|
<span>8天前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>次等水货 在 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin 专区</a> 进行了 <a lay-href="http://fly.layui.com/vipclub/list/layuiadmin/column/quiz/">提问</a></p>
|
||||||
|
<span>8天前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>七彩枫叶 在 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin 专区</a> 回答问题</p>
|
||||||
|
<span>几秒前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>简 在 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin 专区</a> 进行了 <a lay-href="http://fly.layui.com/vipclub/list/layuiadmin/column/quiz/">提问</a></p>
|
||||||
|
<span>2天前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>恒宇少年 将 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin </a> 更新至 2.3.0 版本</p>
|
||||||
|
<span>7天前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>如花 在 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin 社区</a> 发布了 <a lay-href="http://fly.layui.com/column/suggest/">建议</a></p>
|
||||||
|
<span>7天前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>就眠仪式 在 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin 社区</a> 发布了 <a lay-href="http://fly.layui.com/column/suggest/">建议</a></p>
|
||||||
|
<span>8天前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
<dd>
|
||||||
|
<div class="layui-status-img"><a href="javascript:;"><img style="width: 32px;height: 32px;border-radius: 50px;"
|
||||||
|
src="../../admin/images/avatar.jpg"></a></div>
|
||||||
|
<div>
|
||||||
|
<p>微笑刺客 在 <a lay-href="https://gitee.com/Jmysy/Pear-Admin-Layui">Pear Admin 专区</a> 进行了 <a lay-href="http://fly.layui.com/vipclub/list/layuiadmin/column/quiz/">提问</a></p>
|
||||||
|
<span>8天前</span>
|
||||||
|
</div>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--</div>-->
|
||||||
|
<script src="../../component/layui/layui.js"></script>
|
||||||
|
<script src="../../component/pear/pear.js"></script>
|
||||||
|
<script>
|
||||||
|
layui.use(['layer', 'element','topBar'], function() {
|
||||||
|
var $ = layui.jquery,
|
||||||
|
layer = layui.layer,
|
||||||
|
element = layui.element;
|
||||||
|
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Loading…
Reference in New Issue