安全会议纪要,站班会,安全巡检工单

This commit is contained in:
Teo
2025-04-14 18:08:27 +08:00
parent 895ca5f1b3
commit 4bc12189dc
17 changed files with 867 additions and 29 deletions

View File

@ -0,0 +1,12 @@
import { defineStore } from 'pinia';
export const bigUpload = defineStore('bigUpload', {
state: (): { panelShow: boolean } => ({
panelShow: false
}),
actions: {
async setPanelShow(bool: boolean) {
this.panelShow = bool;
}
}
});