1234567891011121314151617 |
- <template>
- <CheckJob :check-type="2" :receive-overtime="true" :status-list='[]'/>
- </template>
- <script>
- import CheckJob from './CheckJob'
- export default {
- name: 'PollingCheckJobOverTime',
- components: {
- CheckJob
- }
- }
- </script>
- <style scoped>
- </style>
|