首页修改

This commit is contained in:
仲么了
2023-08-23 16:22:08 +08:00
parent cc63cda4e7
commit 79d6771aad
34 changed files with 788 additions and 403 deletions

View File

@@ -35,5 +35,32 @@ export const queryAppInfoByType = (type) => {
}
/**
* 查看用户消息推送配置
*/
//
export const queryUserPushConfig = () => {
return request({
url: '/cs-system-boot/appInfoSet/queryByUserId',
method: 'post',
header: {
'Content-Type': 'application/json',
},
data: {},
})
}
/**
* 更新消息推送配置
*/
export const updatePushConfig = (params) => {
return request({
url: '/cs-system-boot/appInfoSet/update',
method: 'post',
header: {
'Content-Type': 'application/json',
},
data: params,
})
}