人人商城

stat-rule_miss.html 937B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {template 'common/header'}
  2. <div class="clearfix">
  3. {template 'platform/stat-rule_search'}
  4. <h4 class="sub-title">详细数据</h4>
  5. <form action="" method="post" onsubmit="">
  6. <div class="table-responsive">
  7. <table class="table table-hover">
  8. <thead>
  9. <tr>
  10. <th>规则名称<i></i></th>
  11. <th style="width:160px;">模块<i></i></th>
  12. <th style="width:150px;">操作</th>
  13. </tr>
  14. </thead>
  15. <tbody>
  16. {loop $list $row}
  17. <tr>
  18. <td class="row-hover row-first">
  19. {if empty($row['id'])}
  20. N/A
  21. {else}
  22. <a target="main" href="{$row['url']}">{$row['name']}</a>
  23. {/if}
  24. </td>
  25. <td>{$row['module']}</td>
  26. <td>
  27. <a target="main" href="{php echo url('platform/stat/trend', array('id' => $row['id']))}">使用率走势</a>
  28. </td>
  29. </tr>
  30. {/loop}
  31. </tbody>
  32. </table>
  33. </div>
  34. </form>
  35. {$pager}
  36. </div>
  37. {template 'common/footer'}