index.vue 617 B

123456789101112131415161718192021222324
  1. <template>
  2. <div class="device-manager-box">
  3. <NormalTable
  4. :columns="columns"
  5. :formSchema="formSchema"
  6. :list="list"
  7. :saveOrUpdate="saveOrUpdate"
  8. :deleteById="deleteById"
  9. designScope="equip-tabel"
  10. title="设备管理列表"
  11. :showTab="false"
  12. />
  13. </div>
  14. </template>
  15. <script lang="ts" name="system-user" setup>
  16. //ts语法
  17. import NormalTable from './component/normalBtnTable.vue';
  18. import { columns, formSchema } from './equip.data';
  19. import { list, saveOrUpdate, deleteById, editPassword } from './equip.api';
  20. </script>
  21. <style scoped lang="less"></style>