diff --git a/oms_web/oms_vue/src/api/base/quotation.js b/oms_web/oms_vue/src/api/base/quotation.js index 24485517..ddd8d6ad 100644 --- a/oms_web/oms_vue/src/api/base/quotation.js +++ b/oms_web/oms_vue/src/api/base/quotation.js @@ -42,3 +42,9 @@ export function delQuotation(id) { method: 'delete' }) } +export function exportSingleQuotation(id) { + return request({ + url: '/quotation/export/single/' + id, + method: 'get' + }) +} diff --git a/oms_web/oms_vue/src/views/base/quotation/index.vue b/oms_web/oms_vue/src/views/base/quotation/index.vue index 83e6b25e..10de1091 100644 --- a/oms_web/oms_vue/src/views/base/quotation/index.vue +++ b/oms_web/oms_vue/src/views/base/quotation/index.vue @@ -108,6 +108,13 @@ @click="handleDelete(scope.row)" v-hasPermi="['base:quotation:remove']" >删除 + 导出 @@ -215,10 +222,11 @@