index.vue 776 B

1234567891011121314151617181920212223242526
  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="sensor-tabel"
  14. title="传感器列表"
  15. />
  16. </div>
  17. </template>
  18. <script lang="ts" name="system-user" setup>
  19. //ts语法
  20. import NormalTable from '../comment/NormalTable.vue';
  21. import { columns, searchFormSchema, formSchema } from './sensor.data';
  22. import { list, getImportUrl, getExportUrl, deleteById, batchDeleteById, saveOrUpdate } from './sensor.api';
  23. </script>
  24. <style scoped></style>