style(测试计划): 报告-ID超出省略

--bug=1050474 --user=吕梦园
https://www.tapd.cn/55049933/bugtrace/bugs/view/1155049933001050474
This commit is contained in:
teukkk 2024-12-17 11:35:36 +08:00 committed by Craftsman
parent fbed859686
commit 5edff221c2
1 changed files with 10 additions and 5 deletions

View File

@ -11,7 +11,7 @@
>
</div>
<div
v-if="['name','planName','requestTime', 'bugCount', 'executeUser', 'moduleName'].includes(column.dataIndex as string)"
v-if="['name','num','planName','requestTime', 'bugCount', 'executeUser', 'moduleName'].includes(column.dataIndex as string)"
class="list-column"
:style="{ width: `${column.width}px` }"
>
@ -23,14 +23,19 @@
item[column.dataIndex as string] === '' || item[column.dataIndex as string] === undefined || item[column.dataIndex as string] === null
"
>
<div class="one-line-text w-full">
<MsButton
v-if="column.dataIndex === 'num'"
type="text"
class="one-line-text !block w-full"
@click="toDetail(item)"
>
{{ item.num }}
</MsButton>
<div v-else class="one-line-text w-full">
{{ item[column.dataIndex as string] }}
</div>
</a-tooltip>
</div>
<div v-if="column.dataIndex === 'num'" class="list-column" :style="{ width: `${column.width}px` }">
<MsButton type="text" @click="toDetail(item)">{{ item.num }}</MsButton>
</div>
<div v-if="column.dataIndex === 'priority'" class="list-column" :style="{ width: `${column.width}px` }">
<CaseLevel :case-level="item.priority" />
</div>