fuliqi
2024-01-24 29c1e7eb5ac16e90d8991a86c1c071bc312ec8d9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * @Author: wuyue
 * @Date: 2022-12-19 15:24:21
 * @LastEditTime: 2022-12-19 15:30:49
 * @LastEditors: wuyue
 * @Descripttion:
 * @version:
 */
import service from './service'
 
// 获取销售区域api
export class PriceManagementApi {
    getList = (params, showLoading = true) => {
      return service.post('/wly-warehouse-service/stock/query/queryStockAndRedPricePage', params, showLoading)
    }
 
    adjustredLinePrice = (params) => {
      return service.post('/awl-product-service/redLinePrice/adjust', params)
    }
}
export default new PriceManagementApi()