From 53e9b23a40186efd149fd5c5350b5eced1f69920 Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期二, 25 八月 2026 17:54:26 +0800
Subject: [PATCH] feat(auth): 更新认证页面为农业数字化平台主题
---
src/api/mes/qc/seedQuality/index.ts | 22 ++++++++++++++++++++++
1 files changed, 22 insertions(+), 0 deletions(-)
diff --git a/src/api/mes/qc/seedQuality/index.ts b/src/api/mes/qc/seedQuality/index.ts
new file mode 100644
index 0000000..fa5e1f9
--- /dev/null
+++ b/src/api/mes/qc/seedQuality/index.ts
@@ -0,0 +1,22 @@
+import { requestClient } from '#/api/request';
+
+export namespace MesQcSeedQualityApi {
+ export interface Indicator {
+ code: string;
+ value: number;
+ minValue: number;
+ maxValue: number;
+ }
+
+ export interface SubmitParams {
+ code: string;
+ itemId: number;
+ batchCode?: string;
+ indicators: Indicator[];
+ reason?: string;
+ }
+}
+
+export function submitSeedQuality(data: MesQcSeedQualityApi.SubmitParams) {
+ return requestClient.post<number>('/mes/qc/seed-quality/submit', data);
+}
--
Gitblit v1.9.3