1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| <template>
| <LoadingLayout :loading="isLoading">
| <AppContainer>
| <ChunkCell title="待处理"> </ChunkCell>
| <ChunkCell title="数据看板"> </ChunkCell>
| </AppContainer>
| </LoadingLayout>
| </template>
|
| <script setup lang="ts">
| import {
| ProForm,
| ProFormItemV2,
| ProFormSelect,
| ProFormText,
| ProFormCol,
| ProFormColItem,
| ProFormInputNumber,
| ProFormTextArea,
| ProFormRadio,
| ChunkCell,
| AppScrollContainer,
| } from '@bole-core/components';
|
| defineOptions({
| name: 'Home',
| });
|
| const isLoading = ref(false);
| </script>
|
| <style lang="scss" scoped>
| @use '@/style/common.scss' as *;
| </style>
|
|