feat(platform): 添加网站图标支持
- 在运营平台index.html中添加ico和svg格式图标链接 - 在租户平台index.html中统一图标引用为标准favicon路径 - 添加运营平台SVG格式网站图标文件 - 添加租户平台SVG格式网站图标文件 - 移除租户平台原有的vite默认图标引用
这个提交包含在:
父节点
acd2070e25
当前提交
bbbd382651
@ -3,6 +3,8 @@
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<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>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
二进制
ops-platform/public/favicon.ico
普通文件
二进制
ops-platform/public/favicon.ico
普通文件
二进制文件未显示。
|
之后 宽度: | 高度: | 大小: 18 KiB |
18
ops-platform/public/favicon.svg
普通文件
18
ops-platform/public/favicon.svg
普通文件
@ -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">
|
||||
<head>
|
||||
<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" />
|
||||
<title>XuqmGroup 开放平台</title>
|
||||
</head>
|
||||
|
||||
二进制
tenant-platform/public/favicon.ico
普通文件
二进制
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 |
正在加载...
在新工单中引用
屏蔽一个用户