2024-05-06 15:15:47 +08:00
|
|
|
<template>
|
2024-05-06 19:41:47 +08:00
|
|
|
<div>
|
2024-05-06 15:15:47 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { ref, onMounted, unref } from 'vue';
|
|
|
|
|
|
|
|
import { getUserSf,getSysConfig } from '/@/views/site/utils/index';
|
|
|
|
import { defHttp } from '/@/utils/http/axios';
|
|
|
|
import { useRouter } from 'vue-router';
|
|
|
|
|
|
|
|
|
|
|
|
import headerPage from '/@/views/site/common/header.vue';
|
|
|
|
import footerPage from '/@/views/site/common/footer.vue';
|
|
|
|
import dqxqkc from '/@/views/site/renKeJiaoCheng/checkKecheng/dqxqkc.vue';
|
|
|
|
|
|
|
|
const maxClassName = ref<any>({});
|
|
|
|
const selectedKeys = ref<string[]>([]);
|
2024-05-06 19:41:47 +08:00
|
|
|
//当前路由信息
|
|
|
|
const { currentRoute } = useRouter();
|
|
|
|
const { query } = unref(currentRoute);
|
|
|
|
const { rwbh } = query;//获取传递参数
|
|
|
|
let router = useRouter();
|
2024-05-06 15:15:47 +08:00
|
|
|
|
|
|
|
|
|
|
|
//进入就加载
|
|
|
|
onMounted(() => {
|
2024-05-06 19:41:47 +08:00
|
|
|
console.log('rwbh:',rwbh);
|
2024-05-06 15:15:47 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
|
|
</style>
|