29 lines
617 B
Vue
29 lines
617 B
Vue
<script setup lang="ts">
|
|
import { ref, onMounted, markRaw } from 'vue';
|
|
import { PageContainer } from 'antdv-pro-layout';
|
|
import useI18n from '@/hooks/useI18n';
|
|
import UPFTEST from './tenantUPF.vue';
|
|
import MODULE from './moduleInfo.vue';
|
|
import { upfFlowData } from '../dashboard/overview/hooks/useUPFTotalFlow';
|
|
|
|
onMounted(() => {});
|
|
</script>
|
|
|
|
<template>
|
|
<PageContainer>
|
|
<div style="background-color: #f7f8fc; padding: 20px">
|
|
<MODULE />
|
|
</div>
|
|
|
|
<UPFTEST />
|
|
</PageContainer>
|
|
</template>
|
|
|
|
<style lang="less" scoped>
|
|
.cardClass {
|
|
height: 100%;
|
|
width: 100%;
|
|
border-radius: 10px;
|
|
}
|
|
</style>
|