index.vue 744 B

12345678910111213141516171819202122232425
  1. <template>
  2. <NormalTable
  3. :columns="columns"
  4. :searchFormSchema="searchFormSchema"
  5. :list="list"
  6. :getImportUrl="getImportUrl"
  7. :getExportUrl="getExportUrl"
  8. :formSchema="formSchema"
  9. :deleteById="deleteById"
  10. :batchDelete="batchDeleteById"
  11. :saveOrUpdate="saveOrUpdate"
  12. designScope="windfinding-tabel"
  13. title="测风装置列表"
  14. :showTab="true"
  15. />
  16. </template>
  17. <script lang="ts" name="system-user" setup>
  18. //ts语法
  19. import NormalTable from '../comment/NormalTable.vue';
  20. import { columns, searchFormSchema, formSchema } from './windfinding.data';
  21. import { list, getImportUrl, getExportUrl, deleteById, batchDeleteById, saveOrUpdate } from './windfinding.api';
  22. </script>
  23. <style scoped></style>