更新js版本

This commit is contained in:
邹景立 2024-03-15 10:59:38 +08:00
parent 33027a8df5
commit 0fd1eecedb
7 changed files with 438 additions and 594 deletions

View File

@ -88,12 +88,16 @@
window.getApp = () => app;
// 绑定 data-route 路由处理
document.addEventListener('click', function (event) {
event.path.some(function (ele) {
if (ele.dataset && ele.dataset.route) {
return router.push(ele.dataset.route);
document.body.addEventListener('click', function (event) {
let target = event.target, attrname = 'data-router';
while (target && !target.hasAttribute(attrname)) {
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

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

View File

@ -171,11 +171,16 @@ body > .el-container {
--el-aside-width: 280px;
.el-tabs {
width: 100%;
height: 100%;
user-select: none;
-ms-user-select: none;
-moz-user-select: none;
.el-tabs__nav {
width: 100%;
}
.el-tabs__header {
width: 58px;
margin: 0 !important;
@ -195,8 +200,6 @@ body > .el-container {
.el-tabs__item {
color: #FFF;
width: 100% !important;
padding: 0 !important;
height: 58px !important;
line-height: 58px !important;
text-align: center !important;