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
17 lines
803 B
import {createAPI} from "../../utils/httpRequest";
|
|
|
|
export const queryQuoteDetail = (data) => createAPI(`/quote/detail`,'post',data)
|
|
|
|
export const queryQuoteDetailByPage = (data) => createAPI(`/quote/detail/${data.no}/${data.size}`,'post',data)
|
|
|
|
export const saveQuoteDetail = (data) => createAPI(`/quote/detail/save`,'post',data)
|
|
|
|
export const updateQuoteDetail = (data) => createAPI(`/quote/detail/update`,'post',data)
|
|
|
|
export const deleteQuoteDetail = (data) => createAPI(`/quote/detail/remove/${data.id}`,'post',data)
|
|
|
|
export const queryQuoteDetailAllCost = (data) => createAPI(`/quote/detail/cost`,'post',data)
|
|
|
|
export const againQuoteDetail = (data) => createAPI(`/quote/detail/again`,'post',data)
|
|
|
|
export const queryQuoteDetailByInquiry = (data) => createAPI(`/quote/detail/inquiry`,'post',data)
|