diff --git a/src/components/app-list/app-card.vue b/src/components/app-list/app-card.vue index 309f9888533ee2e58a5556c6e6243a589d7b8c98..76ddf1892c98d97e5b924e858e5e080888f964c7 100644 --- a/src/components/app-list/app-card.vue +++ b/src/components/app-list/app-card.vue @@ -59,7 +59,11 @@ export default { this.$emit("delete-action", this.data); }, intoDetail() { - this.$router.push(`${this.detailsUrl}${this.data.app_id}`); + this.$router.push( + `${this.detailsUrl}${ + this.cardType == 0 ? this.data.app_id : this.data.deploy_id + }` + ); }, }, };