新型管道消毒机前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
347 B

  1. import { defineStore } from 'pinia'
  2. export const useOperatorStore = defineStore({
  3. id: 'operator', // id必填,且需要唯一
  4. // state
  5. state: () => {
  6. return {
  7. // 是否开始消毒
  8. disinfectStatus: false,
  9. }
  10. },
  11. // actions
  12. actions: {
  13. updateDisinfectStatus(val) {
  14. this.disinfectStatus = val
  15. },
  16. },
  17. })