From d085d0504041e29e82b51a6ade1a183149fc9ffa Mon Sep 17 00:00:00 2001
From: zhangchen <1652267879@qq.com>
Date: 星期二, 09 九月 2025 16:44:55 +0800
Subject: [PATCH] Merge branch 'master' of http://dh.leon056.com:7499/r/data2/Single_application into ID1956-已签到页面改版

---
 src/store/type/task.type.ts |   59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 58 insertions(+), 1 deletions(-)

diff --git a/src/store/type/task.type.ts b/src/store/type/task.type.ts
index fe6fc3c..29b1b04 100644
--- a/src/store/type/task.type.ts
+++ b/src/store/type/task.type.ts
@@ -1,3 +1,11 @@
+import alertbaojin from "@/assets/alert.wav";
+import cxybaojing from "@/assets/cxy.mp3";
+import gybaojing from "@/assets/gy.mp3";
+import kclbaojing from "@/assets/kcl.mp3";
+import tdddbaojing from "@/assets/tzddd.mp3";
+import tzxllbaojing from "@/assets/tzxll.mp3";
+import cgbaojing from "@/assets/cg.mp3";
+
 export interface Task {
   /** 设备code */
   deviceCode: string;
@@ -9,6 +17,55 @@
   taskName: string;
   /** 是否过期 */
   overdue: boolean;
-  /** 倒计时,如果存在该字段则表明是远程传过来的 */
+  /** 是否远程传过来的, 只有远程传过来的时间到了再报*/
+  sync: boolean;
+  /** 倒计时,单位秒 */
   countdown?: number;
 }
+
+export interface TaskItem {
+  label: string;
+  value: string;
+  backgroundColor: string;
+  promptTone: string;
+}
+
+
+export const taskOptions : TaskItem[] = [
+  {
+    label: "测血压",
+    value: "测血压",
+    backgroundColor: "#E6A23C",
+    promptTone: cxybaojing,
+  },
+  {
+    label: "开超滤",
+    value: "开超滤",
+    backgroundColor: "#E6A23C",
+    promptTone: kclbaojing,
+  },
+  {
+    label: "给药",
+    value: "给药",
+    backgroundColor: "#E6A23C",
+    promptTone: gybaojing,
+  },
+  {
+    label: "调电导度",
+    value: "调电导度",
+    backgroundColor: "#E6A23C",
+    promptTone: tdddbaojing,
+  },
+  {
+    label: "调血流量",
+    value: "调血流量",
+    backgroundColor: "#E6A23C",
+    promptTone: tzxllbaojing,
+  },
+  {
+    label: "冲管",
+    value: "冲管",
+    backgroundColor: "#E6A23C",
+    promptTone: cgbaojing,
+  },
+]
\ No newline at end of file

--
Gitblit v1.8.0