index.vue 705 B

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