|
@@ -32,6 +32,7 @@
|
|
|
<GenDocument v-if="navIndex === 3 && !showDialog" />
|
|
<GenDocument v-if="navIndex === 3 && !showDialog" />
|
|
|
<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" />
|
|
|
<dialog-wrap
|
|
<dialog-wrap
|
|
|
v-if="showDialog"
|
|
v-if="showDialog"
|
|
|
:agentInfo="data"
|
|
:agentInfo="data"
|
|
@@ -66,8 +67,10 @@ import Answer from "./Answer.vue";
|
|
|
import Document from "./Document.vue";
|
|
import Document from "./Document.vue";
|
|
|
import GenPic from "./GenPic.vue";
|
|
import GenPic from "./GenPic.vue";
|
|
|
import GenDocument from "./GenDocument.vue";
|
|
import GenDocument from "./GenDocument.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 { defineComponent, ref, onMounted, inject, onBeforeUnmount } from "vue";
|
|
import { defineComponent, ref, onMounted, inject, onBeforeUnmount } from "vue";
|
|
|
export default defineComponent({
|
|
export default defineComponent({
|
|
|
components: {
|
|
components: {
|
|
@@ -80,6 +83,7 @@ export default defineComponent({
|
|
|
Document,
|
|
Document,
|
|
|
GenPic,
|
|
GenPic,
|
|
|
GenDocument,
|
|
GenDocument,
|
|
|
|
|
+ PicArticle,
|
|
|
DocumentAnswer,
|
|
DocumentAnswer,
|
|
|
DocumentQuestion
|
|
DocumentQuestion
|
|
|
},
|
|
},
|