setting_statistics.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. {{template "header" }}
  2. <div id="app" style="width:100%">
  3. <template>
  4. <el-container v-loading.fullscreen.lock="fullscreenLoading">
  5. <el-main class="mainMain settingMain">
  6. <h2 class="textDark">数据总览</h2>
  7. <el-row :gutter="10">
  8. <el-col :span="8">
  9. <div class="smallBox bgInfo">
  10. <h3 v-html="statistics.visitors"></h3>
  11. <p>总访客数</p>
  12. </div>
  13. </el-col>
  14. <el-col :span="8">
  15. <div class="smallBox bgSuccess">
  16. <h3 v-html="statistics.message"></h3>
  17. <p>总消息数</p>
  18. </div>
  19. </el-col>
  20. <el-col :span="8">
  21. <div class="smallBox bgDanger">
  22. <h3 v-html="statistics.session"></h3>
  23. <p>当前会话数</p>
  24. </div>
  25. </el-col>
  26. </el-row>
  27. </el-main>
  28. </el-container>
  29. </template>
  30. </div>
  31. </body>
  32. {{template "setting_bottom" .}}