fix: iccid列适配
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 4m44s

This commit is contained in:
sexygoat
2026-04-24 11:48:52 +08:00
parent ceecc07ffc
commit 2d6b5d7903
4 changed files with 11 additions and 11 deletions

View File

@@ -154,16 +154,16 @@
border
style="width: 100%; margin-top: 16px"
>
<ElTableColumn label="ICCID" min-width="180" show-overflow-tooltip>
<ElTableColumn label="ICCID" width="220" show-overflow-tooltip>
<template #default="scope">
<div style="display: flex; align-items: center; gap: 8px">
<div style="display: flex; align-items: center; justify-content: space-between">
<ElButton type="primary" link @click="handleNavigateToCardInfo(scope.row.iccid)">
{{ scope.row.iccid }}
</ElButton>
<el-icon
class="copy-icon"
@click="handleCopyICCID(scope.row.iccid)"
style="cursor: pointer; color: #409eff"
style="cursor: pointer; color: var(--el-color-primary)"
>
<CopyDocument />
</el-icon>
@@ -171,7 +171,7 @@
</template>
</ElTableColumn>
<ElTableColumn prop="msisdn" label="MSISDN" min-width="120" />
<ElTableColumn prop="carrier_name" label="运营商" min-width="120" />
<ElTableColumn prop="carrier_name" label="运营商" min-width="120" showOverflowTooltip />
<ElTableColumn prop="slot_position" label="卡槽位置" width="130">
<template #default="scope">
<div style="display: flex; gap: 10px">
@@ -194,7 +194,7 @@
</ElTag>
</template>
</ElTableColumn>
<ElTableColumn label="实名认证策略" width="120">
<ElTableColumn label="实名认证策略" width="120" showOverflowTooltip>
<template #default="scope">
{{ getRealnamePolicyName(scope.row.realname_policy) }}
</template>