mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
更新js版本
This commit is contained in:
parent
33027a8df5
commit
0fd1eecedb
@ -88,12 +88,16 @@
|
|||||||
window.getApp = () => app;
|
window.getApp = () => app;
|
||||||
|
|
||||||
// 绑定 data-route 路由处理
|
// 绑定 data-route 路由处理
|
||||||
document.addEventListener('click', function (event) {
|
document.body.addEventListener('click', function (event) {
|
||||||
event.path.some(function (ele) {
|
let target = event.target, attrname = 'data-router';
|
||||||
if (ele.dataset && ele.dataset.route) {
|
while (target && !target.hasAttribute(attrname)) {
|
||||||
return router.push(ele.dataset.route);
|
target = target.parentElement;
|
||||||
}
|
if (target && target.hasAttribute(attrname)) break;
|
||||||
});
|
}
|
||||||
|
if (target && target.hasAttribute(attrname)) {
|
||||||
|
event.stopPropagation();
|
||||||
|
router.push(target.dataset.route);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// 应用组件及路由
|
// 应用组件及路由
|
||||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
12
static/plugs/core/vue.min.js
vendored
12
static/plugs/core/vue.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -171,11 +171,16 @@ body > .el-container {
|
|||||||
--el-aside-width: 280px;
|
--el-aside-width: 280px;
|
||||||
|
|
||||||
.el-tabs {
|
.el-tabs {
|
||||||
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
-ms-user-select: none;
|
-ms-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
|
|
||||||
|
.el-tabs__nav {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
.el-tabs__header {
|
.el-tabs__header {
|
||||||
width: 58px;
|
width: 58px;
|
||||||
margin: 0 !important;
|
margin: 0 !important;
|
||||||
@ -195,8 +200,6 @@ body > .el-container {
|
|||||||
|
|
||||||
.el-tabs__item {
|
.el-tabs__item {
|
||||||
color: #FFF;
|
color: #FFF;
|
||||||
width: 100% !important;
|
|
||||||
padding: 0 !important;
|
|
||||||
height: 58px !important;
|
height: 58px !important;
|
||||||
line-height: 58px !important;
|
line-height: 58px !important;
|
||||||
text-align: center !important;
|
text-align: center !important;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user