Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
16a4bd9cb5
|
@ -5,7 +5,7 @@
|
||||||
<ms-table-button :is-tester-permission="true" v-if="!showMyCreator" icon="el-icon-view"
|
<ms-table-button :is-tester-permission="true" v-if="!showMyCreator" icon="el-icon-view"
|
||||||
content="我创建的评审" @click="searchMyCreator"/>
|
content="我创建的评审" @click="searchMyCreator"/>
|
||||||
<ms-table-button :is-tester-permission="true" v-if="showMyCreator" icon="el-icon-view"
|
<ms-table-button :is-tester-permission="true" v-if="showMyCreator" icon="el-icon-view"
|
||||||
content="我待审核的评审" @click="searchMyCreator"/>
|
content="待我评审" @click="searchMyCreator"/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -154,6 +154,7 @@
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
openTestCaseRelevanceDialog() {
|
openTestCaseRelevanceDialog() {
|
||||||
|
this.getProject();
|
||||||
this.initData();
|
this.initData();
|
||||||
this.dialogFormVisible = true;
|
this.dialogFormVisible = true;
|
||||||
},
|
},
|
||||||
|
@ -219,7 +220,6 @@
|
||||||
initData() {
|
initData() {
|
||||||
this.getCaseNames();
|
this.getCaseNames();
|
||||||
this.getAllNodeTreeByPlanId();
|
this.getAllNodeTreeByPlanId();
|
||||||
this.getProject();
|
|
||||||
},
|
},
|
||||||
refresh() {
|
refresh() {
|
||||||
this.close();
|
this.close();
|
||||||
|
|
|
@ -154,6 +154,7 @@ export default {
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
openTestReviewRelevanceDialog() {
|
openTestReviewRelevanceDialog() {
|
||||||
|
this.getProject();
|
||||||
this.initData();
|
this.initData();
|
||||||
this.dialogFormVisible = true;
|
this.dialogFormVisible = true;
|
||||||
},
|
},
|
||||||
|
@ -217,7 +218,6 @@ export default {
|
||||||
initData() {
|
initData() {
|
||||||
this.getReviews();
|
this.getReviews();
|
||||||
this.getAllNodeTreeByPlanId();
|
this.getAllNodeTreeByPlanId();
|
||||||
this.getProject();
|
|
||||||
},
|
},
|
||||||
refresh() {
|
refresh() {
|
||||||
this.close();
|
this.close();
|
||||||
|
@ -225,7 +225,7 @@ export default {
|
||||||
getAllNodeTreeByPlanId() {
|
getAllNodeTreeByPlanId() {
|
||||||
if (this.reviewId) {
|
if (this.reviewId) {
|
||||||
let param = {
|
let param = {
|
||||||
testPlanId: this.reviewId,
|
reviewId: this.reviewId,
|
||||||
projectId: this.projectId
|
projectId: this.projectId
|
||||||
};
|
};
|
||||||
this.result = this.$post("/case/node/list/all/review", param , response => {
|
this.result = this.$post("/case/node/list/all/review", param , response => {
|
||||||
|
|
Loading…
Reference in New Issue