mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-student.git
synced 2025-12-11 11:56:48 +08:00
34 lines
780 B
Vue
34 lines
780 B
Vue
<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>
|