123456789101112131415161718192021222324 |
- <template>
- <sb-inspection-fill-page-base :filter="0" />
- </template>
- <script>
- import SbInspectionFillPageBase from '@/views/sb/inspection-fill/modules/SbInspectionFillPageBase'
- /**
- * 我的记录-查询为我自己填写的数据
- */
- export default {
- name: 'ZGSbRunFill',
- components: {
- SbInspectionFillPageBase
- },
- data () {
- return {
- }
- },
- created () {
- },
- methods: {}
- }
- </script>
|