diff --git a/src/api/oa/crm/businessTripApply/index.ts b/src/api/oa/crm/businessTripApply/index.ts
index 4a0b33c..dacbc8f 100644
--- a/src/api/oa/crm/businessTripApply/index.ts
+++ b/src/api/oa/crm/businessTripApply/index.ts
@@ -86,3 +86,15 @@ export const submitBusinessTripApplyAndFlowStart = (data: BusinessTripApplyForm)
data: data
});
};
+
+/**
+ * 导出出差申请单 PDF(已审批)
+ * @param tripId 出差申请ID
+ */
+export const exportBusinessTripApplyPdf = (tripId: string | number) => {
+ return request({
+ url: '/oa/crm/businessTripApply/exportTripApplyPdf/' + tripId,
+ method: 'get',
+ responseType: 'blob'
+ });
+};
diff --git a/src/views/oa/crm/businessTripApply/index.vue b/src/views/oa/crm/businessTripApply/index.vue
index 502bc3c..2829e9e 100644
--- a/src/views/oa/crm/businessTripApply/index.vue
+++ b/src/views/oa/crm/businessTripApply/index.vue
@@ -145,7 +145,7 @@
-
+
+
+
+
@@ -208,7 +217,12 @@