index.vue 564 B

123456789101112131415161718
  1. <script setup lang="ts">
  2. import FormSearch from "@/components/opts/form-search.vue";
  3. import TableButtons from "@/components/opts/btns2.vue";
  4. import ConfigEdit from "./modules/config-edit.vue";
  5. import { PureTable } from "@pureadmin/table";
  6. import { reactive, ref } from "vue";
  7. import { configTypeOptions } from "@/constants/constants";
  8. import * as $configApi from "@/api/sys/config";
  9. import { onMounted } from "vue";
  10. import { hasAuth } from "@/router/utils";
  11. import message from "@/utils/message";
  12. </script>
  13. <template>
  14. <div>
  15. 通道管理
  16. </div>
  17. </template>