|
@@ -233,6 +233,12 @@
|
|
|
<el-button v-if="projectOperationControl.uploadReport" type="primary" size="mini" @click="createReport()">
|
|
|
上传报告
|
|
|
</el-button>
|
|
|
+ <el-button type="primary" size="mini" @click="qualityEvaluate()">
|
|
|
+ 质量评估
|
|
|
+ </el-button>
|
|
|
+ <el-button type="primary" size="mini" @click="memberEvaluate()">
|
|
|
+ 人员评估
|
|
|
+ </el-button>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
|
|
@@ -824,6 +830,14 @@
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
+ qualityEvaluate(){
|
|
|
+ let qualityUrl='http://8.134.39.104:8080/nfsplatform/twpevaluate/skipAssess?project_code='+this.projectId;
|
|
|
+ window.open(qualityUrl, '_blank');
|
|
|
+ },
|
|
|
+ memberEvaluate(){
|
|
|
+ let memberUrl='http://8.134.39.104:7477/index.html#/index/evaluatetester/testeroftask/'+this.projectId;
|
|
|
+ window.open(memberUrl, '_blank');
|
|
|
+ },
|
|
|
handleDelete(index, id) {
|
|
|
this.$confirm('确认删除该任务?')
|
|
|
.then(_ => {
|