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
10 lines
449 B
import {createAPI} from "../../utils/httpRequest";
|
|
|
|
export const queryQuoteDetailOther = (data) => createAPI(`/quote/detail/other/list`,'post',data)
|
|
|
|
export const saveQuoteDetailOther = (data) => createAPI(`/quote/detail/other/save`,'post',data)
|
|
|
|
export const removeQuoteDetailOther = (data) => createAPI(`/quote/detail/other/remove`,'post',data)
|
|
|
|
export const updateQuoteDetailOther = (data) => createAPI(`/quote/detail/other/update`,'post',data)
|
|
|