Blame view

admin-web-master/src/api/rentalMan.js 461 Bytes
3f535f30   杨鑫   '初始'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  import request from '@/utils/request'
  // 出租管理
  export function rentalGetAll(data) {
    return request({
      url: '/cereLeasingInformation/queryByPage',
      method: 'post',
      data
    })
  }
  
  export function rentalDel(data) {
    return request({
      url: '/cereLeasingInformation/deleteById',
      method: 'post',
      data
    })
  }
  
  export function rentalAdd(data) {
    return request({
      url: '/cereLeasingInformation/add',
      method: 'post',
      data
    })
  }