index.vue 719 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <div>
  3. <page-header
  4. :title="$t('aice.llm')"
  5. isShowResStatusTab
  6. :status-opts="statusOpts"
  7. :status-click-handle="statusClickHandle" />
  8. <page-body>
  9. <list
  10. :id="listId"
  11. :filterParams="filterParams"
  12. statusResKey="server"
  13. @resStatisticsChange="resStatisticsChange" />
  14. </page-body>
  15. </div>
  16. </template>
  17. <script>
  18. import ResStatisticsV2Mixin from '@/mixins/resStatisticsV2Mixin'
  19. import List from './components/List'
  20. export default {
  21. name: 'PhoneIndex',
  22. components: {
  23. List,
  24. },
  25. mixins: [ResStatisticsV2Mixin],
  26. data () {
  27. return {
  28. listId: 'PhoneList',
  29. statusNormalList: ['running', 'ready'],
  30. }
  31. },
  32. }
  33. </script>