通知记录中操作栏中的发送通知按钮点击无反应 已修改
This commit is contained in:
parent
f4c56dddd1
commit
3649ac6ddd
@ -271,11 +271,28 @@ export default {
|
||||
},
|
||||
// 发送通知
|
||||
send(data) {
|
||||
|
||||
|
||||
this.$confirm('是否发送本条通知信息', '提示', {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning'
|
||||
}).then(() => {
|
||||
// 确定
|
||||
getSendNotifyApi({id: data}).then(res => {
|
||||
if (res.code === 200) {
|
||||
this.$message.success('发送成功');
|
||||
this.getList()
|
||||
}
|
||||
else {
|
||||
this.$message.error(res.msg);
|
||||
}
|
||||
})
|
||||
}).catch(() => {
|
||||
//取消
|
||||
});
|
||||
|
||||
|
||||
},
|
||||
|
||||
getUserByRoles() {
|
||||
|
Loading…
Reference in New Issue
Block a user