自动化立体仓库 - WMS系统
#
vincent
2020-05-25 e5d31b50665bb61328d73194eec68a8eaefbdb66
src/main/webapp/views/index.html
@@ -84,7 +84,7 @@
              <dd><a lay-href="detail.html">基本资料</a></dd>
              <!--<dd><a lay-href="set/user/password.html">修改密码</a></dd>-->
              <hr>
              <dd style="text-align: center;"><a id="logout" href="/">退出</a></dd>
              <dd style="text-align: center;"><a id="logout" href="/asrs">退出</a></dd>
            </dl>
          </li>
        </ul>
@@ -94,7 +94,7 @@
      <div class="layui-side layui-side-menu">
        <div class="layui-side-scroll">
          <div class="layui-logo" lay-href="home/console.html">
            <!--<img src="../static/image/logo.jpg">-->
            <!--<img src="..../../static/image/logo.jpg">-->
            <span>中扬储存设备</span>
          </div>
@@ -156,10 +156,10 @@
      $(function () {
          if ("" === localStorage.getItem('token')){
              top.location.href = "/login";
              top.location.href = baseUrl+"/login";
          }
          $.ajax({
              url: "/menu/auth",
              url: baseUrl+ "/menu/auth",
              headers: {'token': localStorage.getItem('token')},
              method: 'POST',
              success: function (res) {
@@ -183,7 +183,7 @@
                      $('#LAY-system-side-menu').append(menuHtml);
                      element.init();
                  } else if (res.code === 403){
                      top.location.href = "/login";
                      top.location.href = baseUrl+"/login";
                  }else {
                      layer.alert(res.msg)
                  }