From 11fd2edc8643a9b5923d05ff21d18b7d845d4f76 Mon Sep 17 00:00:00 2001
From: haoxuan <haoxuan>
Date: 星期二, 07 十一月 2023 10:36:03 +0800
Subject: [PATCH] Merge branch 'dev' of http://192.168.5.5:10010/r/web/bulletin-board-style1 into dev

---
 src/api/index.ts |   36 ++++++++++++++++++++++++++++++++++--
 1 files changed, 34 insertions(+), 2 deletions(-)

diff --git a/src/api/index.ts b/src/api/index.ts
index afab391..e474d51 100644
--- a/src/api/index.ts
+++ b/src/api/index.ts
@@ -3,11 +3,19 @@
 import type { PLCResponse } from './plc'
 import type { Devices } from './device'
 import type { CraftModel } from './craftModel'
+import type { Problem } from './problem'
 
 export interface BaseResponse<T = any> {
   code: number
   data: T
   msg: string
+}
+
+export interface ListResponse<T = any> {
+  code: number
+  data: T
+  msg: string
+  total: number
 }
 
 export interface TaskListParams {
@@ -107,11 +115,25 @@
   })
 }
 
+export interface SetCurrentDeviceParams {
+  currentDeviceID: string
+}
+
+/**
+ * 鑾峰彇褰撳墠闈㈡澘缁戝畾鐨勮澶囧垪琛�
+ */
+export function apiSetCurrentDevice(data: SetCurrentDeviceParams) {
+  return request<BaseResponse<Devices>>({
+    url: `/v1/device/setCurrentDeviceId`,
+    method: 'post',
+    data
+  })
+}
+
 export interface CraftModelListParams {
   procedureId: number
   page: number
   pageSize: number
-  number: string
 }
 
 /**
@@ -119,7 +141,7 @@
  * @param params
  */
 export function apiGetCraftModelList(params: CraftModelListParams) {
-  return request<BaseResponse<CraftModel[]>>({
+  return request<ListResponse<CraftModel[]>>({
     url: '/v1/processModel/list',
     method: 'get',
     params
@@ -141,3 +163,13 @@
     data: params
   })
 }
+
+/**
+ * 鑾峰彇闂璇婃柇闂鍒楄〃
+ */
+export function apiGetProblemList() {
+  return request<BaseResponse<Problem[]>>({
+    url: '/v1/system/problemList',
+    method: 'get'
+  })
+}

--
Gitblit v1.8.0