Blame view

admin-web-master/src/api/inr.js 757 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
26
27
28
29
30
  
  import request from '@/utils/request'
  export function tanGetAll(data) {
    return request({
      url: '/cereNegotiationDetails/queryByPage',
      method: 'post',
      data
    })
  }
  export function tanAdd(data) {
    return request({
      url: '/cereNegotiationDetails/add',
      method: 'post',
      data
    })
  }
  export function tanEdit(data) {
    return request({
      url: '/cereNegotiationDetails/edit',
      method: 'post',
      data
    })
  }
  export function tanDel(data) {
    return request({
      url: '/cereNegotiationDetails/deleteById',
      method: 'post',
      data
    })
  }
cc312afb   杨鑫   '最新'
31
32
33
34
35
36
37
38
39
  // 谈判列表导出
  export function excelQueryByPage(data) {
    return request({
      url: '/cereNegotiationDetails/excelQueryByPage',
      method: 'post',
      data,
      responseType:blob
    })
  }