莳松crm管理系统
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.
ss-crm-manage-web/src/views/Clue/Order/Comp/Settle.vue

17 lines
379 B

10 months ago
<template>
<div>
<SchoolSettle v-if="appStore.getAppInfo?.instanceType == 1" />
10 months ago
<MallSettle v-else />
10 months ago
</div>
</template>
<script setup name="Settle">
import { useAppStore } from '@/store/modules/app'
import SchoolSettle from './SchoolSettle.vue'
10 months ago
import MallSettle from './MallSettle.vue'
10 months ago
const appStore = useAppStore()
</script>
<style lang="scss" scoped></style>