|
@@ -24,7 +24,7 @@
|
|
|
</el-descriptions-item>
|
|
|
<el-descriptions-item>
|
|
|
<template slot="label"> 发送状态 </template>
|
|
|
- {{ info.sendStatus }}
|
|
|
+ {{ { OK: '成功', NO: '失败' }[info.sendStatus] }}
|
|
|
</el-descriptions-item>
|
|
|
<el-descriptions-item>
|
|
|
<template slot="label"> 发送时间 </template>
|
|
@@ -32,7 +32,7 @@
|
|
|
</el-descriptions-item>
|
|
|
<el-descriptions-item>
|
|
|
<template slot="label"> 回执状态 </template>
|
|
|
- {{ info.receiptStatus }}
|
|
|
+ {{ { OK: '成功', NO: '失败' }[info.receiptStatus] }}
|
|
|
</el-descriptions-item>
|
|
|
<el-descriptions-item>
|
|
|
<template slot="label"> 回执时间 </template>
|