Showing
2 changed files
with
4 additions
and
2 deletions
... | ... | @@ -100,7 +100,7 @@ |
100 | 100 | import { defineComponent, ref, unref, onMounted } from 'vue'; |
101 | 101 | import { BasicForm, useForm } from '/@/components/Form/index'; |
102 | 102 | import { Loading } from '/@/components/Loading/index'; |
103 | - import { Card, Upload, Input, Modal } from 'ant-design-vue'; | |
103 | + import { Card, Upload, Input, Modal, Spin } from 'ant-design-vue'; | |
104 | 104 | import { PlusOutlined } from '@ant-design/icons-vue'; |
105 | 105 | import { schemas } from '../config/AppDraw.config'; |
106 | 106 | import { FileItem, FileInfo } from '../types/index'; |
... | ... | @@ -121,6 +121,7 @@ |
121 | 121 | Modal, |
122 | 122 | Authority, |
123 | 123 | ContentUploadText, |
124 | + Spin, | |
124 | 125 | }, |
125 | 126 | setup() { |
126 | 127 | const loading = ref(false); | ... | ... |
... | ... | @@ -46,7 +46,7 @@ |
46 | 46 | |
47 | 47 | <script lang="ts"> |
48 | 48 | import { defineComponent, onMounted, ref, computed } from 'vue'; |
49 | - import { Card, Upload } from 'ant-design-vue'; | |
49 | + import { Card, Upload, Spin } from 'ant-design-vue'; | |
50 | 50 | import { BasicForm, useForm } from '/@/components/Form/index'; |
51 | 51 | import { schemas, provSchemas } from '../config/enterPriseInfo.config'; |
52 | 52 | import { getAreaList, getEnterPriseDetail, updateEnterPriseDetail } from '/@/api/oem/index'; |
... | ... | @@ -72,6 +72,7 @@ |
72 | 72 | PlusOutlined, |
73 | 73 | Authority, |
74 | 74 | ContentUploadText, |
75 | + Spin, | |
75 | 76 | }, |
76 | 77 | setup() { |
77 | 78 | const userInfo: any = getAuthCache(USER_INFO_KEY); | ... | ... |