index.vue 851 B

12345678910111213141516171819202122232425262728
  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="windfinding-tabel"
  14. title="测风装置列表"
  15. :showTab="true"
  16. deviceType="windrect_normal"
  17. />
  18. </div>
  19. </template>
  20. <script lang="ts" name="system-user" setup>
  21. //ts语法
  22. import NormalTable from '../comment/NormalTable.vue';
  23. import { columns, searchFormSchema, formSchema } from './windfinding.data';
  24. import { list, getImportUrl, getExportUrl, deleteById, batchDeleteById, saveOrUpdate } from './windfinding.api';
  25. </script>
  26. <style scoped></style>