| | |
| | | <!--点击站点 跳转至风险模型页面 --> |
| | | <script> |
| | | import SubFlightInspection from '@/views/exception/components/SubFlightInspection.vue' |
| | | import CompFlightInspection from '@/views/exception/components/CompFlightInspection.vue' |
| | | |
| | | export default { |
| | | components: { |
| | | SubFlightInspection |
| | | CompFlightInspection |
| | | }, |
| | | data() { |
| | | return { |
| | | siteName: '', |
| | | month: '', |
| | | // 页标题 |
| | | title:'' |
| | | } |
| | | }, |
| | | watch: {}, |
| | |
| | | vm.siteName = to.params.siteName |
| | | vm.month = to.params.month |
| | | vm.$nextTick(() => { |
| | | // console.log('midd11', vm.siteName, vm.month); |
| | | }) |
| | | }) |
| | | }, |
| | |
| | | </template> |
| | | </el-page-header> |
| | | |
| | | <SubFlightInspection :site-name="siteName" :month="month"> </SubFlightInspection> |
| | | <CompFlightInspection :site-name="siteName" :month="month" :show-all="false"> </CompFlightInspection> |
| | | |
| | | </template> |
| | | |
| | | <style scoped> |