diff --git a/src/api/quote/quoteDetailAttribute.js b/src/api/quote/quoteDetailAttribute.js new file mode 100644 index 0000000..4b42a06 --- /dev/null +++ b/src/api/quote/quoteDetailAttribute.js @@ -0,0 +1,9 @@ +import {createAPI} from "../../utils/httpRequest"; + + +export const queryQuoteDetailAttribute = (data) => createAPI(`/quote/detail/attribute`,'post',data) +export const queryQuoteDetailAttributeItem = (data) => createAPI(`/quote/detail/attribute/item`,'post',data) + +export const batchUpdateDetailAttribute = (data) => createAPI(`/quote/detail/attribute/batch/update`,'post',data) + + diff --git a/src/views/modules/quote/detail/primary/quoteDetailOther.vue b/src/views/modules/quote/detail/primary/quoteDetailOther.vue index 7209a17..5328dad 100644 --- a/src/views/modules/quote/detail/primary/quoteDetailOther.vue +++ b/src/views/modules/quote/detail/primary/quoteDetailOther.vue @@ -1,4 +1,10 @@