|
|
@@ -0,0 +1,60 @@
|
|
|
+/*
|
|
|
+ * @Author: wanglj wanglijie@dashoo.cn
|
|
|
+ * @Date: 2025-01-09 14:55:46
|
|
|
+ * @LastEditors: wanglj
|
|
|
+ * @LastEditTime: 2025-01-09 15:31:35
|
|
|
+ * @Description: file content
|
|
|
+ * @FilePath: \labsop_website\src\api\introduce.js
|
|
|
+ */
|
|
|
+/*
|
|
|
+ * @Author: wanglj
|
|
|
+ * @Date: 2022-04-25 10:38:19
|
|
|
+ * @LastEditors: wanglj
|
|
|
+ * @LastEditTime: 2025-01-09 15:19:14
|
|
|
+ * @Description: file content
|
|
|
+ * @FilePath: \labsop_website\src\api\introduce.js
|
|
|
+ */
|
|
|
+import request from "@/utils/micro_request";
|
|
|
+
|
|
|
+const basePath = $GlobalConfig.VUE_APP_SETTING_PATH;
|
|
|
+
|
|
|
+// 获取平台简介
|
|
|
+export function getCenterIntroduction(data) {
|
|
|
+ return request.postRequestWithClientInfo(basePath, "CenterIntroduction", "GetCenterIntroduction", data);
|
|
|
+}
|
|
|
+// 保存中心简介(新增+更新)
|
|
|
+export function updateCenterIntroduction(data) {
|
|
|
+ return request.postRequestWithClientInfo(basePath, "CenterIntroduction", "UpdateCenterIntroduction", data);
|
|
|
+}
|
|
|
+// 更新中心简介点击量
|
|
|
+export function viewCenterIntroduction(data) {
|
|
|
+ return request.postRequestWithClientInfo(basePath, "CenterIntroduction", "ViewCenterIntroduction", data);
|
|
|
+}
|
|
|
+// 获取中心人员
|
|
|
+export function getCenterStaff(data) {
|
|
|
+ return request.postRequestWithClientInfo(basePath, "WesCenterStaff", "GetCenterStaff", data);
|
|
|
+}
|
|
|
+// 保存中心人员(新增+更新)
|
|
|
+export function updateCenterStaff(data) {
|
|
|
+ return request.postRequestWithClientInfo(basePath, "WesCenterStaff", "UpdateCenterStaff", data);
|
|
|
+}
|
|
|
+// 更新中心人员点击量接口
|
|
|
+export function viewCenterStaff(data) {
|
|
|
+ return request.postRequestWithClientInfo(basePath, "WesCenterStaff", "ViewCenterStaff", data);
|
|
|
+}
|
|
|
+// 获取技术平台列表
|
|
|
+export function getCenterPlatformList(data) {
|
|
|
+ return request.postRequestWithClientInfo(basePath, "WesCenterPlatform", "GetCenterPlatformList", data);
|
|
|
+}
|
|
|
+// 获取平台简介信息接口
|
|
|
+export function getCenterPlatform(data) {
|
|
|
+ return request.postRequestWithClientInfo(basePath, "WesCenterPlatform", "GetCenterPlatform", data);
|
|
|
+}
|
|
|
+// 保存平台简介(新增+更新)
|
|
|
+export function updateCenterPlatform(data) {
|
|
|
+ return request.postRequestWithClientInfo(basePath, "WesCenterPlatform", "UpdateCenterPlatform", data);
|
|
|
+}
|
|
|
+// 更新平台简介点击量
|
|
|
+export function viewCenterPlatform(data) {
|
|
|
+ return request.postRequestWithClientInfo(basePath, "WesCenterPlatform", "ViewCenterPlatform", data);
|
|
|
+}
|