|
@@ -63,7 +63,7 @@
|
|
|
{{ task.jenkinsResultDO.totalNum }}
|
|
|
</el-form-item>
|
|
|
<el-form-item label="预发自动化url">
|
|
|
- <el-link :href="task.jenkinsResultDO.url" type="primary">{{ task.jenkinsResultDO.url.substring(0,14) + '...' }}</el-link>
|
|
|
+ <el-link v-if="task.jenkinsResultDO.url?true:false" :href="task.jenkinsResultDO.url" type="primary">{{ task.jenkinsResultDO.url.substring(0,14) + '...' }}</el-link>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="预发ns节点">
|
|
|
{{ task.jenkinsResultDO.preonlineNs }}
|
|
@@ -175,6 +175,7 @@ export default {
|
|
|
getCheckResult({ taskId: this.taskId })
|
|
|
.then(res => {
|
|
|
this.task = res.data
|
|
|
+ console.log(this.task)
|
|
|
if (this.task.checkResultJson) { this.task.checkResultJson = JSON.parse(this.task.checkResultJson) }
|
|
|
if (this.task.diffResultJson) { this.task.diffResultJson = JSON.parse(this.task.diffResultJson) }
|
|
|
if (this.task.checkResultJson.lineName) {
|