index.vue 816 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <NormalTable
  3. ref="normalTabel"
  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="substation-tabel"
  14. title="分站列表"
  15. :showTab="false"
  16. />
  17. </template>
  18. <script lang="ts" name="system-user" setup>
  19. //ts语法
  20. import { ref } from 'vue';
  21. import NormalTable from '../comment/NormalTable.vue';
  22. import { columns, searchFormSchema, formSchema } from './substation.data';
  23. import { list, getImportUrl, getExportUrl, deleteById, batchDeleteById, saveOrUpdate } from './substation.api';
  24. const normalTabel = ref();
  25. </script>
  26. <style scoped></style>