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.
14 lines
581 B
14 lines
581 B
import {createAPI} from "../../utils/httpRequest";
|
|
|
|
|
|
export const queryQuoteGroupDetail = (data) => createAPI('/quote/group/detail','post',data)
|
|
|
|
export const queryQuoteGroupDetailByInquiry = (data) => createAPI('/quote/group/detail/inquiry','post',data)
|
|
|
|
export const saveQuoteGroupDetail = (data) => createAPI('/quote/group/detail/save','post',data)
|
|
|
|
export const removeQuoteGroupDetail = (data) => createAPI(`/quote/group/detail/remove/${data.id}`,'post',data)
|
|
|
|
export const updateCurrentQuoteGroupDetailItemNo = (data) => createAPI('/quote/group/detail/current','post',data)
|
|
|
|
|