Commit c7d552d306708eff3427096dcc3752d7f78985fa

Authored by 周伟鹏
1 parent f160d36e

去掉域名影响

src/main/resources/templates/common/frame.html
... ... @@ -3,7 +3,7 @@
3 3 <body th:fragment="frame">
4 4 <header class="main-header">
5 5 <!-- Logo -->
6   - <a href="http://shenhe.cnlive.com/" class="logo">
  6 + <a href="/" class="logo">
7 7 <!-- mini logo for sidebar mini 50x50 pixels -->
8 8 <span class="logo-mini"><b>ACP</b></span>
9 9 <!-- logo for regular state and mobile devices -->
... ...
src/main/resources/templates/page/commentDetail.html
... ... @@ -15,8 +15,8 @@
15 15 评论详情
16 16 </h1>
17 17 <ol class="breadcrumb">
18   - <li><a href="http://shenhe.cnlive.com/index"><i class="fa fa-dashboard"></i> 首页</a></li>
19   - <li class="active"><a href="http://shenhe.cnlive.com/comments">评论审核</a></li>
  18 + <li> 首页</li>
  19 + <li class="active">评论审核</li>
20 20 </ol>
21 21 </section>
22 22  
... ...
src/main/resources/templates/page/site.html
... ... @@ -19,8 +19,8 @@
19 19 白名单管理
20 20 </h1>
21 21 <ol class="breadcrumb">
22   - <li><a href="http://shenhe.cnlive.com/index"> 首页</a></li>
23   - <li><a href="http://shenhe.cnlive.com/whites#">系统管理</a></li>
  22 + <li>首页</li>
  23 + <li>系统管理</li>
24 24 <li class="active">白名单管理</li>
25 25 </ol>
26 26 </section>
... ...
src/main/resources/templates/page/video.html
... ... @@ -10,6 +10,15 @@
10 10 <div class="wrapper">
11 11 <div th:replace="../templates/common/frame::frame" ></div>
12 12 <div class="content-wrapper" style="min-height: 788px;">
  13 + <section class="content-header">
  14 + <h1>
  15 + 点播审核
  16 + </h1>
  17 + <ol class="breadcrumb">
  18 + <li>首页</li>
  19 + <li class="active">点播审核</li>
  20 + </ol>
  21 + </section>
13 22 <section class="content">
14 23 <div class="row">
15 24 <div class="col-md-12">
... ... @@ -168,10 +177,10 @@
168 177 }else if (page < 10000) {
169 178 param = param.substring(1,param.length-10);
170 179 }
171   - window.location.href = "http://shenhe.cnlive.com/videos/page?"+param+"&page="+page;
  180 + window.location.href = "/videos/page?"+param+"&page="+page;
172 181 }else {
173 182 param = param.substring(1,param.length);
174   - window.location.href = "http://shenhe.cnlive.com/videos/page?"+param+"&page="+page;
  183 + window.location.href = "/videos/page?"+param+"&page="+page;
175 184 }
176 185 }
177 186 //待审核
... ...
src/main/resources/templates/page/videoDetail.html
... ... @@ -13,8 +13,8 @@
13 13 点播详情
14 14 </h1>
15 15 <ol class="breadcrumb">
16   - <li><a ><i class="fa fa-dashboard"></i> 首页</a></li>
17   - <li class="active"><a >点播审核</a></li>
  16 + <li>首页</li>
  17 + <li class="active">点播审核</li>
18 18 </ol>
19 19 </section>
20 20  
... ...