diff --git a/src/components/GeneralEditor.vue b/src/components/GeneralEditor.vue deleted file mode 100644 index e81d8cc..0000000 --- a/src/components/GeneralEditor.vue +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - diff --git a/src/components/GeneralRenderer.vue b/src/components/GeneralRenderer.vue new file mode 100644 index 0000000..afa5f11 --- /dev/null +++ b/src/components/GeneralRenderer.vue @@ -0,0 +1,87 @@ + + + + + + \ No newline at end of file diff --git a/src/components/NavBar.vue b/src/components/NavBar.vue index 7a44025..f060793 100644 --- a/src/components/NavBar.vue +++ b/src/components/NavBar.vue @@ -319,17 +319,21 @@ const toggleTheme = () => { /* 移动端下拉菜单 */ .mobile-nav-items { + display: flex; + flex-direction: column; position: absolute; backdrop-filter: blur(10px); top: 45px; + word-break: keep-all; list-style: none; padding: 1rem; margin: 0; border-radius: 4px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); - text-align: center; } .mobile-nav-items li { + display: flex; + justify-content: center; margin: 0.5rem; padding: 5px; border-radius: 4px; diff --git a/src/pages/accountPages/Account_admin_uploadLog.vue b/src/pages/accountPages/Account_admin_uploadLog.vue index 956af06..f4bdddd 100644 --- a/src/pages/accountPages/Account_admin_uploadLog.vue +++ b/src/pages/accountPages/Account_admin_uploadLog.vue @@ -23,16 +23,7 @@ const funcButtons = ref([ {name: 'url', func: '[[cur]](https://example.com)'}, {name: 'img', func: ''}, ]) -function getFormattedTime() { - const now = new Date(); - const year = now.getFullYear(); - const month = String(now.getMonth() + 1).padStart(2, '0'); // 月份从0开始,需要加1 - const day = String(now.getDate()).padStart(2, '0'); - const hours = String(now.getHours()).padStart(2, '0'); - const minutes = String(now.getMinutes()).padStart(2, '0'); - return `${year}-${month}-${day} ${hours}:${minutes}`; -} function clickFuncBtn(func) { const textarea = document.querySelector('textarea'); // 获取 textarea 元素 const startPos = textarea.selectionStart; // 获取焦点的起始位置 @@ -194,6 +185,7 @@ onUnmounted(() => { width: 70%; } + button { color: white; background: #363636; diff --git a/src/pages/accountPages/Account_setting.vue b/src/pages/accountPages/Account_setting.vue index 235d636..a76b986 100644 --- a/src/pages/accountPages/Account_setting.vue +++ b/src/pages/accountPages/Account_setting.vue @@ -1,5 +1,5 @@ @@ -184,6 +190,23 @@ function saveIntro() { 深色模式 + + + + + + + 自动保存 + + + 动态更新 + 15秒 + 30秒 + 45秒 + 60秒 + 100秒 + + @@ -312,7 +335,7 @@ input, textarea { .halving-line { width: 80%; - height: 1px; + height: 0.1rem; background: linear-gradient(to bottom, rgba(217, 217, 217, 0.6), rgba(114, 114, 114, 0.6)); margin: 20px 0; border-radius: 2px; @@ -392,6 +415,33 @@ input, textarea { accent-color: #ffb74d; } +.auto-save-setting { + display: flex; + flex-direction: row; + align-items: center; + justify-content: flex-start; + width: 80%; + gap: 20px; +} +.checkbox-label input { + width: 20px; + height: 20px; + accent-color: #007bff; + transition: transform 0.2s ease; +} + +.checkbox-label input:checked { + transform: scale(1.2); +} +.theme-light .checkbox-label input { + accent-color: #ffb74d; + border: 2px solid #ddd; +} + +.theme-light .checkbox-label input:checked { + border-color: #ffb74d; +} + /* ========== 个人简介区 ========== */ .intro-box { width: 80%; diff --git a/src/pages/test.vue b/src/pages/test.vue index 6707c12..f3c8064 100644 --- a/src/pages/test.vue +++ b/src/pages/test.vue @@ -1,16 +1,359 @@ - 测试页面 - + + + + + + + ☰ + + + + + + 双 + 编 + 看 + + + 保存 + 提交 + + + + + + + + + + + + 总字符数: {{ contentInput.length }} + 自动保存: {{ store.state.editAutoSave.on ? '开' : '关' }} + 上次保存 [{{ store.state.editStore.blogSaveTime }}] + \ No newline at end of file diff --git a/src/store/index.js b/src/store/index.js index 88c7ccf..9ccd1d4 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -1,6 +1,5 @@ import { createStore } from 'vuex'; import createPersistedStatePlugin from '../plugins/vuexLocalStorage'; -import api from "../utils/axios.js"; import {getDomain} from "../utils/getDomain.js"; const store = createStore({ @@ -10,6 +9,7 @@ const store = createStore({ token: null, userInfo: {}, editStore: {}, + editAutoSave: {on: true, interval: 30000}, demos: {}, }, mutations: { @@ -42,6 +42,12 @@ const store = createStore({ }, setLogTemp(state, arr) { state.log = arr; + }, + toggleAutoSave(state) { + state.editAutoSave.on = ! state.editAutoSave.on; + }, + setAutoSaveTime(state, ms) { + state.editAutoSave.interval = Number(ms) || 30000; } }, getters: { @@ -74,7 +80,7 @@ const store = createStore({ }, plugins: [createPersistedStatePlugin({ key: 'cyberStorage', - whitelist: ['theme', 'userInfo', 'demos', 'editStore'], + whitelist: ['theme', 'userInfo', 'demos', 'editStore', 'editAutoSave'], })] }) diff --git a/src/utils/getCurrentTime.js b/src/utils/getCurrentTime.js new file mode 100644 index 0000000..bac208f --- /dev/null +++ b/src/utils/getCurrentTime.js @@ -0,0 +1,10 @@ +export default function getCurrentTime() { + const now = new Date(); + const year = now.getFullYear(); + const month = String(now.getMonth() + 1).padStart(2, '0'); // 月份从0开始,需要加1 + const day = String(now.getDate()).padStart(2, '0'); + const hours = String(now.getHours()).padStart(2, '0'); + const minutes = String(now.getMinutes()).padStart(2, '0'); + + return `${year}-${month}-${day} ${hours}:${minutes}`; +} \ No newline at end of file