merge luma page code for v4.1.3

This commit is contained in:
RockYang
2024-09-09 18:07:10 +08:00
parent 55b979784c
commit e971bf6b88
22 changed files with 1285 additions and 367 deletions

View File

@@ -221,10 +221,10 @@ export function showLoginDialog(router) {
}
export const replaceImg =(img) => {
const devhost = "172.22.11.69"
const devHost = "172.22.11.69"
const localhost = "localhost"
if (img.includes(localhost)) {
return img?.replace(localhost, devhost)
return img?.replace(localhost, devHost)
}
return img
}