diff --git a/src/layouts/default.vue b/src/layouts/default.vue
index 25c6052..1453188 100644
--- a/src/layouts/default.vue
+++ b/src/layouts/default.vue
@@ -106,7 +106,7 @@ const isCheck = ref(false)
-
+
diff --git a/src/libs/utils.ts b/src/libs/utils.ts
index 9fa517f..4f31685 100644
--- a/src/libs/utils.ts
+++ b/src/libs/utils.ts
@@ -50,6 +50,7 @@ export const cmdNameMap = {
gantry_z_origin: '机械臂z轴回原点',
cap_lifting_origin: '拍子电机回原点',
tray_lifting_origin: '加热区托盘电机回原点',
+ door_origin: '门电机回原点',
}
export const generateColors = (count: number): string[] => {
diff --git a/src/stores/systemStore.ts b/src/stores/systemStore.ts
index ac31342..ce2b476 100644
--- a/src/stores/systemStore.ts
+++ b/src/stores/systemStore.ts
@@ -78,6 +78,7 @@ export const useSystemStore = defineStore('system', {
heatModule: [
{
moduleCode: 'heat_module_01',
+ trayUp: 1,
trayStatus: 1,
heating: false,
capExist: false,
@@ -86,6 +87,7 @@ export const useSystemStore = defineStore('system', {
},
{
moduleCode: 'heat_module_02',
+ trayUp: 1,
trayStatus: 1,
heating: false,
capExist: false,
@@ -94,7 +96,8 @@ export const useSystemStore = defineStore('system', {
},
{
moduleCode: 'heat_module_03',
- trayStatus: 2,
+ trayUp: 0,
+ trayStatus: 0,
heating: true,
capExist: false,
temperature: 130,
@@ -102,7 +105,8 @@ export const useSystemStore = defineStore('system', {
},
{
moduleCode: 'heat_module_04',
- trayStatus: 2,
+ trayUp: 1,
+ trayStatus: 1,
heating: false,
capExist: false,
temperature: 0,
@@ -110,6 +114,7 @@ export const useSystemStore = defineStore('system', {
},
{
moduleCode: 'heat_module_05',
+ trayUp: 1,
trayStatus: 1,
heating: false,
capExist: false,
@@ -118,6 +123,7 @@ export const useSystemStore = defineStore('system', {
},
{
moduleCode: 'heat_module_06',
+ trayUp: 1,
trayStatus: 0,
heating: false,
capExist: false,
diff --git a/src/types/system.d.ts b/src/types/system.d.ts
index 249ccc6..3b87679 100644
--- a/src/types/system.d.ts
+++ b/src/types/system.d.ts
@@ -50,7 +50,8 @@ declare namespace System {
}
interface HeatArea {
moduleCode: 'heat_module_01' | 'heat_module_02' | 'heat_module_03' | 'heat_module_04' | 'heat_module_05' | 'heat_module_06'
- trayStatus: 0 | 1 | 2
+ trayUp: 0 | 1
+ trayStatus: 0 | 1
heating: boolean
capExist: boolean
temperature: number