mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-20 09:36:45 +08:00
Merge branch 'feature/【保全】' into release/0827
# Conflicts: # src/store/index.js # src/views/app/Home.vue
This commit is contained in:
69
src/api/ebiz/preserve/preserve.js
Normal file
69
src/api/ebiz/preserve/preserve.js
Normal file
@@ -0,0 +1,69 @@
|
||||
import request from '@/assets/js/utils/request'
|
||||
import getUrl from '@/assets/js/utils/get-url'
|
||||
|
||||
//搜索客户
|
||||
export function customerList(data) {
|
||||
return request({
|
||||
url: getUrl('/edor/customer/customerList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
//保单列表
|
||||
export function policyList(data) {
|
||||
return request({
|
||||
url: getUrl('/edor/policy/policyList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
//保全初始页信息查询(除续期账号变更外)
|
||||
export function policyInfo(data) {
|
||||
return request({
|
||||
url: getUrl('/edor/policy/policyInfo', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
//保全初始页信息查询-续期账号变更
|
||||
export function pcPolicyInfo(data) {
|
||||
return request({
|
||||
url: getUrl('/edor/policy/pcPolicyInfo', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
//变更提交/保全确认
|
||||
export function changeEdor(data) {
|
||||
return request({
|
||||
url: getUrl('/edor/edor/changeEdor', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
//保全进度查询列表
|
||||
export function queryEdorList(data) {
|
||||
return request({
|
||||
url: getUrl('/edor/edor/queryEdorList', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
//保全试算
|
||||
export function trial(data) {
|
||||
return request({
|
||||
url: getUrl('/edor/edor/trial', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
//保全详情查询
|
||||
export function queryConfirmDetail(data) {
|
||||
return request({
|
||||
url: getUrl('/edor/edor/queryConfirmDetail', 1),
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user