新增 隐私政策 用户协议 页面
This commit is contained in:
@@ -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,
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user