修改图标和权限*拦截邮件

This commit is contained in:
eoao
2025-09-01 08:22:22 +08:00
parent 6f25991ff2
commit 97a7950808
23 changed files with 9707 additions and 14944 deletions

View File

@@ -23,7 +23,7 @@ const settingService = {
async query(c) {
if (c.get('setting')) {
if (c.get?.('setting')) {
return c.get('setting')
}
@@ -45,7 +45,7 @@ const settingService = {
domainList = domainList.map(item => '@' + item);
setting.domainList = domainList;
c.set('setting', setting);
c.set?.('setting', setting);
return setting;
},