【GFRS-3645】接口文件提交

This commit is contained in:
liu.xiaofeng@ebiz-digits.com
2023-08-09 11:14:52 +08:00
parent f96cc01b74
commit 8164ff8fc7

View File

@@ -0,0 +1,19 @@
import request from '@/assets/js/utils/request'
import getUrl from '@/assets/js/utils/get-url'
// 银保代理人签署信息查询接口
export function getContractInfo(data) {
return request({
url: getUrl('/agent/enterYB/getContractInfo', 1),
method: 'post',
data
})
}
// 银保代理人签署信息接收接口
export function putContractInfo(data) {
return request({
url: getUrl('/agent/enterYB/getContractInfo', 1),
method: 'post',
data
})
}