index.vue 797 B

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