From 8d24d963f8b82163685c34b816998a904f08234d Mon Sep 17 00:00:00 2001
From: liding <756868258@qq.com>
Date: 星期四, 17 九月 2026 13:39:35 +0800
Subject: [PATCH] feat: 新聚-下单到检验
---
src/api/cnas/process/method/standardMethod.js | 22 ++++++++++++++++++++++
1 files changed, 22 insertions(+), 0 deletions(-)
diff --git a/src/api/cnas/process/method/standardMethod.js b/src/api/cnas/process/method/standardMethod.js
index 46bd97e..6be65ef 100644
--- a/src/api/cnas/process/method/standardMethod.js
+++ b/src/api/cnas/process/method/standardMethod.js
@@ -46,3 +46,25 @@
});
}
+export function selectIndustryOptions() {
+ return request({ url: '/standardMethod/selectIndustryOptions', method: 'get' })
+}
+
+export function selectAttachments(query) {
+ return request({ url: '/standardMethod/selectAttachments', method: 'get', params: query })
+}
+
+export function uploadAttachment(data, standardMethodId) {
+ return request({
+ url: '/standardMethod/uploadAttachment',
+ method: 'post',
+ params: { standardMethodId },
+ data,
+ headers: { 'Content-Type': 'multipart/form-data' }
+ })
+}
+
+export function deleteAttachment(query) {
+ return request({ url: '/standardMethod/deleteAttachment', method: 'delete', params: query })
+}
+
--
Gitblit v1.9.3