feat: 测试用例列表增加预览

This commit is contained in:
wenyann 2020-10-10 15:28:43 +08:00
parent ab6b566cb3
commit 1771cd4f82
1 changed files with 7 additions and 2 deletions

View File

@ -35,7 +35,6 @@
@filter-change="filter"
@select-all="handleSelectAll"
@select="handleSelectionChange"
@row-click="showDetail"
row-key="id"
class="test-content adjust-table">
<el-table-column
@ -54,7 +53,13 @@
<el-table-column
prop="name"
:label="$t('commons.name')"
show-overflow-tooltip>
show-overflow-tooltip
>
<template v-slot:default="scope">
<div @mouseover="showDetail(scope.row)">
<p>{{ scope.row.name }}</p>
</div>
</template>
</el-table-column>
<el-table-column
prop="priority"