Commit c536cd5a by liuyong

修改bug

1 parent 5c9cc0f6
......@@ -269,14 +269,14 @@ export default {
}
const prjId = this.selectRows[0].prjId;
this.$router.push(
`/main/reviewArchiFollowCheckDetails?prjId=${prjId}&type=1&state=1`,
`/main/reviewArchiFollowCheckDetails?prjId=${prjId}&type=1`,
() => {},
() => {}
);
},
check(row, type) {//查看点击
this.$router.push(
`/main/reviewArchiFollowCheckDetails?prjId=${row.prjId}&type=${type}&state=2`,
`/main/reviewArchiFollowCheckDetails?prjId=${row.prjId}&type=${type}`,
() => {},
() => {}
);
......
......@@ -64,12 +64,7 @@ export default {
this.prjId = this.$route.query.prjId;
this.getRightGraph(5);
const state = this.$route.query.state;
if(state == 2) {
this.getDetails();
}
},
methods: {
getDetails() {//查看详情,从表格跳转过来的
......
......@@ -64,17 +64,12 @@ export default {
this.prjId = this.$route.query.prjId;
this.getRightGraph(5);
const state = this.$route.query.state;
if(state == 2) {
this.getDetails();
}
},
methods: {
getDetails() {//查看详情,从表格跳转过来的
const params = {
archiPrjReviewEnum: 'SECURITY_ARCHITECTURE_CONFORMANCE',
archiPrjReviewEnum: 'DEPLOYMENT_ARCHITECTURE_REVIEW',
prjId: this.prjId,
}
queryReviewArchiFollowCheckRightSuggestionDetails(params).then(res => {
......
......@@ -65,16 +65,12 @@ export default {
this.getRightGraph(4);
const state = this.$route.query.state;
if(state == 2) {
this.getDetails();
}
},
methods: {
getDetails() {//查看详情,从表格跳转过来的
const params = {
archiPrjReviewEnum: 'SECURITY_ARCHITECTURE_CONFORMANCE',
archiPrjReviewEnum: 'TECHNICAL_ARCHITECTURE_CONFORMANCE',
prjId: this.prjId,
}
queryReviewArchiFollowCheckRightSuggestionDetails(params).then(res => {
......
......@@ -65,16 +65,12 @@ export default {
this.getRightGraph(2);
const state = this.$route.query.state;
if(state == 2) {
this.getDetails();
}
},
methods: {
getDetails() {//查看详情,从表格跳转过来的
const params = {
archiPrjReviewEnum: 'SECURITY_ARCHITECTURE_CONFORMANCE',
archiPrjReviewEnum: 'APPLICATION_ARCHITECTURE_CONFORMANCE',
prjId: this.prjId,
}
queryReviewArchiFollowCheckRightSuggestionDetails(params).then(res => {
......
......@@ -65,16 +65,12 @@ export default {
this.getRightGraph(3);
const state = this.$route.query.state;
if(state == 2) {
this.getDetails();
}
},
methods: {
getDetails() {//查看详情,从表格跳转过来的
const params = {
archiPrjReviewEnum: 'SECURITY_ARCHITECTURE_CONFORMANCE',
archiPrjReviewEnum: 'PHYSICAL_DATA_ARCHITECTURE_CONFORMANCE',
prjId: this.prjId,
}
queryReviewArchiFollowCheckRightSuggestionDetails(params).then(res => {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!