Blame view

admin-web-master/src/api/stocksForewarn.js 373 Bytes
3f535f30   杨鑫   '初始'
1
  // import request from '@/api/map'
a4aeeb1e   杨鑫   '最新'
2
  import request from '@/utils/request2'
3f535f30   杨鑫   '初始'
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  //库存阈值设置
  export  function setThreshold(data) {
    return request({
      url: '/product/thresholdSetting',
      method: 'post',
      data
    })
  }
  //库存预警
  export  function inventoryAlert(data) {
    return request({
      url: '/product/inventoryAlert',
      method: 'post',
      data
    })
  }