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.
16 lines
379 B
16 lines
379 B
<template>
|
|
<div>
|
|
<SchoolSettle v-if="appStore.getAppInfo?.instanceType == 1" />
|
|
<MallSettle v-else />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup name="Settle">
|
|
import { useAppStore } from '@/store/modules/app'
|
|
import SchoolSettle from './SchoolSettle.vue'
|
|
import MallSettle from './MallSettle.vue'
|
|
|
|
const appStore = useAppStore()
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|
|
|