表单提交组件之间的校验

This commit is contained in:
熊丽君
2022-01-20 09:27:17 +08:00
parent eb90f0c1b6
commit 8be58b403d
7 changed files with 49 additions and 12 deletions

View File

@ -8,3 +8,19 @@ export function expertList(data) {
data,
})
}
// 专家详细信息
export function expertDetail(data) {
return request({
url: '/admin/v1/manage/expert/detail',
method: 'post',
data,
})
}
// 专家信息添加
export function expertAdd(data) {
return request({
url: '/admin/v1/manage/expert/add',
method: 'post',
data,
})
}