| | |
| | | <!-- 头部 --> |
| | | <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>--> |
| | |
| | | <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> |
| | | |
| | |
| | | }); |
| | | |
| | | $.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', |