Commit 8121118c authored by 张俊's avatar 张俊

Merge branch 'dev' of cloud.wodcloud.com:apaas/apaas-v3-ui into dev

parents 65518830 ea02ecda
...@@ -59,7 +59,11 @@ export default { ...@@ -59,7 +59,11 @@ export default {
this.$emit("delete-action", this.data); this.$emit("delete-action", this.data);
}, },
intoDetail() { 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
}`
);
}, },
}, },
}; };
......
...@@ -951,7 +951,7 @@ export default { ...@@ -951,7 +951,7 @@ export default {
}, },
detailItem(item) { detailItem(item) {
this.$router.push( this.$router.push(
`${this.detailsUrl + (this.type === 1 ? item.deploy_id : item.app.id)}` `${this.detailsUrl + (this.type === 1 ? item.deploy_id : item.app_id)}`
); );
}, },
soldUpItem(item) { soldUpItem(item) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment