plm前端
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.

17 lines
803 B

2 years ago
2 years ago
  1. import {createAPI} from "../../utils/httpRequest";
  2. export const queryQuoteDetail = (data) => createAPI(`/quote/detail`,'post',data)
  3. export const queryQuoteDetailByPage = (data) => createAPI(`/quote/detail/${data.no}/${data.size}`,'post',data)
  4. export const saveQuoteDetail = (data) => createAPI(`/quote/detail/save`,'post',data)
  5. export const updateQuoteDetail = (data) => createAPI(`/quote/detail/update`,'post',data)
  6. export const deleteQuoteDetail = (data) => createAPI(`/quote/detail/remove/${data.id}`,'post',data)
  7. export const queryQuoteDetailAllCost = (data) => createAPI(`/quote/detail/cost`,'post',data)
  8. export const againQuoteDetail = (data) => createAPI(`/quote/detail/again`,'post',data)
  9. export const queryQuoteDetailByInquiry = (data) => createAPI(`/quote/detail/inquiry`,'post',data)