1.样式调整
2.宽度调整
This commit is contained in:
@@ -249,19 +249,20 @@ export default {
|
||||
*/
|
||||
markRead(row) {
|
||||
let self = this
|
||||
self.$confirm('确认标记已读吗?', '提示', {
|
||||
let formData = JSON.parse(JSON.stringify(row))
|
||||
self.$set(formData, "states", 2)
|
||||
updateMessage(formData).then(response => {
|
||||
self.$modal.msgSuccess(response?.msg || '操作成功')
|
||||
store.dispatch('GetUserMsgCount').then(() => { })
|
||||
self.getList();
|
||||
}).catch((err) => {console.error(err)});
|
||||
/* self.$confirm('确认标记已读吗?', '提示', {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning'
|
||||
}).then(() => {
|
||||
let formData = JSON.parse(JSON.stringify(row))
|
||||
self.$set(formData, "states", 2)
|
||||
updateMessage(formData).then(response => {
|
||||
self.$modal.msgSuccess(response?.msg || '操作成功')
|
||||
store.dispatch('GetUserMsgCount').then(() => { })
|
||||
self.getList();
|
||||
})
|
||||
}).catch((err) => {console.error(err)});
|
||||
|
||||
}).catch((err) => {console.error(err)}); */
|
||||
},
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user