新增 隐私政策 用户协议 页面

This commit is contained in:
GGJ
2024-03-18 09:12:43 +08:00
parent 4be2b5b2cd
commit 58937f0b87
4 changed files with 145 additions and 3 deletions

View File

@@ -12,3 +12,24 @@ export function dictDataCache() {
url: '/system-boot/dictType/dictDataCache'
})
}
export const queryAppInfo = (type) => {
let form = new FormData()
form.append('type', type)
return createAxios({
url: '/cs-system-boot/appinfo/queryAppInfoByType',
method: 'post',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
},
data: form,
})
}
export const queryAppInfoByType = (type) => {
let form = new FormData()
form.append('type', type)
return createAxios({
url: '/cs-system-boot/appinfo/queryAppInfoByType',
method: 'post',
data: form,
})
}