Merge branch 'develop' of git.dev.yoho.cn:web/yohobuy into develop
Showing
7 changed files
with
16 additions
and
4 deletions
@@ -9,6 +9,8 @@ var $userAvatar = $('.user-avatar'), | @@ -9,6 +9,8 @@ var $userAvatar = $('.user-avatar'), | ||
9 | var myImage = new Image(); | 9 | var myImage = new Image(); |
10 | 10 | ||
11 | require('../product/recommend-for-you.js'); | 11 | require('../product/recommend-for-you.js'); |
12 | +require('../product/suspend-cart.js'); | ||
13 | + | ||
12 | myImage.src = $userAvatar.attr('src'); | 14 | myImage.src = $userAvatar.attr('src'); |
13 | myImage.onerror = function() { | 15 | myImage.onerror = function() { |
14 | $userAvatar.attr('src', 'http://static.dev.yohobuy.com/img/me/index/user-avatar.png'); | 16 | $userAvatar.attr('src', 'http://static.dev.yohobuy.com/img/me/index/user-avatar.png'); |
@@ -28,7 +28,12 @@ | @@ -28,7 +28,12 @@ | ||
28 | } | 28 | } |
29 | 29 | ||
30 | .username { | 30 | .username { |
31 | + float: left; | ||
31 | padding: 0 pxToRem(16px); | 32 | padding: 0 pxToRem(16px); |
33 | + text-overflow: ellipsis; | ||
34 | + overflow: hidden; | ||
35 | + white-space: nowrap; | ||
36 | + max-width: pxToRem(290px); | ||
32 | } | 37 | } |
33 | 38 | ||
34 | .vip-icon { | 39 | .vip-icon { |
@@ -125,11 +125,11 @@ | @@ -125,11 +125,11 @@ | ||
125 | {{#if numInCart}} | 125 | {{#if numInCart}} |
126 | <span class="num-tag">{{numInCart}}</span> | 126 | <span class="num-tag">{{numInCart}}</span> |
127 | {{/if}} | 127 | {{/if}} |
128 | - <a href="" class="num-incart iconfont"></a> | 128 | + <a href="/shoppingCart" class="num-incart iconfont"></a> |
129 | {{#if goodsInstore}} | 129 | {{#if goodsInstore}} |
130 | - <a href="" class="addto-cart ">加入购物车</a> | 130 | + <a href="/shoppingCart" class="addto-cart ">加入购物车</a> |
131 | {{else}} | 131 | {{else}} |
132 | - <a href="" class="sold-out">已售罄</a> | 132 | + <a href="javascript:;" class="sold-out">已售罄</a> |
133 | {{/if}} | 133 | {{/if}} |
134 | 134 | ||
135 | <a href="#" id="likeBtn" class="favorite iconfont {{#isCollect}}liked{{/isCollect}}"></a> | 135 | <a href="#" id="likeBtn" class="favorite iconfont {{#isCollect}}liked{{/isCollect}}"></a> |
@@ -216,6 +216,7 @@ | @@ -216,6 +216,7 @@ | ||
216 | {{#if myIndexPage}} | 216 | {{#if myIndexPage}} |
217 | <script> | 217 | <script> |
218 | seajs.use('js/me/index'); | 218 | seajs.use('js/me/index'); |
219 | + seajs.use('js/index/footer'); | ||
219 | </script> | 220 | </script> |
220 | {{/if}} | 221 | {{/if}} |
221 | {{#if orderPage}} | 222 | {{#if orderPage}} |
@@ -51,6 +51,7 @@ class HomeController extends AbstractAction | @@ -51,6 +51,7 @@ class HomeController extends AbstractAction | ||
51 | 51 | ||
52 | $data = array( | 52 | $data = array( |
53 | 'myIndexPage' => true, | 53 | 'myIndexPage' => true, |
54 | + 'showDownloadApp' => true, | ||
54 | 'pageFooter' => true | 55 | 'pageFooter' => true |
55 | ); | 56 | ); |
56 | $uid = $this->getUid(); | 57 | $uid = $this->getUid(); |
@@ -323,7 +324,7 @@ class HomeController extends AbstractAction | @@ -323,7 +324,7 @@ class HomeController extends AbstractAction | ||
323 | 324 | ||
324 | $this->_view->display('online-service', array( | 325 | $this->_view->display('online-service', array( |
325 | 'onlineServicePage' => true, | 326 | 'onlineServicePage' => true, |
326 | - // 'pageFooter' => true, | 327 | + 'pageFooter' => true, |
327 | 'service' => $service | 328 | 'service' => $service |
328 | )); | 329 | )); |
329 | } | 330 | } |
-
Please register or login to post a comment