Blame view

src/api/api.js 570 Bytes
2c62a85d   岑健浩   前端代码分支
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  
  const baseUrl = '/api';
  
  export const addSNsApi = {
      method: 'post',
      url: baseUrl + '/sn/add_sn'
  }
  
  export const getSNsApi = {
      method: 'get',
      url: baseUrl + '/sn/get_sn'
  }
  
  export const deleteSNsApi = {
      method: 'post',
      url: baseUrl + '/sn/delete_sn'
  }
  
0ec38cbe   徐振旌   1、新增前端登陆、新增条件查询
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  export const getSNsByConditionApi = {
      method: 'post',
      url: baseUrl + '/sn/get_by_condition_sn'
  }
  
  export const listProjectSelectApi = {
      method: 'post',
      url: baseUrl + '/sn/list_product_select'
  }
  
  export const loginApi = {
      method: 'post',
      url: baseUrl + '/auth/login'
  }