From d2bc6e096f0806b78ea92d4b90a21d3627d406c7 Mon Sep 17 00:00:00 2001
From: MrShi <1878285526@qq.com>
Date: 星期五, 08 三月 2024 18:28:42 +0800
Subject: [PATCH] mrshi
---
company/src/api/business/insuranceApply.js | 75 +++++++++++++++++++++++++++++++++++++
1 files changed, 75 insertions(+), 0 deletions(-)
diff --git a/company/src/api/business/insuranceApply.js b/company/src/api/business/insuranceApply.js
index 038246a..d7352e2 100644
--- a/company/src/api/business/insuranceApply.js
+++ b/company/src/api/business/insuranceApply.js
@@ -56,11 +56,29 @@
export function getDetail (id) {
return request.get(`business/insuranceApply/${id}`)
}
+export function getChangeDetail (id) {
+ return request.get(`business/applyChange/${id}`)
+}
export function getSignLink (id) {
return request.get(`business/insuranceApply/getSignLink/${id}`)
}
+export function getJiajianBaoSignLink (data) {
+ return request.post('/business/applyChange/getJiajianBaoSignLink', data, {
+ trim: true
+ })
+}
+export function getChangeUnitSignLink (data) {
+ return request.post('/business/applyChange/getChangeUnitSignLink', data, {
+ trim: true
+ })
+}
export function getDetailList (data) {
return request.post('/business/applyDetail/list', data, {
+ trim: true
+ })
+}
+export function getChangeDetailList (data) {
+ return request.post('/business/applyChagneDetail/list', data, {
trim: true
})
}
@@ -74,3 +92,60 @@
export function updateData (data) {
return request.post('/business/insuranceApply/updateData', data)
}
+
+// 鍦ㄤ繚鍒嗛〉鏌ヨ
+export function applyDetailPage (data) {
+ return request.post('/business/applyDetail/page', data)
+}
+
+// 鍔犲噺銆佹崲鍦哄垎椤垫煡璇�
+export function applyChagneDetailPage (data) {
+ return request.post('/business/applyChagneDetail/page', data)
+}
+// 瀵煎嚭鍦ㄤ繚浜哄憳璇﹀崟Excel
+export function exportExcel (data) {
+ return request.post('/business/applyDetail/exportExcel', data, {
+ trim: true,
+ download: true
+ })
+}
+export function exportJiajianBaoExcel (data) {
+ return request.post('/business/applyChange/exportJiajianBaoExcel', data, {
+ trim: true,
+ download: true
+ })
+}
+export function backChagne (data) {
+ return request.post('/business/applyChange/back', data, {
+ trim: true
+ })
+}
+export function editChangePidan (data) {
+ return request.post('/business/applyChange/editPidan', data, {
+ trim: true
+ })
+}
+export function uploadChangePidan (data) {
+ return request.post('/business/applyChange/uploadPidan', data, {
+ trim: true
+ })
+}
+export function dealBackChangeApply (data) {
+ return request.post('/business/applyChange/dealBackApply', data, {
+ trim: true
+ })
+}
+export function exportChangeUnitExcel (data) {
+ return request.post('/business/applyChange/exportChangeUnitExcel', data, {
+ trim: true,
+ download: true
+ })
+}
+
+// 瀵煎嚭Excel
+export function applyChagneDetailExcel (data) {
+ return request.post('/business/applyChagneDetail/exportExcel', data, {
+ trim: true,
+ download: true
+ })
+}
--
Gitblit v1.9.3