12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- // by 请勿倒卖,已申请软著,否则追究法律责任
- if (!defined('IN_ROOT')) {
- exit('Access denied');
- }
- ?><div class="col-sm-2">
- <aside class="aside-left">
- <ul>
- <li class="<?php echo $this->module == 'publish_detail' ? 'active' : '';?>">
- <a href="/index/publish_detail/<?php echo $this->action;?>?id=<?php echo bees_encrypt($row['in_id']);?>">
- <span class="iconfont icon-41"></span>应用详情
- </a>
- </li>
- <li class="<?php echo $this->module == 'publish_setting' ? 'active' : '';?>">
- <a href="/index/publish_setting/<?php echo $this->action;?>?id=<?php echo bees_encrypt($row['in_id']);?>">
- <span class="iconfont icon-19"></span>应用设置
- </a>
- </li>
- <li class="<?php echo $this->module == 'publish_statistics' ? 'active' : '';?>">
- <a href="/index/publish_statistics/<?php echo $this->action;?>?id=<?php echo bees_encrypt($row['in_id']);?>">
- <span class="iconfont icon-download2"></span>下载明细
- </a>
- </li>
- <?php
- if ($this->action == 'sign' && IN_SIGN) {
- ?> <li class="<?php echo $this->module == 'publish_sign' ? 'active' : '';?>">
- <a href="/index/publish_sign/<?php echo $this->action;?>?id=<?php echo bees_encrypt($row['in_id']);?>">
- <span class="iconfont icon-qianming"></span>企业签名</a>
- </li>
- <?php
- }
- ?> <?php
- if ($this->action == 'super') {
- ?> <li class="<?php echo $this->module == 'publish_superlog' ? 'active' : '';?>">
- <a href="/index/publish_superlog/<?php echo $this->action;?>?id=<?php echo bees_encrypt($row['in_id']);?>">
- <span class="iconfont icon-qianming"></span>签名记录</a>
- </li>
- <?php
- }
- ?> </ul>
- </aside>
- </div>
|