fix(UI 自动化): 测试计划表头宽度调整

--bug=1016149 --user=张大海 【测试跟踪】测试计划-UI测试用例-关联测试用例-弹弹标题换行了 https://www.tapd.cn/55049933/s/1235287
This commit is contained in:
zhangdahai112 2022-08-29 18:54:12 +08:00 committed by zhangdahai112
parent e85b61d7b7
commit 3d32cfc966
1 changed files with 3 additions and 3 deletions

View File

@ -27,10 +27,10 @@
<el-table-column v-if="customNum" prop="customNum" label="ID" sortable="custom" <el-table-column v-if="customNum" prop="customNum" label="ID" sortable="custom"
show-overflow-tooltip> show-overflow-tooltip>
</el-table-column> </el-table-column>
<el-table-column prop="name" :label="$t('api_test.automation.scenario_name')" sortable="custom" min-width="100px" <el-table-column prop="name" :label="$t('api_test.automation.scenario_name')" sortable="custom" min-width="120px"
show-overflow-tooltip/> show-overflow-tooltip/>
<el-table-column prop="level" :label="$t('api_test.automation.case_level')" sortable="custom" min-width="100px" <el-table-column prop="level" :label="$t('api_test.automation.case_level')" sortable="custom" min-width="120px"
show-overflow-tooltip> show-overflow-tooltip>
<template v-slot:default="scope"> <template v-slot:default="scope">
<priority-table-item :value="scope.row.level" ref="level"/> <priority-table-item :value="scope.row.level" ref="level"/>
@ -50,7 +50,7 @@
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="stepTotal" :label="$t('api_test.automation.step')" show-overflow-tooltip/> <el-table-column prop="stepTotal" :label="$t('api_test.automation.step')" show-overflow-tooltip/>
<el-table-column prop="lastResult" :label="$t('api_test.automation.last_result')" sortable="custom"> <el-table-column prop="lastResult" :label="$t('api_test.automation.last_result')" sortable="custom" min-width="120px">
<template v-slot:default="{row}"> <template v-slot:default="{row}">
<el-link type="success" @click="showReport(row)" v-if="row.lastResult === 'Success'"> <el-link type="success" @click="showReport(row)" v-if="row.lastResult === 'Success'">
{{ $t('api_test.automation.success') }} {{ $t('api_test.automation.success') }}