| 12345678910111213141516171819202122 |
- <template>
- <RepairReport :title="title" :search-type="2"/>
- </template>
- <script>
- import RepairReport from './RepairReport'
- export default {
- name: 'RepairReportSbAll',
- components: {
- RepairReport
- },
- data () {
- return {
- title: '设备故障次数按月统计'
- }
- }
- }
- </script>
- <style scoped>
- </style>
|