1.样式调整

2.宽度调整
This commit is contained in:
pan
2024-09-18 14:06:54 +08:00
parent efc8fc7a37
commit 799100b674
7 changed files with 57 additions and 59 deletions

View File

@@ -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)}); */
},
/**