拓扑图配置

This commit is contained in:
仲么了
2024-01-17 14:22:34 +08:00
parent 0068eace86
commit 694b5b181d
15 changed files with 395 additions and 79 deletions

View File

@@ -4,7 +4,6 @@ import createAxios from '@/utils/request'
* 查询app个人中心信息详情
* @param id
*/
export const queryAppInfo = (type: string) => {
let form = new FormData()
form.append('type', type)
@@ -17,3 +16,15 @@ export const queryAppInfo = (type: string) => {
data: form
})
}
/**
* 新增app基础信息
**/
export const addAppInfo = (data: { type: string, content: string }) => {
return createAxios({
url: '/cs-system-boot/appinfo/addAppInfo',
method: 'post',
data: data
})
}