No Description
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.

left.htm 5.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <div class="sidebar-second order-navBox">
  2. <ul id="accordion" class="accordion">
  3. {if condition="isset($usersConfig['shop_open']) && 1 == $usersConfig['shop_open']"}
  4. {eq name="'Shop@index'|is_check_access" value="1"}
  5. <li class="open">
  6. <a class="link">商城订单<i class="fa fa-angle-right"></i></a>
  7. <ul class="submenu" {if condition="in_array($Request.param.c, ['Shop', 'ShopService'])"}style="display: show;"{else/}style="display: none;"{/if}>
  8. <li>
  9. <a {eq name="$Request.param.order_status" value="1"}class="current"{/eq} href='{:url("Shop/index", ["order_status"=>1])}'>
  10. 待发货
  11. </a>
  12. </li>
  13. <li>
  14. <a {eq name="$Request.param.order_status" value="10"}class="current"{/eq} href='{:url("Shop/index", ["order_status"=>10])}'>
  15. 待付款
  16. </a>
  17. </li>
  18. <li>
  19. <a {eq name="$Request.param.order_status" value="2"}class="current"{/eq} href='{:url("Shop/index", ["order_status"=>2])}'>
  20. 已发货
  21. </a>
  22. </li>
  23. <li>
  24. <a {eq name="$Request.param.order_status" value="3"}class="current"{/eq} href='{:url("Shop/index", ["order_status"=>3])}'>
  25. 已完成
  26. </a>
  27. </li>
  28. {if condition="$php_servicemeal > 1"}
  29. <li>
  30. <a {if condition="'ShopService' == $Think.const.CONTROLLER_NAME"}class="current"{/if} href='{:url("ShopService/after_service")}'>
  31. 售后订单
  32. </a>
  33. </li>
  34. {/if}
  35. <li>
  36. <a {if condition="'index' == $Think.const.ACTION_NAME and '' == $Request.param.order_status"}class="current"{/if} href='{:url("Shop/index")}'>
  37. 全部订单
  38. </a>
  39. </li>
  40. </ul>
  41. </li>
  42. {/eq}
  43. {/if}
  44. <li>
  45. <a class="link">会员订单<i class="fa fa-angle-right"></i></a>
  46. <ul class="submenu" {if condition="in_array($Request.param.c, ['Member', 'Level'])"}style="display: show;"{else/}style="display: none;"{/if}>
  47. {eq name="'Member@article_index'|is_check_access" value="1"}
  48. {if condition="!empty($channeltype_row[1]['status']) && !empty($channelRow.article.data.is_article_pay)"}
  49. <li>
  50. <a {if condition="in_array($Request.action, ['article_index'])"}class="current"{/if} href='{:url("Member/article_index", ["order_status"=>1])}'>
  51. 文章订单
  52. </a>
  53. </li>
  54. {/if}
  55. {/eq}
  56. {eq name="'Member@download_index'|is_check_access" value="1"}
  57. {if condition="!empty($channeltype_row[1]['status']) && !empty($channelRow.download.data.is_download_pay)"}
  58. <li>
  59. <a {if condition="in_array($Request.action, ['download_index'])"}class="current"{/if} href='{:url("Member/download_index", ["order_status"=>1])}'>
  60. 下载订单
  61. </a>
  62. </li>
  63. {/if}
  64. {/eq}
  65. {eq name="'Member@media_index'|is_check_access" value="1"}
  66. {if condition="!empty($channeltype_row[5]['status'])"}
  67. <li>
  68. <a {if condition="in_array($Request.action, ['media_index'])"}class="current"{/if} href='{:url("Member/media_index", ["order_status"=>1])}'>
  69. 视频订单
  70. </a>
  71. </li>
  72. {/if}
  73. {/eq}
  74. {eq name="'Level@index'|is_check_access" value="1"}
  75. {if condition="1 == $userConfig.level_member_upgrade"}
  76. {eq name="'Level@upgrade_index'|is_check_access" value="1"}
  77. <li>
  78. <a {if condition="in_array($Request.action, ['upgrade_index'])"}class="current"{/if} href='{:url("Level/upgrade_index")}'>
  79. 会员升级
  80. </a>
  81. </li>
  82. {/eq}
  83. {/if}
  84. {/eq}
  85. {eq name="'Member@money_index'|is_check_access" value="1"}
  86. <li>
  87. <a {if condition="in_array($Request.action, ['money_index'])"}class="current"{/if} href='{:url("Member/money_index", ["status"=>2])}'>
  88. 余额充值
  89. </a>
  90. </li>
  91. {/eq}
  92. </ul>
  93. </li>
  94. </ul>
  95. </div>
  96. <script>
  97. $(function() {
  98. var Accordion = function(el, multiple) {
  99. this.el = el || {};
  100. this.multiple = multiple || false;
  101. // Variables privadas
  102. var links = this.el.find('.link');
  103. // Evento
  104. links.on('click', {el: this.el, multiple: this.multiple}, this.dropdown)
  105. };
  106. Accordion.prototype.dropdown = function(e) {
  107. var $el = e.data.el;
  108. $this = $(this);
  109. $next = $this.next();
  110. $next.slideToggle();
  111. $this.parent().toggleClass('open');
  112. if (!e.data.multiple) {
  113. $el.find('.submenu').not($next).slideUp().parent().removeClass('open');
  114. }
  115. };
  116. var accordion = new Accordion($('#accordion'), false);
  117. $('.submenu li').click(function () {
  118. $(this).addClass('current').siblings('li').removeClass('current');
  119. });
  120. });
  121. </script>