fix(任务中心): 任务中的跳转链接建议显示在场景名称,而不是“ 场景测试用例”
--bug=1008142 --user=王孝刚 【任务中心】任务中的跳转链接建议显示在场景名称,而不是“ 场景测试用例” https://www.tapd.cn/55049933/s/1071728
This commit is contained in:
parent
88acfb0972
commit
473e6577c5
|
@ -88,15 +88,18 @@
|
||||||
<div class="report-container">
|
<div class="report-container">
|
||||||
<div v-for="item in taskData" :key="item.id" style="margin-bottom: 5px;">
|
<div v-for="item in taskData" :key="item.id" style="margin-bottom: 5px;">
|
||||||
<el-card class="ms-card-task" @click.native="showReport(item)">
|
<el-card class="ms-card-task" @click.native="showReport(item)">
|
||||||
<span class="ms-task-name-width"><el-link type="primary">
|
<span class="ms-task-name-width">
|
||||||
{{ getModeName(item.executionModule) }} </el-link>: {{ item.name }}
|
{{ getModeName(item.executionModule) }} : <el-link type="primary"> {{ item.name }} </el-link>
|
||||||
</span>
|
</span>
|
||||||
<el-button size="mini" class="ms-task-stop" @click.stop @click="stop(item)" v-if="showStop(item.executionStatus)">
|
<el-button size="mini" class="ms-task-stop" @click.stop @click="stop(item)"
|
||||||
|
v-if="showStop(item.executionStatus)">
|
||||||
{{ $t('report.stop_btn') }}
|
{{ $t('report.stop_btn') }}
|
||||||
</el-button>
|
</el-button>
|
||||||
<br/>
|
<br/>
|
||||||
<span>
|
<span>
|
||||||
执行器:{{ item.actuator }} 由 {{ item.executor }} {{ item.executionTime | timestampFormatDate }} {{ getMode(item.triggerMode) }}
|
执行器:{{ item.actuator }} 由 {{ item.executor }} {{
|
||||||
|
item.executionTime | timestampFormatDate
|
||||||
|
}} {{ getMode(item.triggerMode) }}
|
||||||
</span>
|
</span>
|
||||||
<br/>
|
<br/>
|
||||||
<el-row>
|
<el-row>
|
||||||
|
|
Loading…
Reference in New Issue