This commit is contained in:
yuping
2022-12-15 18:50:04 +08:00
parent b2258cb6e2
commit 7b7fe8568d
2 changed files with 9 additions and 9 deletions

View File

@@ -4,19 +4,19 @@
<div class="title">
<div class="titleL">
<div @click="returnfun" class="text">学习路径图</div>
<div class="info" style="margin-right: 14px" v-if="useInfo.jobName">
<div class="info" style="margin-right: 14px" v-if="userInfo.jobName">
<img
style="width: 20px; height: 18px; margin-right: 10px"
src="../../assets/image/pm.png"
/>
<div style="margin-top: 1px">{{ useInfo.jobName }}</div>
<div style="margin-top: 1px">{{ userInfo.jobName }}</div>
</div>
<div class="info" v-if="useInfo.bandDesc">
<div class="info" v-if="userInfo.bandDesc">
<img
style="width: 18px; height: 17px; margin-right: 11px"
src="../../assets/image/band.png"
/>
<div style="margin-top: 2px">{{ useInfo.bandDesc }}</div>
<div style="margin-top: 2px">{{ userInfo.bandDesc }}</div>
</div>
</div>
<div :style="{ display: !showmapdetail ? 'flex' : 'none' }">
@@ -154,7 +154,7 @@ import {useRouter} from "vue-router";
import store from "@/store";
const detail = ref();
const useInfo = computed(() => store.state.userInfo);
const userInfo = computed(() => store.state.userInfo);
const {data} = usePage(ROUTER_LIST, {});
const router = useRouter();