| | |
| | | <div class="tit"> |
| | | 任务ID:<span>{{item.id}}</span> |
| | | </div> |
| | | 发送人数:{{item.recipients.length}} |
| | | 发送人数:{{item.recipients?item.recipients.length:0}} |
| | | </template> |
| | | <p> |
| | | {{item.content}} |
| | | </p> |
| | | <template #actions> |
| | | <div> |
| | | 接收号码:<span>{{item.recipients.map(i=>i.realName + '(' + i.phone.replace(/(\d{3})\d{4}(\d+)/, "$1****$2") + ')').join('、')}}</span> |
| | | 接收号码:<span>{{item.recipients?item.recipients.map(i=>i.realName + '(' + i.phone.replace(/(\d{3})\d{4}(\d+)/, "$1****$2") + ')').join('、'):'暂无'}}</span> |
| | | </div> |
| | | <div> |
| | | <a-button type="primary" @click="viewDetails(item)">查看详情</a-button> |