This commit is contained in:
parent
faa5ed33b4
commit
110dea3969
|
|
@ -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([])
|
||||
|
|
|
|||
Loading…
Reference in New Issue