app.js 355 B

123456789101112131415
  1. import {defineStore} from 'pinia'
  2. import {ref} from 'vue'
  3. export const useAppStore = defineStore('app', () => {
  4. // 当前机构
  5. const currentOrgId = ref('034')
  6. // 当前应用 督查:1;稽察:2;
  7. const ownApp = ref('1')
  8. function setCurrentOrgId(id) {
  9. currentOrgId.value = id
  10. }
  11. return {currentOrgId, ownApp, setCurrentOrgId}
  12. })