feat:增加外部内部测评

This commit is contained in:
lixg
2022-12-15 13:02:00 +08:00
parent 7789062ec0
commit 8828f668f8
6 changed files with 40 additions and 6 deletions

View File

@@ -311,10 +311,11 @@ import { PROJECT_PROCESS, ROUTER_PROCESS, LINK_DETAILS } from "@/api/api";
import { useRoute, useRouter } from "vue-router";
const {
query: { projectId },
query: { courseId },
} = useRoute();
const router = useRouter();
const { data } = useRequest(PROJECT_PROCESS, { projectId });
const { data } = useRequest(PROJECT_PROCESS, { projectId: courseId });
console.log("data", data);
const state = reactive({
course: [
{
@@ -544,7 +545,10 @@ const types = ref({
7: " ",
8: "/discusspage",
9: "/moreactive",
10: import.meta.env.VITE_BOE_TEST_DETAIL_URL, //测评
10: [
import.meta.env.VITE_BOE_TEST_DETAIL_URL,
import.meta.env.VITE_BOE_TEST_OUT_DETAIL_URL,
], //测评
11: "/surveydetail",
12: "/ballotpage",
13: "去完成",
@@ -556,10 +560,21 @@ function toFinish(d) {
ElMessage.error("暂时未开放");
return;
}
if (d.type == 10) {
let url = "";
if (d.evaTyp == 1) {
url = types.value.path[d.type][1] + d.targetId;
} else {
url = types.value.path[d.type][0] + d.targetId;
}
import.meta.env.DEV
? (window.location.href = url)
: (window.parent.location.href = url);
return;
}
if (types.value.path[d.type] && types.value.path[d.type].startsWith("http")) {
//配置文件
const url = types.value.path[d.type] + d.targetId;
console.log("url", d, url);
import.meta.env.DEV
? (window.location.href = url)
: (window.parent.location.href = url);