AdminSbInspectionFill.vue 410 B

123456789101112131415161718192021222324
  1. <template>
  2. <sb-inspection-fill-page-base :filter="0" />
  3. </template>
  4. <script>
  5. import SbInspectionFillPageBase from '@/views/sb/inspection-fill/modules/SbInspectionFillPageBase'
  6. /**
  7. * 我的记录-查询为我自己填写的数据
  8. */
  9. export default {
  10. name: 'ZGSbRunFill',
  11. components: {
  12. SbInspectionFillPageBase
  13. },
  14. data () {
  15. return {
  16. }
  17. },
  18. created () {
  19. },
  20. methods: {}
  21. }
  22. </script>