index.vue 905 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <wrapper
  3. fill
  4. margin
  5. padding
  6. background
  7. >
  8. <span class="c-sibling-item--v u-font-size--sm u-bold">定时任务</span>
  9. <div class="c-sibling-item--v l-grid--info mini">
  10. <button
  11. class="o-button"
  12. @click="onOnlineDurationTask"
  13. >
  14. 在线时长统计
  15. </button>
  16. <button
  17. class="o-button"
  18. @click="onAdTask"
  19. >
  20. 自助广告统计
  21. </button>
  22. </div>
  23. <time-task-dialog ref="timeTaskDialog" />
  24. </wrapper>
  25. </template>
  26. <script>
  27. import TimeTaskDialog from './components/TimeTaskDialog.vue'
  28. export default {
  29. name: 'PlatformSettings',
  30. components: {
  31. TimeTaskDialog
  32. },
  33. methods: {
  34. onOnlineDurationTask () {
  35. this.$refs.timeTaskDialog.show('device_online_summary')
  36. },
  37. onAdTask () {
  38. this.$refs.timeTaskDialog.show('advertisement_statistic')
  39. }
  40. }
  41. }
  42. </script>