| | |
| | | </template> |
| | | |
| | | <script> |
| | | import FollowupStatistics from './components/FollowupStatistics.vue'; |
| | | import SatisfactionStatistics from './components/SatisfactionStatistics.vue'; |
| | | import FollowupStatistics from "./components/FollowupStatistics.vue"; |
| | | import SatisfactionStatistics from "./components/SatisfactionStatistics.vue"; |
| | | |
| | | export default { |
| | | name: 'StatisticsMain', |
| | | name: "Satisfaction", |
| | | components: { |
| | | FollowupStatistics, |
| | | SatisfactionStatistics |
| | | SatisfactionStatistics, |
| | | }, |
| | | data() { |
| | | return { |
| | | activeTab: 'followup' |
| | | activeTab: "followup", |
| | | }; |
| | | }, |
| | | methods: { |
| | | handleTabChange(tab) { |
| | | console.log('切换到:', tab.name); |
| | | } |
| | | } |
| | | console.log("切换到:", tab.name); |
| | | }, |
| | | }, |
| | | }; |
| | | </script> |
| | | |