12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- import {
- request,
- requestNoLoginAndTest
- } from './request'
- function emptyAreaList(page,size,data) {
- return requestNoLoginAndTest({
- url: `asLeaseDispositionIndex/emptyAreaList?page=`+page+`&size=`+size,
- method: 'POST',
- contentType: 'application/json;charset=UTF-8',
- data: data
- })
- }
- function contactList(page,size,data) {
- return requestNoLoginAndTest({
- url: `asLeaseDispositionIndex/contactList?page=`+page+`&size=`+size,
- method: 'POST',
- contentType: 'application/json;charset=UTF-8',
- data: data
- })
- }
- function voPage(data) {
- return requestNoLoginAndTest({
- url: `official/asLeaseDispositionInfo/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/asLeaseDispositionInfo/getVo`,
- method: 'POST',
- contentType: 'application/json;charset=UTF-8',
- data: data
- })
- }
- export {
- emptyAreaList,
- contactList,
- voPage,
- getVo
- }
|