Showing
5 changed files
with
34 additions
and
2 deletions
@@ -106,3 +106,21 @@ | @@ -106,3 +106,21 @@ | ||
106 | color: #fff; | 106 | color: #fff; |
107 | } | 107 | } |
108 | } | 108 | } |
109 | +.systemMain{ | ||
110 | + width: 92%; | ||
111 | + height: 100%; | ||
112 | + overflow: hidden; | ||
113 | + background-color:#444; | ||
114 | + color: #fff; | ||
115 | + padding:0 4%; | ||
116 | + position: absolute; | ||
117 | + top: 0; | ||
118 | + left: 0; | ||
119 | + p{ | ||
120 | + font-size: 52em / $pxConvertRem; | ||
121 | + line-height: 60rem / $pxConvertRem; | ||
122 | + &:first-of-type{ | ||
123 | + padding-top: 90rem / $pxConvertRem; | ||
124 | + } | ||
125 | + } | ||
126 | +} |
1 | +{{> layout/header}} | ||
2 | +<div class="systemMain"> | ||
3 | + <P>尊敬的顾客:</P> | ||
4 | + <P>您好!</P> | ||
5 | + <P>为了向您提供更优质的服务,目前系统正在升级,请您耐心等待。</P> | ||
6 | + <P>系统升级期间,部分地区用户体验会有暂 时中断,如遇紧急事宜,欢迎垂询客服热线:400-889-9646 09:00-22:30(周一至周日)。</P> | ||
7 | + <P>稍后系统将恢复正常使用,欢迎您继续光顾 YOHO!BUY 有货!</P> | ||
8 | + <P>带来不便之处深表 歉意,请您谅解!</P> | ||
9 | + <P>特此公告</P> | ||
10 | + <P>YOHO!BUY 有货 客户服务中心。</P> | ||
11 | +</div> | ||
12 | +{{> layout/footer}} |
@@ -45,7 +45,7 @@ | @@ -45,7 +45,7 @@ | ||
45 | <body {{#if isPassportPage}}class=passport-body{{/if}}> | 45 | <body {{#if isPassportPage}}class=passport-body{{/if}}> |
46 | {{#if systemUpdate}} | 46 | {{#if systemUpdate}} |
47 | <div class="systemUpdate"> | 47 | <div class="systemUpdate"> |
48 | - <a href="systemUpdate" class="systemHeader">YOHO!BUY关于系统升级的公告</a> | 48 | + <a href="index/systemUpdate" class="systemHeader">YOHO!BUY关于系统升级的公告</a> |
49 | <span>X</span> | 49 | <span>X</span> |
50 | </div> | 50 | </div> |
51 | {{/if}} | 51 | {{/if}} |
@@ -40,7 +40,9 @@ class IndexController extends AbstractAction | @@ -40,7 +40,9 @@ class IndexController extends AbstractAction | ||
40 | 40 | ||
41 | public function systemUpdateAction() | 41 | public function systemUpdateAction() |
42 | { | 42 | { |
43 | - $this->_view->display('systemUpdate',''); | 43 | + $this->setTitle('关于系统升级的公告'); |
44 | + | ||
45 | + $this->_view->display('systemUpdate'); | ||
44 | } | 46 | } |
45 | 47 | ||
46 | } | 48 | } |
-
Please register or login to post a comment