人人商城

stat-keyword_miss.html 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {template 'common/header'}
  2. <div class="clearfix">
  3. {template 'platform/stat-keyword_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 class="navbar-inner">
  9. <tr>
  10. <th style="width:150px;">关键字<i></i></th>
  11. <th>规则<i></i></th>
  12. <th style="width:160px;">模块<i></i></th>
  13. <th style="width:100px;">操作</th>
  14. </tr>
  15. </thead>
  16. <tbody>
  17. {loop $list $row}
  18. <tr>
  19. <td>{$row['content']}</td>
  20. <td class="row-hover">
  21. {if empty($row['rid'])}
  22. N/A
  23. {else}
  24. <a target="main" href="{$rules[$row['rid']]['url']}">{$rules[$row['rid']]['name']}</a>
  25. {/if}
  26. </td>
  27. <td>{if $rules[$row['rid']]['module']}{$rules[$row['rid']]['module']}{else}default{/if}</td>
  28. <td>
  29. <a target="main" href="{php echo url('platform/stat/trend', array('id' => $row['rid']))}" title="使用率走势">使用率走势</a>
  30. </td>
  31. </tr>
  32. {/loop}
  33. </tbody>
  34. </table>
  35. </div>
  36. </form>
  37. {$pager}
  38. </div>
  39. {template 'common/footer'}