This commit is contained in:
BianLzhaoMin 2026-02-02 17:47:11 +08:00
parent faa5ed33b4
commit 110dea3969
1 changed files with 2 additions and 3 deletions

View File

@ -37,18 +37,18 @@
<el-table-column label="发送状态" align="center" width="120">
<template #default="{ row }">
<el-tag :type="row.sendStatus === '发送成功' ? 'success' : 'danger'">
{{ row.sendStatus === '发送成功' ? '发送成功' : '发送失败' }}
{{ row.sendStatus === '发送成功' ? '发送成功' : row.sendStatus }}
</el-tag>
</template>
</el-table-column>
<el-table-column label="操作" align="center" width="120" fixed="right">
<template #default="{ row }">
<el-button
v-if="row.sendStatus !== '发送成功'"
link
type="primary"
icon="Refresh"
@click="handleResend(row)"
v-if="row.sendStatus !== '发送成功'"
>
重新发送
</el-button>
@ -73,7 +73,6 @@ import {
} from '@/api/sMsSendManage/loopSend.js'
const { proxy } = getCurrentInstance()
const recordsTableRef = ref(null)
const detailLoading = ref(false)
const detailList = ref([])