|
@@ -9,13 +9,13 @@ import { mapGetters } from "vuex";
|
|
|
const planJumpUrl = window.__systemConf.planJumpUrl;
|
|
|
export default {
|
|
|
computed: {
|
|
|
- ...mapGetters("layout", ["projectId", "projectName"]),
|
|
|
+ ...mapGetters("layout", ["projectId", "projectName", "group_code"]),
|
|
|
},
|
|
|
data() {
|
|
|
return {};
|
|
|
},
|
|
|
created() {
|
|
|
- window.open(`${planJumpUrl}?projectId=${this.projectId}&projectName=${this.projectName}`);
|
|
|
+ window.open(`${planJumpUrl}?projectId=${this.projectId}&projectName=${this.projectName}&gco=${this.group_code}`);
|
|
|
},
|
|
|
};
|
|
|
</script>
|