chore: update

This commit is contained in:
xiaoxian521
2026-01-13 14:37:38 +08:00
parent b7a9cb0755
commit 4c805b3668
86 changed files with 236 additions and 259 deletions

View File

@@ -37,9 +37,7 @@ function onClick(item) {
</script>
<template>
<div
:class="['min-w-[180px]', deviceDetection() ? 'max-w-full' : 'max-w-[70%]']"
>
<div :class="['min-w-45', deviceDetection() ? 'max-w-full' : 'max-w-[70%]']">
<h3 class="my-8!">账户管理</h3>
<div v-for="(item, index) in list" :key="index">
<div class="flex items-center">

View File

@@ -32,9 +32,7 @@ function onChange(val, item) {
</script>
<template>
<div
:class="['min-w-[180px]', deviceDetection() ? 'max-w-full' : 'max-w-[70%]']"
>
<div :class="['min-w-45', deviceDetection() ? 'max-w-full' : 'max-w-[70%]']">
<h3 class="my-8!">偏好设置</h3>
<div v-for="(item, index) in list" :key="index">
<div class="flex items-center">

View File

@@ -104,9 +104,7 @@ getMine().then(res => {
</script>
<template>
<div
:class="['min-w-[180px]', deviceDetection() ? 'max-w-full' : 'max-w-[70%]']"
>
<div :class="['min-w-45', deviceDetection() ? 'max-w-full' : 'max-w-[70%]']">
<h3 class="my-8!">个人信息</h3>
<el-form
ref="userInfoFormRef"

View File

@@ -72,9 +72,7 @@ onMounted(() => {
</script>
<template>
<div
:class="['min-w-[180px]', deviceDetection() ? 'max-w-full' : 'max-w-[70%]']"
>
<div :class="['min-w-45', deviceDetection() ? 'max-w-full' : 'max-w-[70%]']">
<h3 class="my-8!">安全日志</h3>
<pure-table
row-key="id"

View File

@@ -75,7 +75,7 @@ getMine().then(res => {
>
<el-menu :default-active="witchPane" class="pure-account-settings-menu">
<div
class="h-[50px]! text-(--pure-theme-menu-text) cursor-pointer text-sm transition-all duration-300 ease-in-out hover:scale-105 will-change-transform transform-gpu origin-center hover:text-base! hover:text-(--pure-theme-menu-title-hover)!"
class="h-12.5! text-(--pure-theme-menu-text) cursor-pointer text-sm transition-all duration-300 ease-in-out hover:scale-105 will-change-transform transform-gpu origin-center hover:text-base! hover:text-(--pure-theme-menu-title-hover)!"
@click="router.go(-1)"
>
<div
@@ -85,9 +85,9 @@ getMine().then(res => {
<span class="ml-2">返回</span>
</div>
</div>
<div class="flex items-center ml-8 mt-4 mb-4">
<div class="flex items-center ml-8 my-4">
<el-avatar :size="48" :src="userInfo.avatar" />
<div class="ml-4 flex flex-col max-w-[130px]">
<div class="ml-4 flex flex-col max-w-32.5">
<ReText class="font-bold self-baseline!">
{{ userInfo.nickname }}
</ReText>
@@ -125,7 +125,7 @@ getMine().then(res => {
/>
<component
:is="panes.find(item => item.key === witchPane).component"
:class="[!deviceDetection() && 'ml-[120px]']"
:class="[!deviceDetection() && 'ml-30']"
/>
</el-main>
</el-container>