RepairReportSbAll.vue 328 B

12345678910111213141516171819202122
  1. <template>
  2. <RepairReport :title="title" :search-type="2"/>
  3. </template>
  4. <script>
  5. import RepairReport from './RepairReport'
  6. export default {
  7. name: 'RepairReportSbAll',
  8. components: {
  9. RepairReport
  10. },
  11. data () {
  12. return {
  13. title: '设备故障次数按月统计'
  14. }
  15. }
  16. }
  17. </script>
  18. <style scoped>
  19. </style>