From 295bdcf5c1c434604d35bdb592660284870014d7 Mon Sep 17 00:00:00 2001
From: zhuguifei <312353457@qq.com>
Date: 星期三, 18 三月 2026 13:36:58 +0800
Subject: [PATCH] feat: 1.新增判定规程明细项目维护  2.新增储丝单柜产量报表 3.新增exceljs、dompdf等文件导出工具  4.修改启动loading、icon、fav

---
 ruoyi-plus-soybean/src/service/api/analy/feed-match.ts |   46 +++++++++++++++++++++++-----------------------
 1 files changed, 23 insertions(+), 23 deletions(-)

diff --git a/ruoyi-plus-soybean/src/service/api/analy/feed-match.ts b/ruoyi-plus-soybean/src/service/api/analy/feed-match.ts
old mode 100644
new mode 100755
index 5fa81eb..e542585
--- a/ruoyi-plus-soybean/src/service/api/analy/feed-match.ts
+++ b/ruoyi-plus-soybean/src/service/api/analy/feed-match.ts
@@ -1,35 +1,35 @@
 import { request } from '@/service/request';
 
 /** 鑾峰彇鍠備笣鏈哄搴斿叧绯诲垪琛� */
-export function fetchGetFeedMatchList (params?: Api.Analy.FeedMatchSearchParams) {
-    return request<Api.Analy.FeedMatchList>({
-        url: '/analy/feedMatch/list',
-        method: 'get',
-        params
-    });
+export function fetchGetFeedMatchList(params?: Api.Analy.FeedMatchSearchParams) {
+  return request<Api.Analy.FeedMatchList>({
+    url: '/analy/feedMatch/list',
+    method: 'get',
+    params
+  });
 }
 /** 鏂板鍠備笣鏈哄搴斿叧绯� */
-export function fetchCreateFeedMatch (data: Api.Analy.FeedMatchOperateParams) {
-    return request<boolean>({
-        url: '/analy/feedMatch',
-        method: 'post',
-        data
-    });
+export function fetchCreateFeedMatch(data: Api.Analy.FeedMatchOperateParams) {
+  return request<boolean>({
+    url: '/analy/feedMatch',
+    method: 'post',
+    data
+  });
 }
 
 /** 淇敼鍠備笣鏈哄搴斿叧绯� */
-export function fetchUpdateFeedMatch (data: Api.Analy.FeedMatchOperateParams) {
-    return request<boolean>({
-        url: '/analy/feedMatch',
-        method: 'put',
-        data
-    });
+export function fetchUpdateFeedMatch(data: Api.Analy.FeedMatchOperateParams) {
+  return request<boolean>({
+    url: '/analy/feedMatch',
+    method: 'put',
+    data
+  });
 }
 
 /** 鎵归噺鍒犻櫎鍠備笣鏈哄搴斿叧绯� */
-export function fetchBatchDeleteFeedMatch (times: CommonType.IdType[]) {
-    return request<boolean>({
-        url: `/analy/feedMatch/${times.join(',')}`,
-        method: 'delete'
-    });
+export function fetchBatchDeleteFeedMatch(times: CommonType.IdType[]) {
+  return request<boolean>({
+    url: `/analy/feedMatch/${times.join(',')}`,
+    method: 'delete'
+  });
 }

--
Gitblit v1.9.3