You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
reagent_manage/vue/src/api/stock/current.js

16 lines
448 B

import request from "@/config/request"
6 years ago
export const baseUrl = '/stock/current'
6 years ago
export function search(data) {
return request.post(`${baseUrl}/search`, data).then(({data}) => data.data)
6 years ago
}
export function getDetail(cids) {
return request.get(`${baseUrl}/getDetail?cids=${cids}`).then(({data}) => data.data)
6 years ago
}
export function getDetailById(ids) {
return request.get(`${baseUrl}/getDetailById?ids=${ids}`).then(({data}) => data.data)
6 years ago
}