index.vue 777 Bytes
<template>
  <div class="app-container">
    <!-- 中跆协审核 -->
    <div v-if="deptType==1">
      <auditZtx />
    </div>
    <!-- 省审核 -->
    <div v-if="(deptType==2||deptType==3)">
      <auditProvince />
    </div>
    <!--    &lt;!&ndash; 区,市审核 &ndash;&gt;-->
    <!--    <div v-if="deptType==4||deptType==5">-->
    <!--      <auditCity />-->
    <!--    </div>-->
  </div>
</template>

<script setup>

import { computed } from 'vue'

import auditCity from './components/auditCity.vue'
import auditProvince from './components/auditProvince.vue'
import auditZtx from './components/auditZtx.vue'

import useUserStore from '@/store/modules/user'

const deptType = computed(() => useUserStore().deptType)
</script>

<style lang="scss" scoped>

</style>