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.

10 lines
449 B

2 years ago
  1. import {createAPI} from "../../utils/httpRequest";
  2. export const queryQuoteDetailOther = (data) => createAPI(`/quote/detail/other/list`,'post',data)
  3. export const saveQuoteDetailOther = (data) => createAPI(`/quote/detail/other/save`,'post',data)
  4. export const removeQuoteDetailOther = (data) => createAPI(`/quote/detail/other/remove`,'post',data)
  5. export const updateQuoteDetailOther = (data) => createAPI(`/quote/detail/other/update`,'post',data)