添加消息通知switch

This commit is contained in:
zoujiandong
2023-09-25 15:23:07 +08:00
parent eab9fbcb91
commit 2c99d357f7
8 changed files with 153 additions and 1 deletions
+17
View File
@@ -818,7 +818,24 @@ getLastInquiry(params) {
}
})
}
//获取配置
getConfig() {
return this.request({
url: `${this.baseUrl}/user/system`,
method: 'GET'
})
}
//获取配置
editConfig(params) {
return this.request({
url: `${this.baseUrl}/user/system`,
method: 'PUT',
data: {
...params
}
})
}