123456789101112131415161718192021222324 |
- <template>
- <div class="device-manager-box">
- <NormalTable
- :columns="columns"
- :formSchema="formSchema"
- :list="list"
- :saveOrUpdate="saveOrUpdate"
- :deleteById="deleteById"
- designScope="equip-tabel"
- title="设备管理列表"
- :showTab="false"
- />
- </div>
- </template>
- <script lang="ts" name="system-user" setup>
- //ts语法
- import NormalTable from './component/normalBtnTable.vue';
- import { columns, formSchema } from './equip.data';
- import { list, saveOrUpdate, deleteById, editPassword } from './equip.api';
- </script>
- <style scoped lang="less"></style>
|