1234567891011121314151617181920212223242526272829 |
- <script>
- import AiListItem from "@/pages/ie/entry-ai-list/components/ai-list-item.vue";
- import {useInjectMajorTreeService} from "@/pages/ie/hooks/useMajorTreeInjection";
- import {useTransfer} from "@/hooks/useTransfer";
- export default {
- name: "multiple-list-item",
- extends: AiListItem,
- setup() {
- const {majorTree} = useInjectMajorTreeService()
- const {transferTo} = useTransfer()
- return {
- majorTree,
- transferTo
- }
- },
- methods: {
- goDetail() {
- const path = '/pages/ie/entry-analysis/analysis-result-voluntary'
- this.transferTo(path, this.item, null, true)
- }
- }
- }
- </script>
- <style scoped>
- </style>
|