123456789101112131415161718192021222324252627 |
- <template>
- <NormalTable
- :columns="[]"
- :searchFormSchema="searchFormSchema"
- :list="list"
- :getImportUrl="getImportUrl"
- :getExportUrl="getExportUrl"
- :formSchema="formSchema"
- :deleteById="deleteById"
- :batchDelete="batchDeleteById"
- :saveOrUpdate="saveOrUpdate"
- designScope="workingFace-tabel"
- title="智能管控"
- :showTab="true"
- deviceType="managesys"
- columnsType="managesys_list"
- />
- </template>
- <script lang="ts" name="system-user" setup>
- //ts语法
- import NormalTable from '../comment/NormalTable.vue';
- import { columns, searchFormSchema, formSchema } from './workingFace.data';
- import { list, getImportUrl, getExportUrl, deleteById, batchDeleteById, saveOrUpdate } from './workingFace.api';
- </script>
- <style scoped></style>
|