fix -- bug

This commit is contained in:
yuping
2023-03-07 20:22:07 +08:00
parent d3cff6d1d5
commit 6193f6a059
2 changed files with 37 additions and 1 deletions

View File

@@ -124,7 +124,10 @@ export const PostList = `/statement/list`
export const QueryEvaluationTaskStatusOne = `/evaluation/queryEvaluationTaskStatusOne`
// 投票浏览和参与数目
export const EditVoteInvolvedAndBrowse = `/vote/editVoteInvolvedAndBrowse post`
export const EditVoteInvolvedAndBrowse = `/vote/editVoteInvolvedAndBrowse post`
//查询路径关卡列表
export const ROUTER_DETAIL_CHAPTER_LIST = `/stu/router/chapterPcList`

View File

@@ -0,0 +1,33 @@
<template>
<div class="mapdetail">
<PathDetailImage
:img="data?.picUrl"
:detail="data"
></PathDetailImage>
</div>
</template>
<script setup>
import PathDetailImage from "@/components/PathDetailImage.vue";
import {useRequest} from "@/api/request";
import {ROUTER_DETAIL_CHAPTER_LIST} from "@/api/api";
import {useRoute} from "vue-router/dist/vue-router";
const {query:{routerId}} = useRoute()
const {data} = useRequest(ROUTER_DETAIL_CHAPTER_LIST,{routerId})
</script>
<style lang="scss">
.mapdetail {
width: calc(100% - 107px);
min-height: 577px;
background: rgba(242, 245, 247, 0.6);
margin-top: 26px;
border-radius: 8px;
margin-left: 53px;
margin-right: 54px;
display: flex;
align-items: center;
justify-content: center;
}
</style>