wip: example demo developing

This commit is contained in:
陈凯龙
2022-02-11 17:17:29 +08:00
parent 7ad46f828d
commit ef35bde801
13 changed files with 425 additions and 12 deletions

View File

@@ -9,3 +9,7 @@ export const getTableListApi = ({ params }: AxiosConfig) => {
list: TableData[]
}>({ url: '/example/list', method: 'get', params })
}
export const saveTableApi = ({ data }: AxiosConfig) => {
return request({ url: '/example/save', method: 'post', data })
}