AdjustCheckPlan.vue 216 B

1234567891011121314151617
  1. <template>
  2. <CheckPlan :check-type="4"/>
  3. </template>
  4. <script>
  5. import CheckPlan from './CheckPlan'
  6. export default {
  7. name: 'AdjustCheckPlan',
  8. components: {
  9. CheckPlan
  10. }
  11. }
  12. </script>
  13. <style scoped>
  14. </style>