mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-student.git
synced 2025-12-11 03:46:48 +08:00
fix:图片引入方式修改
This commit is contained in:
@@ -157,9 +157,9 @@
|
|||||||
</template>
|
</template>
|
||||||
<script setup>
|
<script setup>
|
||||||
import { computed, ref } from "vue";
|
import { computed, ref } from "vue";
|
||||||
import nostarted from "../../assets/image/nostarted.png";
|
// import nostarted from "../../assets/image/nostarted.png";
|
||||||
import completed from "../../assets/image/completed.png";
|
// import completed from "../../assets/image/completed.png";
|
||||||
import ongoing from "../../assets/image/ongoing.png";
|
// import ongoing from "../../assets/image/ongoing.png";
|
||||||
import { usePage } from "@/api/request";
|
import { usePage } from "@/api/request";
|
||||||
import { ROUTER_LIST } from "@/api/api";
|
import { ROUTER_LIST } from "@/api/api";
|
||||||
import { useRouter } from "vue-router";
|
import { useRouter } from "vue-router";
|
||||||
@@ -194,6 +194,9 @@ const returnfun = () => {
|
|||||||
showmapdetail.value = false;
|
showmapdetail.value = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const completed = ref("../../assets/image/completed.png");
|
||||||
|
const ongoing = ref("../../assets/image/ongoing.png");
|
||||||
|
|
||||||
async function gofun(e) {
|
async function gofun(e) {
|
||||||
detail.value = e;
|
detail.value = e;
|
||||||
showmapdetail.value = true;
|
showmapdetail.value = true;
|
||||||
|
|||||||
@@ -274,8 +274,8 @@
|
|||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { computed, reactive, ref, watch } from "vue";
|
import { computed, reactive, ref, watch } from "vue";
|
||||||
import circle from '../../assets/image/pathdetails/circle.png';
|
// import circle from '../../assets/image/pathdetails/circle.png';
|
||||||
import circle2 from '../../assets/image/pathdetails/circle2.png';
|
// import circle2 from '../../assets/image/pathdetails/circle2.png';
|
||||||
import { boeRequest, useRequest, request } from "@/api/request";
|
import { boeRequest, useRequest, request } from "@/api/request";
|
||||||
import { ROUTER_PROCESS, LINK_DETAILS, STUDY_RECORD, EvaluationToLearn } from "@/api/api";
|
import { ROUTER_PROCESS, LINK_DETAILS, STUDY_RECORD, EvaluationToLearn } from "@/api/api";
|
||||||
import { useRoute, useRouter } from "vue-router";
|
import { useRoute, useRouter } from "vue-router";
|
||||||
@@ -305,7 +305,8 @@ const path = { 1: "path" };
|
|||||||
const dialogVisible = ref(false);
|
const dialogVisible = ref(false);
|
||||||
const dialogVisibleTip = ref('');
|
const dialogVisibleTip = ref('');
|
||||||
|
|
||||||
|
const circle = ref('../../assets/image/pathdetails/circle.png');
|
||||||
|
const circle2 = ref('../../assets/image/pathdetails/circle2.png');
|
||||||
|
|
||||||
const types = ref({
|
const types = ref({
|
||||||
typeName: {
|
typeName: {
|
||||||
|
|||||||
Reference in New Issue
Block a user