| | |
| | | import ClueReportConclusion from './components/ClueReportConclusion.vue'; |
| | | import ClueReportQuestion from './components/ClueReportQuestion.vue'; |
| | | import { useMessageBoxTip } from '@/composables/messageBox'; |
| | | import clueApi from "@/api/clue/clueApi"; |
| | | import clueApi from '@/api/clue/clueApi'; |
| | | |
| | | export default { |
| | | components: { |
| | |
| | | }, |
| | | show: Boolean |
| | | }, |
| | | emits: ['update:show'], |
| | | emits: ['update:show', 'pushed'], |
| | | data() { |
| | | return {}; |
| | | }, |
| | |
| | | }); |
| | | }, |
| | | pushClue() { |
| | | return clueApi.pushClue(this.clueData.cid) |
| | | return clueApi.pushClue(this.clueData.cid).then((res) => { |
| | | this.$emit('pushed', res); |
| | | }); |
| | | } |
| | | } |
| | | }; |