Spaces:
Sleeping
Sleeping
File size: 7,596 Bytes
f0953a4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 |
<template>
<div class="setting">
<!-- 全局设置 -->
<div v-if="settingStore.globalSetting" class="setting__section">
<div class="setting__title">项目配置</div>
<div class="setting__card">
<van-cell-group inset>
<van-field
v-model="localGlobalSetting.httpProxyHost"
label="代理服务器IP"
placeholder="127.0.0.1"
@update:model-value="handleProxyHostChange"
/>
<van-field
v-model="localGlobalSetting.httpProxyPort"
label="代理端口"
placeholder="7890"
/>
<van-field
v-model.number="localGlobalSetting.AdminUserCode"
label="管理员码"
type="digit"
placeholder="设置管理员注册码"
/>
<van-field
v-model.number="localGlobalSetting.CommonUserCode"
label="用户注册码"
type="digit"
placeholder="设置普通用户注册码"
/>
<van-cell center title="启用代理">
<template #right-icon>
<van-switch
v-model="localGlobalSetting.isProxyEnabled"
size="24px"
@change="handleProxyChange"
/>
</template>
</van-cell>
</van-cell-group>
</div>
</div>
<!-- 用户设置 -->
<div class="setting__section">
<div class="setting__title">用户配置</div>
<div class="setting__card">
<van-cell-group inset>
<van-field
v-model="localUserSettings.cloud115Cookie"
:type="showCloud115Cookie ? 'text' : 'password'"
label="115网盘"
rows="2"
autosize
placeholder="请输入115网盘Cookie"
>
<template #right-icon>
<van-icon
:name="showCloud115Cookie ? 'eye-o' : 'closed-eye'"
@click="showCloud115Cookie = !showCloud115Cookie"
/>
</template>
</van-field>
<van-field
v-model="localUserSettings.quarkCookie"
:type="showQuarkCookie ? 'text' : 'password'"
label="夸克网盘"
rows="2"
autosize
placeholder="请输入夸克网盘Cookie"
>
<template #right-icon>
<van-icon
:name="showQuarkCookie ? 'eye-o' : 'closed-eye'"
@click="showQuarkCookie = !showQuarkCookie"
/>
</template>
</van-field>
</van-cell-group>
</div>
<!-- 帮助说明 -->
<div class="setting__help">
<div class="help__title">帮助说明</div>
<div class="help__links">
<van-cell
title="CloudSaver部署与使用常见问题"
is-link
url="https://www.yuque.com/xiaoruihenbangde/ggogn3/ga6gaaiy5fsyw62l?singleDoc=true"
/>
<van-cell
title="CloudSaver功能介绍"
is-link
url="https://www.yuque.com/xiaoruihenbangde/ggogn3/cl2g0p9h3xrgfa5i"
/>
<van-cell
title="如何获取115网盘cookie?"
is-link
url="https://alist.nn.ci/zh/guide/drivers/115.html"
/>
<van-cell
title="如何获取夸克网盘cookie?"
is-link
url="https://alist.nn.ci/zh/guide/drivers/quark.html"
/>
</div>
</div>
</div>
<!-- 保存按钮 -->
<div class="setting__submit">
<van-button round block type="primary" @click="handleSave"> 保存设置 </van-button>
</div>
</div>
</template>
<script setup lang="ts">
import { useUserSettingStore } from "@/stores/userSetting";
import { ref, watch } from "vue";
import { showNotify } from "vant";
import type { GlobalSettingAttributes, UserSettingAttributes } from "@/types/user";
const settingStore = useUserSettingStore();
// 本地状态
const localGlobalSetting = ref<GlobalSettingAttributes>({
httpProxyHost: "127.0.0.1",
httpProxyPort: "7890",
isProxyEnabled: false,
AdminUserCode: 230713,
CommonUserCode: 9527,
});
const localUserSettings = ref<UserSettingAttributes>({
cloud115Cookie: "",
quarkCookie: "",
});
// 添加显示/隐藏密码的状态
const showCloud115Cookie = ref(false);
const showQuarkCookie = ref(false);
// 监听 store 变化
watch(
() => settingStore.globalSetting,
(newVal) => {
if (newVal) {
localGlobalSetting.value = { ...newVal };
}
},
{ immediate: true }
);
watch(
() => settingStore.userSettings,
(newVal) => {
if (newVal) {
localUserSettings.value = { ...newVal };
}
},
{ immediate: true }
);
// 初始化获取设置
settingStore.getSettings();
// 处理代理开关变化并立即保存
const handleProxyChange = async (val: boolean) => {
try {
localGlobalSetting.value.isProxyEnabled = val;
await settingStore.saveSettings({
globalSetting: localGlobalSetting.value,
userSettings: localUserSettings.value,
});
showNotify({ type: "success", message: "代理设置已更新" });
} catch (error) {
showNotify({ type: "danger", message: "代理设置更新失败" });
// 保存失败时恢复开关状态
localGlobalSetting.value.isProxyEnabled = !val;
}
};
// 其他设置的保存
const handleSave = async () => {
try {
await settingStore.saveSettings({
globalSetting: localGlobalSetting.value,
userSettings: localUserSettings.value,
});
showNotify({ type: "success", message: "设置保存成功" });
} catch (error) {
showNotify({ type: "danger", message: "设置保存失败" });
}
};
// 处理代理地址,去除协议前缀
const handleProxyHostChange = (val: string) => {
// 移除 http:// 或 https:// 前缀
const cleanHost = val.replace(/^(https?:\/\/)/i, "");
// 更新状态
localGlobalSetting.value.httpProxyHost = cleanHost;
};
</script>
<style lang="scss" scoped>
.setting {
min-height: 100vh;
background: var(--theme-background);
padding: var(--spacing-base);
padding-bottom: 90px; // 为底部导航栏和按钮留出空间
&__section {
margin-bottom: var(--spacing-lg);
}
&__title {
font-size: 16px; // 统一字体大小
font-weight: 500;
margin-bottom: var(--spacing-base);
color: var(--theme-color);
}
&__card {
background: var(--theme-other_background);
border-radius: var(--border-radius-lg);
overflow: hidden;
}
&__help {
margin-top: var(--spacing-base);
.help__title {
font-size: 14px; // 统一字体大小
margin-bottom: var(--spacing-sm);
color: var(--theme-color);
}
}
&__submit {
position: fixed;
left: 0;
right: 0;
bottom: 50px; // tabbar 高度
padding: var(--spacing-base);
background: var(--theme-other_background);
z-index: 99;
}
}
// 深度修改 Vant 组件样式
:deep(.van-field) {
font-size: 14px; // 统一字体大小
}
:deep(.van-field__label) {
width: 6em;
color: var(--theme-color);
}
:deep(.van-cell) {
font-size: 14px; // 统一字体大小
padding: 12px var(--spacing-base);
}
:deep(.van-button) {
height: 40px; // 统一按钮高度
font-size: 14px; // 统一字体大小
}
:deep(.van-cell-group--inset) {
margin: 0;
}
// 添加图标样式
:deep(.van-field__right-icon) {
padding: 0 8px;
cursor: pointer;
color: var(--theme-color);
.van-icon {
font-size: 18px;
}
}
</style>
|