From 6e20de65a7ae739cd039f6ae370b908a25992be7 Mon Sep 17 00:00:00 2001
From: Junjie <540245094@qq.com>
Date: 星期三, 29 十一月 2023 16:48:56 +0800
Subject: [PATCH] #

---
 src/main/webapp/views/index.html |   15 +++++++++++++--
 1 files changed, 13 insertions(+), 2 deletions(-)

diff --git a/src/main/webapp/views/index.html b/src/main/webapp/views/index.html
index e3f64de..0c3212b 100644
--- a/src/main/webapp/views/index.html
+++ b/src/main/webapp/views/index.html
@@ -25,7 +25,7 @@
   <!-- 澶撮儴 -->
   <div class="layui-header">
     <div class="layui-logo">
-      <img src="../static/wms/image/logo.png" style="display: inline-block; width: 60%;height: auto">
+      <img class="loginLogo" src="../static/wms/image/logo.png" style="display: inline-block; width: 60%;height: auto">
       <!--          <span style="margin-top: 0; letter-spacing: 10px">涓壃绔嬪簱</span>-->
       <!--          <img src="../static/wms/image/logo.svg"/>-->
       <!--          <cite>涓壃 - Zoneyung</cite>-->
@@ -77,7 +77,7 @@
   <div class="layui-body"></div>
   <!-- 搴曢儴 -->
   <div class="layui-footer layui-text">
-    copyright 漏 2023 娴欐睙涓壃绔嬪簱鎶�鏈湁闄愬叕鍙� all rights reserved.
+    <span class="copyright-text">copyright 漏 2023 娴欐睙涓壃绔嬪簱鎶�鏈湁闄愬叕鍙� all rights reserved.</span>
     <span class="pull-right">Version 1.0.0</span>
   </div>
 
@@ -150,6 +150,17 @@
     });
 
     $.ajax({
+      url: baseUrl+"/loginInformation",
+      data: {},
+      method: 'GET',
+      success: function (res) {
+        var data = res.data
+        $(".copyright-text").text(data.loginCopyrightText);
+        $(".loginLogo").attr("src", data.loginLogo);
+      }
+    });
+
+    $.ajax({
       url: baseUrl + "/license/getLicenseDays",
       headers: {'token': localStorage.getItem('token')},
       method: 'POST',

--
Gitblit v1.9.1