stat_storedegree.html 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {include file="public/header" /}
  2. <div class="page">
  3. <div class="fixed-bar">
  4. <div class="item-title">
  5. <div class="subject">
  6. <h3>{$Think.lang.ds_statstore}</h3>
  7. <h5></h5>
  8. </div>
  9. {include file="public/admin_items" /}
  10. </div>
  11. </div>
  12. <div class="fixed-empty"></div>
  13. <form method="get" name="formSearch" id="formSearch">
  14. <div class="ds-search-form">
  15. <dl>
  16. <dd>
  17. <select name="search_sclass" id="search_sclass" class="querySelect">
  18. <option value="" selected>{$Think.lang.ds_storeclass}</option>
  19. {foreach name="store_class" item="v"}
  20. <option value="{$v.storeclass_id}" {$Request.param.search_sclass== $v.storeclass_id ?'selected':''}>{$v.storeclass_name}</option>
  21. {/foreach}
  22. </select>
  23. </dd>
  24. </dl>
  25. <div class="btn_group">
  26. <a href="javascript:document.formSearch.submit();" class="btn" title="{$Think.lang.ds_query}">{$Think.lang.ds_query}</a>
  27. <a href="{:url('Statstore/degree')}" class="btn btn-default" title="{$Think.lang.ds_cancel}">{$Think.lang.ds_cancel}</a>
  28. </div>
  29. </div>
  30. </form>
  31. <div class="explanation" id="explanation">
  32. <div class="title" id="checkZoom">
  33. <h4 title="{$Think.lang.ds_explanation_tip}">{$Think.lang.ds_explanation}</h4>
  34. <span id="explanationZoom" title="{$Think.lang.ds_explanation_close}" class="arrow"></span>
  35. </div>
  36. <ul>
  37. <li>{$Think.lang.statestore_stat_storedegree_help1}</li>
  38. </ul>
  39. </div>
  40. <table class="ds-default-table">
  41. <tbody id="datatable">
  42. {present name="stat_json"}
  43. <tr class="hover">
  44. <td class="align-center"><div id="container" class="w100pre close_float" style="height:400px"></div></td>
  45. </tr>
  46. {else /}
  47. <tr class="no_data">
  48. <td colspan="15">{$Think.lang.ds_no_record}</td>
  49. </tr>
  50. {/present}
  51. </tbody>
  52. </table>
  53. </div>
  54. <script src="{$Think.PLUGINS_SITE_ROOT}/highcharts/highcharts.js"></script>
  55. <script src="{$Think.PLUGINS_SITE_ROOT}/statistics.js"></script>
  56. <script>
  57. $(function(){
  58. {present name="stat_json"}
  59. $('#container').highcharts({$stat_json|raw});
  60. {/present}
  61. });
  62. </script>