Commit 96d07672 authored by 黄奎's avatar 黄奎

新增js

parent bba95313
import request from '../../utils/request'
/**
* 获取同行客户分页列表
*
*/
export function GetCustomerPage(data) {
return request({
url: '/Customer/GetCustomerPage',
method: 'post',
data
})
}
/**
* 新增修改同业客户资料
*
*/
export function SetCustomer(data) {
return request({
url: '/Customer/SetCustomer',
method: 'post',
data
})
}
/**
* 根据编号删除同业客户资料
*
*/
export function RemoveCustomer(data) {
return request({
url: '/Customer/RemoveCustomer',
method: 'post',
data
})
}
/**
* 根据编号获取同业客户资料
*
*/
export function GetCustomer(data) {
return request({
url: '/Customer/GetCustomer',
method: 'post',
data
})
}
/**
* 同业客户资料审批
*
*/
export function AuditCustomer(data) {
return request({
url: '/Customer/AuditCustomer',
method: 'post',
data
})
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment