12345678910111213141516171819202122232425262728 |
- <template>
- <NormalTable
- ref="normalTabel"
- :columns="columns"
- :searchFormSchema="searchFormSchema"
- :list="list"
- :getImportUrl="getImportUrl"
- :getExportUrl="getExportUrl"
- :formSchema="formSchema"
- :deleteById="deleteById"
- :batchDelete="batchDeleteById"
- :saveOrUpdate="saveOrUpdate"
- designScope="substation-tabel"
- title="分站列表"
- :showTab="false"
- />
- </template>
- <script lang="ts" name="system-user" setup>
- //ts语法
- import { ref } from 'vue';
- import NormalTable from '../comment/NormalTable.vue';
- import { columns, searchFormSchema, formSchema } from './substation.data';
- import { list, getImportUrl, getExportUrl, deleteById, batchDeleteById, saveOrUpdate } from './substation.api';
- const normalTabel = ref();
- </script>
- <style scoped></style>
|