Przeglądaj źródła

修改了一些配置信息

Ryuiso 8 miesięcy temu
rodzic
commit
36d4babdd6

BIN
public/favicon.ico


BIN
src/assets/logo/favicon-32x32.png


BIN
src/assets/logo/logo.png


+ 16 - 0
src/assets/logo/logo.svg

@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg width="48px" height="48px" viewBox="0 0 48 48" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+    <title>favicon</title>
+    <defs>
+        <radialGradient cx="13.6659223%" cy="62.3104639%" fx="13.6659223%" fy="62.3104639%" r="131.641227%" gradientTransform="translate(0.136659,0.623105),scale(1.000000,0.380421),rotate(-50.804522),translate(-0.136659,-0.623105)" id="radialGradient-1">
+            <stop stop-color="#00A0C7" offset="0%"></stop>
+            <stop stop-color="#08A84C" offset="100%"></stop>
+        </radialGradient>
+    </defs>
+    <g id="favicon" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
+        <g id="shjk_logo" transform="translate(6.583207, 0.000000)" fill-rule="nonzero">
+            <path d="M16.9469951,23.9994181 C16.3122747,29.0991222 18.6498314,29.8560868 21.7458302,25.3266665 L32.3720356,10.4784376 L19.9712201,3.23515418 L16.9469951,23.9993574 L16.9469951,23.9994181 Z M22.3893149,29.8582829 C20.9207656,31.3217316 19.8197078,33.5238876 23.3359153,35.5890743 L33.871442,41.2752145 L33.871442,17.4793478 L22.3893554,29.858202 L22.3893149,29.8582829 Z M17.6410007,40.6082606 L20.0020064,47.9986742 L33.8713914,47.9986742 L23.4134881,39.2077709 C21.5335045,37.5444851 20.0466474,36.863636 19.0099857,36.863636 C17.4140409,36.863636 16.8876593,38.4808336 17.6409906,40.6082606 L17.6410007,40.6082606 Z" id="形状" fill="url(#radialGradient-1)"></path>
+            <polygon id="路径" fill="#005D80" points="4.24975347 10.201483 4.24393425 28.7651089 -1.24829459e-13 33.2176548 -1.24829459e-13 48 10.1957852 48 10.1957852 47.9992815 14.4470163 47.9992815 14.4470163 0 4.24971299 10.2016551 4.24971299 10.2015741"></polygon>
+        </g>
+    </g>
+</svg>

+ 2 - 2
src/layout/components/Sidebar/Logo.vue

@@ -23,7 +23,7 @@
 
 <script setup lang="ts">
 import variables from '@/assets/styles/variables.module.scss'
-import logo from '@/assets/logo/logo.png'
+import logo from '@/assets/logo/logo.svg'
 import useSettingsStore from '@/store/modules/settings'
 import { ComponentInternalInstance } from "vue";
 const { proxy } = getCurrentInstance() as ComponentInternalInstance;
@@ -35,7 +35,7 @@ defineProps({
     }
 })
 
-const title = ref('适老化设备设施');
+const title = ref('适老化设备设施数据库');
 const settingsStore = useSettingsStore();
 const sideTheme = computed(() => settingsStore.sideTheme);
 </script>