Ei kuvausta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

shop_cart_header.htm 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <!-- 头部信息 -->
  2. <div class="ey-cart-header">
  3. <div class="ey-cart-header-con">
  4. <div class="ey-logo">
  5. <!-- <a href="{eyou:global name='web_cmsurl' /}"><img src="{eyou:global name='web_logo'/}" /></a> -->
  6. </div>
  7. <div class="ey-cart-title">
  8. <h2> 我的购物车 </h2>
  9. <p>温馨提示:产品是否购买成功,以最终下单为准哦,请尽快结算</p>
  10. </div>
  11. <div class="ey-cart-header-r">
  12. {egt name='$php_servicemeal' value='1'}
  13. <div class="right-item user-news">
  14. <a href="{:url('user/UsersNotice/index')}">
  15. {gt name="$unread_num" value="0"}
  16. <span class="num" id="users_unread_num">{$unread_num}</span>
  17. {/gt}
  18. <span class="icon"><i class="el-icon-bell"></i></span>
  19. </a>
  20. </div>
  21. {/egt}
  22. <div class="right-item user-photo">
  23. <a href="{eyou:Diyurl link='user/Users/index' /}"><img src="{$users.head_pic|get_head_pic=###}"/></a>
  24. <div class="user-drop">
  25. <ul>
  26. <li><a href="{eyou:Diyurl link='user/Users/index' /}">个人中心</a></li>
  27. {eyou:if condition="getUsersConfigData('shop.shop_open') == 1"}
  28. <li><a href="{eyou:Diyurl link='user/Shop/shop_centre' /}">我的订单</a></li>
  29. {/eyou:if}
  30. <li><a href="{eyou:Diyurl link='user/Users/collection_index' /}">我的收藏</a></li>
  31. <li><a href="{eyou:Diyurl link='user/Users/logout' /}">安全退出</a></li>
  32. </ul>
  33. </div>
  34. </div>
  35. </div>
  36. </div>
  37. </div>
  38. <!-- 头部信息结束 -->
  39. <script type="text/javascript">
  40. //头像下拉
  41. $(".user-photo").mouseover(function(){
  42. $(".user-drop").show();
  43. });
  44. $(".user-photo").mouseout(function(){
  45. $(".user-drop").hide();
  46. });
  47. var GetUploadify_url = "{:url('Uploadify/upload')}";
  48. </script>