You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
631 B
26 lines
631 B
![]()
5 months ago
|
import request from '@/utils/request'
|
||
|
// 月度报表 三包索赔单生效率统计表
|
||
|
export default {
|
||
|
// 查询分页列表
|
||
|
listPage: function(params) {
|
||
|
return request({
|
||
|
baseURL: "http://127.0.0.1:4523/m1/613533-0-default",
|
||
|
url: '/as/v1/claimFormRate/listPage',
|
||
|
method: 'post',
|
||
|
data: params,
|
||
|
headers: {
|
||
|
'Content-Type': 'application/json'
|
||
|
}
|
||
|
})
|
||
|
},
|
||
|
// 查询详情
|
||
|
getDetail: function(params) {
|
||
|
return request({
|
||
|
baseURL: "http://127.0.0.1:4523/m1/613533-0-default",
|
||
|
url: '/as/v1/claimFormRate/getDetail/' + params,
|
||
|
method: 'get',
|
||
|
|
||
|
})
|
||
|
}
|
||
|
}
|