wenhongquan 6 месяцев назад
Родитель
Сommit
3bf8d1e114
3 измененных файлов с 6 добавлено и 4 удалено
  1. BIN
      src/assets/images/gh.png
  2. 5 3
      src/views/login.vue
  3. 1 1
      vite.config.ts

BIN
src/assets/images/gh.png


+ 5 - 3
src/views/login.vue

@@ -53,7 +53,8 @@
     </el-form>
     <!--  底部  -->
     <div class="el-login-footer">
-      <span>Copyright © 2023-2025 福建瑞华数字技术有限公司 All Rights Reserved. 闽ICP备2023005786号</span>
+      <span>Copyright © 2023-2025 福建瑞华数字技术有限公司 All Rights Reserved. </span>
+      <div style="display: flex;justify-content: center; align-items: center;"><img :src="gh" style="width: 15px;height: 15px;margin-right: 5px;"><a href="https://beian.miit.gov.cn" rel="noreferrer" target="_blank" style="color: white;">闽公网安备35010202002029号</a></div>
     </div>
   </div>
 </template>
@@ -65,6 +66,7 @@ import { useUserStore } from '@/store/modules/user';
 import { LoginData, TenantVO } from '@/api/types';
 import { to } from 'await-to-js';
 import { HttpStatus } from "@/enums/RespEnum";
+import gh from '@/assets/images/gh.png';
 
 const userStore = useUserStore();
 const router = useRouter();
@@ -265,8 +267,8 @@ onMounted(() => {
 }
 
 .el-login-footer {
-  height: 40px;
-  line-height: 40px;
+  height: 50px;
+  line-height: 20px;
   position: fixed;
   bottom: 0;
   width: 100%;

+ 1 - 1
vite.config.ts

@@ -27,7 +27,7 @@ export default defineConfig(({ mode, command }: ConfigEnv): UserConfig => {
       proxy: {
         [env.VITE_APP_BASE_API]: {
           // target: 'http://localhost:8080',
-          target: 'https://khy.xiaole.vip/api',
+          target: 'https://ncky.ruihuadt.com/api',
           changeOrigin: true,
           ws: true,
           rewrite: (path) => path.replace(new RegExp('^' + env.VITE_APP_BASE_API), '')