From 64d6948806c3dd7d657c359354212fa3eadfaa8e Mon Sep 17 00:00:00 2001
From: zhou zhou <3272660260@qq.com>
Date: 星期五, 21 十一月 2025 20:01:07 +0800
Subject: [PATCH] #盘点

---
 src/main/webapp/static/js/checkOrder/checkOrder.js |   50 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 50 insertions(+), 0 deletions(-)

diff --git a/src/main/webapp/static/js/checkOrder/checkOrder.js b/src/main/webapp/static/js/checkOrder/checkOrder.js
index 0f19c71..33dfa2d 100644
--- a/src/main/webapp/static/js/checkOrder/checkOrder.js
+++ b/src/main/webapp/static/js/checkOrder/checkOrder.js
@@ -96,6 +96,8 @@
             showEditModel(data);
         }else if (layEvent === 'createTask') {
             pakoutPreview(data.id);
+        }else if (layEvent === 'export') {
+            export1(data.id);
         }else if (layEvent === 'del') {
             doDel(data.id);
         } else if (layEvent === 'complete') {
@@ -601,6 +603,54 @@
         })
     }
 
+    function export1(id) {
+        notice.msg('姝e湪瀵煎嚭鏂囦欢......', {icon: 4});
+        $.ajax({
+            url: baseUrl + "/checkOrder/export/auth",
+            headers: {'token': localStorage.getItem('token')},
+            data: {
+                orderId: id
+            },
+            method: 'POST',
+            xhrFields: {
+                responseType: 'blob'
+            },
+            success: function (data, status, xhr) {
+                notice.destroy();
+                // 浠庡搷搴斿ご鑾峰彇鏂囦欢鍚�
+                var disposition = xhr.getResponseHeader('Content-Disposition');
+                var filename = '鐩樼偣宸紓鍗�.xlsx';
+                if (disposition && disposition.indexOf('filename') !== -1) {
+                    var filenameRegex = /filename[^;=\n]*=((['"]).*?\2|[^;\n]*)/;
+                    var matches = filenameRegex.exec(disposition);
+                    if (matches != null && matches[1]) {
+                        filename = decodeURIComponent(matches[1].replace(/['"]/g, ''));
+                    }
+                }
+                
+                // 鍒涘缓涓嬭浇閾炬帴
+                var blob = new Blob([data], {type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'});
+                var link = document.createElement('a');
+                link.href = window.URL.createObjectURL(blob);
+                link.download = filename;
+                document.body.appendChild(link);
+                link.click();
+                document.body.removeChild(link);
+                window.URL.revokeObjectURL(link.href);
+                
+                layer.msg('瀵煎嚭鎴愬姛', {icon: 1});
+            },
+            error: function (xhr, status, error) {
+                notice.destroy();
+                if (xhr.status === 403) {
+                    top.location.href = baseUrl + "/";
+                } else {
+                    layer.msg('瀵煎嚭澶辫触锛�' + error, {icon: 2});
+                }
+            }
+        });
+    }
+
     function pakout(tableCache, layerIndex) {
         // let loadIndex = layer.load(2);
         notice.msg('姝e湪鐢熸垚鐩樼偣鍑哄簱浠诲姟......', {icon: 4});

--
Gitblit v1.9.1