Переглянути джерело

导入成功后,回填表格的查询条件

刘洋 2 роки тому
батько
коміт
4888069f94
2 змінених файлів з 8 додано та 8 видалено
  1. 1 1
      components.d.ts
  2. 7 7
      src/App.vue

+ 1 - 1
components.d.ts

@@ -18,8 +18,8 @@ declare module '@vue/runtime-core' {
     ARadioGroup: typeof import('ant-design-vue/es')['RadioGroup']
     ASelect: typeof import('ant-design-vue/es')['Select']
     ASelectOption: typeof import('ant-design-vue/es')['SelectOption']
+    ASpin: typeof import('ant-design-vue/es')['Spin']
     ATable: typeof import('ant-design-vue/es')['Table']
-    ATextarea: typeof import('ant-design-vue/es')['Textarea']
     ATooltip: typeof import('ant-design-vue/es')['Tooltip']
     AUpload: typeof import('ant-design-vue/es')['Upload']
     Block: typeof import('./src/components/block/index.vue')['default']

+ 7 - 7
src/App.vue

@@ -1,11 +1,11 @@
 <template>
-  <!--  <a-spin-->
-  <!--    style="z-index: 100000"-->
-  <!--    :tip="mainStore.loading.message"-->
-  <!--    :spinning="mainStore.loading.status"-->
-  <!--  >-->
-  <router-view></router-view>
-  <!--  </a-spin>-->
+  <a-spin
+    style="z-index: 100000"
+    :tip="mainStore.loading.message"
+    :spinning="mainStore.loading.status"
+  >
+    <router-view></router-view>
+  </a-spin>
 </template>
 
 <script setup lang="ts" name="App">