Blame view

admin-web-master/src/api/commodityLease.js 1.22 KB
900ab311   李宇   1
1
  import request from '@/utils/request'
4373acf5   wesley88   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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
  // 上传合同
  
  export function miniioupload(data) {
    return request({
      url: '/miniio/upload',
      method: 'post',
      data,
      headers: {
        'Content-Type': 'multipart/form-data'
      }
    })
  }
  // 查看详情
  
  export function queryByContractcontractNumber(data) {
    return request({
      url: '/cereContractInformation/queryByContract',
      method: 'post',
      data
    })
  }
  // 修改合同
  
  export function cereContractInformation(data) {
    return request({
      url: '/cereContractInformation/update',
      method: 'post',
      data
    })
  }
  // 修改预警
  
  export function cereReminderSetedit(data) {
    return request({
      url: '/cereReminderSet/edit',
      method: 'post',
      data
    })
  }
  // 获取预警
  
  export function cereReminderSet(data) {
    return request({
      url: '/cereReminderSet/queryByType',
      method: 'post',
      data
    })
  }
900ab311   李宇   1
50
51
52
53
  
  // 添加告知单
  
  export function cereTerminateNotice(data) {
4373acf5   wesley88   1
54
55
56
57
58
    return request({
      url: '/cereTerminateNotice/add',
      method: 'post',
      data
    })
726bc80b   杨鑫   最新
59
60
61
62
63
64
65
66
67
68
69
70
71
72
  }
  
  // 上传minio
  
  export function uploadQuestion(data) {
    return request({
      url: '/miniio/uploadQuestion',
      method: 'post',
  	data,
  	headers: {
  	  'Content-Type': 'multipart/form-data'
  	}
      
    })
4373acf5   wesley88   1
73
  }