123456789101112131415161718 |
- <script setup lang="ts">
- import FormSearch from "@/components/opts/form-search.vue";
- import TableButtons from "@/components/opts/btns2.vue";
- import ConfigEdit from "./modules/config-edit.vue";
- import { PureTable } from "@pureadmin/table";
- import { reactive, ref } from "vue";
- import { configTypeOptions } from "@/constants/constants";
- import * as $configApi from "@/api/sys/config";
- import { onMounted } from "vue";
- import { hasAuth } from "@/router/utils";
- import message from "@/utils/message";
- </script>
- <template>
- <div>
- 通道管理
- </div>
- </template>
|