index.vue 799 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div class="device-manager-box">
  3. <NormalTable
  4. :columns="[]"
  5. :searchFormSchema="searchFormSchema"
  6. :list="list"
  7. :formSchema="formSchema"
  8. :deleteById="deleteById"
  9. :batchDelete="batchDeleteById"
  10. :saveOrUpdate="saveOrUpdate"
  11. designScope="workingFace-tabel"
  12. title="智能管控"
  13. :showTab="true"
  14. deviceType="managesys"
  15. columnsType="managesys_list"
  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 './workingFace.data';
  23. import { list, getImportUrl, getExportUrl, deleteById, batchDeleteById, saveOrUpdate } from './workingFace.api';
  24. </script>
  25. <style scoped></style>