logo替换

This commit is contained in:
liuxi 2025-03-19 10:35:51 +08:00
parent ce167f4936
commit 966167ce49
2 changed files with 6 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 7.9 KiB

View File

@ -80,7 +80,12 @@ import { number } from "echarts";
// }) // })
smapi.getUserList({current:1,size:500,type:2}).then(res => { smapi.getUserList({current:1,size:500,type:2}).then(res => {
if (!res.code) { if (!res.code) {
this.operateMethodOptions = res.records res.records.forEach(item => {
if(!item.roleIds.includes(1)){
this.operateMethodOptions.push(item)
}
});
// this.operateMethodOptions = res.records
} }
}) })
}, },