From ea6f80179c8c45d743d45aa02e54640aad6355f7 Mon Sep 17 00:00:00 2001
From: zhouwx <1175765986@qq.com>
Date: Mon, 02 Feb 2026 13:39:16 +0800
Subject: [PATCH] 修改
---
src/api/standardSys/standardSys.js | 34 ++++++++++++++++++++++++++++++++++
1 files changed, 34 insertions(+), 0 deletions(-)
diff --git a/src/api/standardSys/standardSys.js b/src/api/standardSys/standardSys.js
index 62d9aaf..21435d5 100644
--- a/src/api/standardSys/standardSys.js
+++ b/src/api/standardSys/standardSys.js
@@ -103,3 +103,37 @@
method: 'get'
})
}
+
+export function getProductServiceList(params) {
+ return request({
+ url: '/system/productService/selectProductServiceList',
+ method: 'get',
+ params: params
+ })
+}
+
+export function saveProductService(data) {
+ return request({
+ url: '/system/productService/saveProductService',
+ method: 'post',
+ data: data
+ })
+}
+
+export function delProductService(params) {
+ return request({
+ url: '/system/productService/delProductService',
+ method: 'get',
+ params: params
+ })
+}
+
+// 置顶
+export function templateToTop(params) {
+ return request({
+ url: `/template/standardizedTemplate/top?id=${params}`,
+ method: 'get',
+ })
+}
+
+
--
Gitblit v1.9.2