diff --git a/service/assets/version b/service/assets/version
index 58ba41a..0a8912e 100644
--- a/service/assets/version
+++ b/service/assets/version
@@ -1 +1 @@
-8|1.2.1
\ No newline at end of file
+9|1.3.0-beta24-01-09
\ No newline at end of file
diff --git a/src/components/apps/About/index.vue b/src/components/apps/About/index.vue
index 4afef6d..381dce9 100644
--- a/src/components/apps/About/index.vue
+++ b/src/components/apps/About/index.vue
@@ -42,12 +42,16 @@ onMounted(() => {
•
+
+
diff --git a/src/components/apps/ImportExport/index.vue b/src/components/apps/ImportExport/index.vue
index f6433b2..59d9caf 100644
--- a/src/components/apps/ImportExport/index.vue
+++ b/src/components/apps/ImportExport/index.vue
@@ -281,7 +281,7 @@ async function handleStartImport() {
diff --git a/src/components/apps/Style/index.vue b/src/components/apps/Style/index.vue
index 32a3a85..bffbe06 100644
--- a/src/components/apps/Style/index.vue
+++ b/src/components/apps/Style/index.vue
@@ -10,6 +10,7 @@ import { t } from '@/locales'
const authStore = useAuthStore()
const panelState = usePanelState()
const ms = useMessage()
+const showWallpaperInput = ref(false)
const isSaveing = ref(false)
@@ -211,6 +212,14 @@ function resetPanelConfig() {
+
+ {{ $t('apps.baseSettings.customImageAddress') }}
+
+
+
+
+
+
{{ $t('apps.baseSettings.vague') }}
@@ -268,6 +277,7 @@ function resetPanelConfig() {
diff --git a/src/components/apps/UserInfo/index.vue b/src/components/apps/UserInfo/index.vue
index dc65bda..e20d78f 100644
--- a/src/components/apps/UserInfo/index.vue
+++ b/src/components/apps/UserInfo/index.vue
@@ -4,7 +4,7 @@ import { NButton, NCard, NDivider, NForm, NFormItem, NInput, NSelect, useDialog,
import { ref } from 'vue'
import { useAppStore, useAuthStore, usePanelState, useUserStore } from '@/store'
import { languageOptions } from '@/utils/defaultData'
-import type { Language, Theme } from '@/store/modules/app/helper'
+import type { Language } from '@/store/modules/app/helper'
import { logout } from '@/api'
import { RoundCardModal, SvgIcon } from '@/components/common/'
import { updateInfo, updatePassword } from '@/api/system/user'
@@ -19,15 +19,15 @@ const ms = useMessage()
const dialog = useDialog()
const languageValue = ref(appStore.language)
-const themeValue = ref(appStore.theme)
+// const themeValue = ref(appStore.theme)
const nickName = ref(authStore.userInfo?.name || '')
const isEditNickNameStatus = ref(false)
const formRef = ref(null)
-const themeOptions: { label: string; key: string; value: Theme }[] = [
- { label: t('apps.userInfo.themeStyle.dark'), key: 'dark', value: 'dark' },
- { label: t('apps.userInfo.themeStyle.light'), key: 'light', value: 'light' },
- { label: t('apps.userInfo.themeStyle.auto'), key: 'Auto', value: 'auto' },
-]
+// const themeOptions: { label: string; key: string; value: Theme }[] = [
+// { label: t('apps.userInfo.themeStyle.dark'), key: 'dark', value: 'dark' },
+// { label: t('apps.userInfo.themeStyle.light'), key: 'light', value: 'light' },
+// { label: t('apps.userInfo.themeStyle.auto'), key: 'Auto', value: 'auto' },
+// ]
const updatePasswordModalState = ref({
show: false,
loading: false,
@@ -138,11 +138,11 @@ function handleChangeLanuage(value: Language) {
location.reload()
}
-function handleChangeTheme(value: Theme) {
- themeValue.value = value
- appStore.setTheme(value)
- // location.reload()
-}
+// function handleChangeTheme(value: Theme) {
+// themeValue.value = value
+// appStore.setTheme(value)
+// // location.reload()
+// }
@@ -187,14 +187,14 @@ function handleChangeTheme(value: Theme) {
-