-
+
\ No newline at end of file
diff --git a/src/components/NavBar.vue b/src/components/NavBar.vue
index f060793..0757040 100644
--- a/src/components/NavBar.vue
+++ b/src/components/NavBar.vue
@@ -2,6 +2,7 @@
+
CYBER
@@ -32,7 +33,7 @@
-
{{ store.state.userInfo.username }}
+
{{ store.state.userInfo.username }}
@@ -67,9 +68,11 @@ const toggleMobileMenu = () => {
}
// 判定
-const isMobile = ref(window.innerWidth < 910)
+const windowWidth = ref(window.innerWidth);
+const isMobile = ref(window.innerWidth < 1100)
const handleResize = () => {
- isMobile.value = window.innerWidth < 910
+ windowWidth.value = window.innerWidth;
+ isMobile.value = window.innerWidth < 1100
if (!isMobile.value) {
showMobileMenu.value = false // 桌面端时关闭移动菜单
}
@@ -126,6 +129,7 @@ const toggleTheme = () => {
.theme-dark .hamburger-icon,
.theme-dark .hamburger-icon::before,
+.theme-dark .hamburger-icon::before,
.theme-dark .hamburger-icon::after {
background: #0ff;
}
@@ -194,9 +198,12 @@ const toggleTheme = () => {
}
.nav-center {
- flex: 1;
+ white-space: nowrap;
display: flex;
justify-content: center;
+ position: absolute;
+ left: 50%;
+ transform: translateX(-50%);
}
.nav-items {
diff --git a/src/components/PagingController.vue b/src/components/PagingController.vue
new file mode 100644
index 0000000..a7f6424
--- /dev/null
+++ b/src/components/PagingController.vue
@@ -0,0 +1,169 @@
+正在加载...
-
@@ -194,10 +186,10 @@ onBeforeUnmount(() => {
display: flex;
flex-direction: column;
gap: 20px;
- width: 90%;
+ width: calc(80%);
height: auto;
padding: 20px;
- margin-bottom: 150px;
+ margin: 0 auto 150px;
border-radius: 15px;
background: rgba(128, 128, 128, 0.06);
border: cyan solid 1px;
diff --git a/src/router/index.js b/src/router/index.js
index 602726b..fb653b4 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -11,13 +11,14 @@ import Account_setting from "../pages/accountPages/Account_setting.vue";
import Account_draft from "../pages/accountPages/Account_draft.vue";
import Account_userInfo from "../pages/accountPages/Account_userInfo.vue";
import Account_admin_uploadLog from "../pages/accountPages/Account_admin_uploadLog.vue";
+import Account_admin_userManage from "../pages/accountPages/Account_admin_userManage.vue";
import Projects from "../pages/Projects_home.vue";
import Demos_home from "../pages/Demos_home.vue";
import Board_page from "../pages/demoPages/messageBoard/Board_page.vue";
import Tools_home from "../pages/Tools_home.vue";
import GpaCalculator_page from "../pages/toolPages/gpaCalculator/gpaCalculator_page.vue";
import About from "../pages/About.vue";
-import Test from "../pages/Editor.vue";
+import Editor from "../pages/Editor.vue";
const routes = [
{
@@ -65,12 +66,13 @@ const routes = [
{path: 'draft', component: Account_draft},
{path: 'setting', component: Account_setting},
{path: '', component: Account_userInfo},
- {path: 'upload-log', component: Account_admin_uploadLog}
+ {path: 'upload-log', component: Account_admin_uploadLog},
+ {path: 'user-management', component: Account_admin_userManage}
]
}, {
- path: '/test_page',
- name: 'Test',
- component: Test
+ path: '/editor',
+ name: 'Editor',
+ component: Editor
},
];
diff --git a/src/store/index.js b/src/store/index.js
index 5023b2b..df81829 100644
--- a/src/store/index.js
+++ b/src/store/index.js
@@ -78,6 +78,7 @@ const store = createStore({
}
},
isAdmin: state => state.userInfo.role_id >= 2,
+ isSuperAdmin: state => state.userInfo.role_id >= 3,
},
plugins: [
createPersistedStatePlugin({
diff --git a/src/style.css b/src/style.css
index 1b4fd9b..82852cd 100644
--- a/src/style.css
+++ b/src/style.css
@@ -30,8 +30,7 @@ a:hover {
/* 通用容器 */
.container {
- width: 90%;
- max-width: 1200px;
+ width: 100%;
margin: 0 auto;
}