12345678910111213141516171819202122232425 |
- <template>
- <NormalTable
- :columns="columns"
- :searchFormSchema="searchFormSchema"
- :list="list"
- :getImportUrl="getImportUrl"
- :getExportUrl="getExportUrl"
- :formSchema="formSchema"
- :deleteById="deleteById"
- :batchDelete="batchDeleteById"
- :saveOrUpdate="saveOrUpdate"
- designScope="windfinding-tabel"
- title="测风装置列表"
- :showTab="true"
- />
- </template>
- <script lang="ts" name="system-user" setup>
- //ts语法
- import NormalTable from '../comment/NormalTable.vue';
- import { columns, searchFormSchema, formSchema } from './windfinding.data';
- import { list, getImportUrl, getExportUrl, deleteById, batchDeleteById, saveOrUpdate } from './windfinding.api';
- </script>
- <style scoped></style>
|