| | |
| | | |
| | | export const getList = (current, size, params) => { |
| | | return request({ |
| | | url: '/api/land/land/list', |
| | | url: '/api/land/land/page', |
| | | method: 'get', |
| | | params: { |
| | | ...params, |
| | |
| | | |
| | | export const getDetail = (id) => { |
| | | return request({ |
| | | url: '/api/land/land/detail', |
| | | url: '/api/land/land/details', |
| | | method: 'get', |
| | | params: { |
| | | id |
| | |
| | | |
| | | export const add = (row) => { |
| | | return request({ |
| | | url: '/api/land/land/submit', |
| | | url: '/api/land/land/save', |
| | | method: 'post', |
| | | data: row |
| | | }) |
| | |
| | | userid |
| | | } |
| | | }) |
| | | } |
| | | } |
| | | |
| | | export const selectCount = () => { |
| | | return request({ |
| | | url: '/api/land/land/selectCount', |
| | | method: 'get', |
| | | params: {} |
| | | }) |
| | | } |