PollingCheckJobOverTime.vue 263 B

1234567891011121314151617
  1. <template>
  2. <CheckJob :check-type="2" :receive-overtime="true" :status-list='[]'/>
  3. </template>
  4. <script>
  5. import CheckJob from './CheckJob'
  6. export default {
  7. name: 'PollingCheckJobOverTime',
  8. components: {
  9. CheckJob
  10. }
  11. }
  12. </script>
  13. <style scoped>
  14. </style>