feat(platform): 添加网站图标支持

- 在运营平台index.html中添加ico和svg格式图标链接
- 在租户平台index.html中统一图标引用为标准favicon路径
- 添加运营平台SVG格式网站图标文件
- 添加租户平台SVG格式网站图标文件
- 移除租户平台原有的vite默认图标引用
这个提交包含在:
XuqmGroup 2026-06-12 19:53:39 +08:00
父节点 acd2070e25
当前提交 bbbd382651
共有 6 个文件被更改,包括 40 次插入1 次删除

查看文件

@ -3,6 +3,8 @@
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<title>XuqmGroup 运营平台</title> <title>XuqmGroup 运营平台</title>
</head> </head>
<body> <body>

二进制
ops-platform/public/favicon.ico 普通文件

二进制文件未显示。

之后

宽度:  |  高度:  |  大小: 18 KiB

查看文件

@ -0,0 +1,18 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
<defs>
<linearGradient id="bg" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#2BA5FF"/>
<stop offset="100%" stop-color="#0A65D4"/>
</linearGradient>
<clipPath id="round">
<rect width="100" height="100" rx="20"/>
</clipPath>
</defs>
<!-- Background -->
<rect width="100" height="100" rx="20" fill="url(#bg)"/>
<!-- X: two crossing bars (parallelograms) -->
<g clip-path="url(#round)">
<polygon points="12,20 30,6 88,80 70,94" fill="white" opacity="1"/>
<polygon points="70,6 88,20 30,94 12,80" fill="white" opacity="1"/>
</g>
</svg>

之后

宽度:  |  高度:  |  大小: 663 B

查看文件

@ -2,7 +2,8 @@
<html lang="zh-CN"> <html lang="zh-CN">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> <link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>XuqmGroup 开放平台</title> <title>XuqmGroup 开放平台</title>
</head> </head>

二进制
tenant-platform/public/favicon.ico 普通文件

二进制文件未显示。

之后

宽度:  |  高度:  |  大小: 18 KiB

查看文件

@ -0,0 +1,18 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
<defs>
<linearGradient id="bg" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#2BA5FF"/>
<stop offset="100%" stop-color="#0A65D4"/>
</linearGradient>
<clipPath id="round">
<rect width="100" height="100" rx="20"/>
</clipPath>
</defs>
<!-- Background -->
<rect width="100" height="100" rx="20" fill="url(#bg)"/>
<!-- X: two crossing bars (parallelograms) -->
<g clip-path="url(#round)">
<polygon points="12,20 30,6 88,80 70,94" fill="white" opacity="1"/>
<polygon points="70,6 88,20 30,94 12,80" fill="white" opacity="1"/>
</g>
</svg>

之后

宽度:  |  高度:  |  大小: 663 B