This commit is contained in:
BianLzhaoMin 2026-02-04 09:54:55 +08:00
parent ac5e691134
commit 71b9ada4df
1 changed files with 22 additions and 2 deletions

View File

@ -44,8 +44,28 @@
label="提交状态"
prop="submitStatus"
/>
<el-table-column width="180" align="center" label="发送时间" prop="sendTime" />
<el-table-column label="发送状态" align="center" width="120">
<el-table-column width="180" align="center" prop="sendTime">
<template #header>
<div
style="
display: flex;
align-items: center;
justify-content: center;
gap: 5px;
"
>
<span>回执时间</span>
<el-tooltip
effect="dark"
placement="top-start"
content="短信运营商回执时间"
>
<el-icon style="cursor: pointer"><InfoFilled /></el-icon>
</el-tooltip>
</div>
</template>
</el-table-column>
<el-table-column label="回执状态" align="center" width="120">
<template #default="{ row }">
<el-tag :type="row.sendStatus === '发送成功' ? 'success' : 'danger'">
{{ row.sendStatus === '发送成功' ? '发送成功' : row.sendStatus }}