This commit is contained in:
yanran200730
2022-04-06 11:59:14 +08:00
parent 7c413fa9b2
commit e67d711db3
6 changed files with 397 additions and 1099 deletions

View File

@@ -14,7 +14,7 @@
</template>
</ai-list>
<component v-else :is="currentComp" :instance="instance" :dict="dict"
:processType="currentTab.value" :row="row"></component>
:processType="currentTab.value" :row="row" @back="back" ></component>
</section>
</template>
@@ -59,6 +59,10 @@ export default {
this.row = params.row
this.currentComp = params.comp
this.$router.push({query: {processType: this.currentTab.value}})
},
back () {
this.$router.push({query: {}})
}
},
created() {