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.
38 lines
976 B
38 lines
976 B
import request from '@/utils/request'
|
|
|
|
export default {
|
|
// 查询分页列表
|
|
listPage: function(params) {
|
|
return request({
|
|
url: '/riskcenter/v1/loanhomevisitfileexamine/homeInforListPage',
|
|
method: 'post',
|
|
data: params,
|
|
headers: { 'Content-Type': 'application/json' }
|
|
})
|
|
},
|
|
// 回显
|
|
fetchDetailsBySid: function(data) {
|
|
return request({
|
|
url: '/riskcenter/v1/loanhomevisitfileexamine/fetchDetailsBySid/' + data,
|
|
method: 'get'
|
|
})
|
|
},
|
|
// 保存
|
|
save: function(params) {
|
|
return request({
|
|
url: '/riskcenter/v1/loanhomevisitfileexamine/save',
|
|
method: 'post',
|
|
data: params,
|
|
headers: { 'Content-Type': 'application/json' }
|
|
})
|
|
},
|
|
// 推送
|
|
pushMessageToSale: function(params) {
|
|
return request({
|
|
url: '/riskcenter/v1/loanhomevisitfileexamine/pushMessageToSale',
|
|
method: 'post',
|
|
data: params,
|
|
headers: { 'Content-Type': 'application/json' }
|
|
})
|
|
}
|
|
}
|
|
|