修复透明度覆盖影响设置问题,优化样式

This commit is contained in:
eoao
2025-06-06 00:23:31 +08:00
parent 1c40dc8338
commit 8054c0390c
15 changed files with 179 additions and 147 deletions

View File

@@ -297,7 +297,7 @@
</template>
<script setup>
import {defineOptions, nextTick, onMounted, reactive, ref} from "vue";
import {defineOptions, onMounted, reactive, ref} from "vue";
import {physicsDeleteAll, setBackground, settingQuery, settingSet} from "@/request/setting.js";
import {ElMessage, ElMessageBox} from "element-plus";
import {useSettingStore} from "@/store/setting.js";
@@ -353,7 +353,7 @@ onMounted(() => {
})
function doOpacityChange() {
const form = {...setting.value}
const form = {}
form.loginOpacity = loginOpacity.value
editSetting(form,true)
}