import { request, requestNoLoginAndTest } from './request' function emptyAreaList(page,size,data) { return requestNoLoginAndTest({ url: `official/emptyAreaList?page=`+page+`&size=`+size, method: 'POST', contentType: 'application/json;charset=UTF-8', data: data }) } function contactList(page,size,data) { return requestNoLoginAndTest({ url: `official/contactList?page=`+page+`&size=`+size, method: 'POST', contentType: 'application/json;charset=UTF-8', data: data }) } function voPage(data) { return requestNoLoginAndTest({ url: `official/voPage`, method: 'POST', contentType: 'application/json;charset=UTF-8', data: data }) } function getVo(data){ // http://219.152.50.209:81/api/app/official/asLeaseDispositionInfo/getVo return requestNoLoginAndTest({ url: `official/info`, method: 'POST', contentType: 'application/json;charset=UTF-8', data: data }) } export { emptyAreaList, contactList, voPage, getVo }