publish_left.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. // by 请勿倒卖,已申请软著,否则追究法律责任
  3. if (!defined('IN_ROOT')) {
  4. exit('Access denied');
  5. }
  6. ?><div class="col-sm-2">
  7. <aside class="aside-left">
  8. <ul>
  9. <li class="<?php echo $this->module == 'publish_detail' ? 'active' : '';?>">
  10. <a href="/index/publish_detail/<?php echo $this->action;?>?id=<?php echo bees_encrypt($row['in_id']);?>">
  11. <span class="iconfont icon-41"></span>应用详情
  12. </a>
  13. </li>
  14. <li class="<?php echo $this->module == 'publish_setting' ? 'active' : '';?>">
  15. <a href="/index/publish_setting/<?php echo $this->action;?>?id=<?php echo bees_encrypt($row['in_id']);?>">
  16. <span class="iconfont icon-19"></span>应用设置
  17. </a>
  18. </li>
  19. <li class="<?php echo $this->module == 'publish_statistics' ? 'active' : '';?>">
  20. <a href="/index/publish_statistics/<?php echo $this->action;?>?id=<?php echo bees_encrypt($row['in_id']);?>">
  21. <span class="iconfont icon-download2"></span>下载明细
  22. </a>
  23. </li>
  24. <?php
  25. if ($this->action == 'sign' && IN_SIGN) {
  26. ?> <li class="<?php echo $this->module == 'publish_sign' ? 'active' : '';?>">
  27. <a href="/index/publish_sign/<?php echo $this->action;?>?id=<?php echo bees_encrypt($row['in_id']);?>">
  28. <span class="iconfont icon-qianming"></span>企业签名</a>
  29. </li>
  30. <?php
  31. }
  32. ?> <?php
  33. if ($this->action == 'super') {
  34. ?> <li class="<?php echo $this->module == 'publish_superlog' ? 'active' : '';?>">
  35. <a href="/index/publish_superlog/<?php echo $this->action;?>?id=<?php echo bees_encrypt($row['in_id']);?>">
  36. <span class="iconfont icon-qianming"></span>签名记录</a>
  37. </li>
  38. <?php
  39. }
  40. ?> </ul>
  41. </aside>
  42. </div>