footer.html 462 B

1234567891011121314151617
  1. <div class="bottom-wrap">&copy; <span id="footbottom"></span> 中储粮-单仓档案管理系统 版权所有</div>
  2. <script>
  3. $.ajax({
  4. type: "get",
  5. dataType: 'json',
  6. contentType: 'application/json;charset=utf-8',
  7. url: config.baseUrl + '/sys/sync/serverTime',
  8. success: function(e) {
  9. $('#footbottom').text(e.data)
  10. },
  11. error: function(e) {
  12. console.log(e);
  13. }
  14. });
  15. </script>