mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-10 02:16:44 +08:00
23 lines
645 B
JavaScript
23 lines
645 B
JavaScript
import request from '@/assets/js/utils/request'
|
|
import getUrl from '@/assets/js/utils/get-url'
|
|
|
|
// 我的资料-基本信息,账户信息,影像资料等查询详细数据信息的接口
|
|
export function getAllowanceBaseDetail(data) {
|
|
return request({
|
|
url: getUrl('/agent/allowanceBase/getAllowanceBaseDetail', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 我的资料-基本信息,账户信息,影像资料等点击下一步操作时调用的保存接口
|
|
export function saveOrUpdateAllowanceBase(data) {
|
|
return request({
|
|
url: getUrl('/agent/allowanceBase/saveOrUpdateAllowanceBase', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
|