index.vue 793 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <NormalTable
  3. :columns="[]"
  4. :searchFormSchema="searchFormSchema"
  5. :list="list"
  6. :getImportUrl="getImportUrl"
  7. :getExportUrl="getExportUrl"
  8. :formSchema="formSchema"
  9. :deleteById="deleteById"
  10. :batchDelete="batchDeleteById"
  11. :saveOrUpdate="saveOrUpdate"
  12. designScope="workingFace-tabel"
  13. title="智能管控"
  14. :showTab="true"
  15. deviceType="managesys"
  16. columnsType="managesys_list"
  17. />
  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>