|
@@ -33,6 +33,7 @@
|
|
|
<DocumentAnswer v-if="navIndex === 4 && !showDialog" />
|
|
<DocumentAnswer v-if="navIndex === 4 && !showDialog" />
|
|
|
<DocumentQuestion v-if="navIndex === 5 && !showDialog" />
|
|
<DocumentQuestion v-if="navIndex === 5 && !showDialog" />
|
|
|
<PicArticle v-if="navIndex === 6 && !showDialog" />
|
|
<PicArticle v-if="navIndex === 6 && !showDialog" />
|
|
|
|
|
+ <Analysis v-if="navIndex === 7 && !showDialog" />
|
|
|
<dialog-wrap
|
|
<dialog-wrap
|
|
|
v-if="showDialog"
|
|
v-if="showDialog"
|
|
|
:agentInfo="data"
|
|
:agentInfo="data"
|
|
@@ -70,7 +71,7 @@ import GenDocument from "./GenDocument.vue";
|
|
|
import PicArticle from "./PicArticle.vue";
|
|
import PicArticle from "./PicArticle.vue";
|
|
|
import DocumentAnswer from "./DocumentAnswer.vue";
|
|
import DocumentAnswer from "./DocumentAnswer.vue";
|
|
|
import DocumentQuestion from "./DocumentQuestion.vue";
|
|
import DocumentQuestion from "./DocumentQuestion.vue";
|
|
|
-
|
|
|
|
|
|
|
+import Analysis from "./Analysis.vue";
|
|
|
import { defineComponent, ref, onMounted, inject, onBeforeUnmount } from "vue";
|
|
import { defineComponent, ref, onMounted, inject, onBeforeUnmount } from "vue";
|
|
|
export default defineComponent({
|
|
export default defineComponent({
|
|
|
components: {
|
|
components: {
|
|
@@ -85,7 +86,8 @@ export default defineComponent({
|
|
|
GenDocument,
|
|
GenDocument,
|
|
|
PicArticle,
|
|
PicArticle,
|
|
|
DocumentAnswer,
|
|
DocumentAnswer,
|
|
|
- DocumentQuestion
|
|
|
|
|
|
|
+ DocumentQuestion,
|
|
|
|
|
+ Analysis
|
|
|
},
|
|
},
|
|
|
setup() {
|
|
setup() {
|
|
|
const { config, helper } = inject("$global");
|
|
const { config, helper } = inject("$global");
|