123456789101112131415161718192021222324252627 |
- <template>
- <div class="device-manager-box">
- <NormalTable
- :columns="columns"
- :searchFormSchema="searchFormSchema"
- :list="list"
- :getImportUrl="getImportUrl"
- :getExportUrl="getExportUrl"
- :formSchema="formSchema"
- :deleteById="deleteById"
- :batchDelete="batchDeleteById"
- :saveOrUpdate="saveOrUpdate"
- designScope="damper-tabel"
- title="风门列表"
- :showTab="true"
- />
- </div>
- </template>
- <script lang="ts" name="system-user" setup>
- //ts语法
- import NormalTable from '../comment/NormalTable.vue';
- import { columns, searchFormSchema, formSchema } from './columns.data';
- import { list, getImportUrl, getExportUrl, deleteById, batchDeleteById, saveOrUpdate } from './columns.api';
- </script>
- <style scoped></style>
|