mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-student.git
synced 2025-12-12 04:16:50 +08:00
style:项目任务鼠标悬停显示全名
This commit is contained in:
@@ -15,6 +15,7 @@ export const ROUTER_LIST = '/stu/router/list post'
|
|||||||
export const ROUTER_PROCESS = '/stu/router/process'
|
export const ROUTER_PROCESS = '/stu/router/process'
|
||||||
export const LINK_DETAILS = linkId => `/link/getOne?linkId=${linkId} post`
|
export const LINK_DETAILS = linkId => `/link/getOne?linkId=${linkId} post`
|
||||||
export const PROJECT_PROCESS = '/stu/project/process'
|
export const PROJECT_PROCESS = '/stu/project/process'
|
||||||
|
export const ONLINE_PROCESS = '/onlineClasses/queryOnlineClassesStudyDetail post'
|
||||||
export const ROUTER_UNCOMPLETE_LIST = '/stu/router/unCompleteTaskList post'
|
export const ROUTER_UNCOMPLETE_LIST = '/stu/router/unCompleteTaskList post'
|
||||||
export const TAS_ACTIVITY_DETAIL = '/activity'
|
export const TAS_ACTIVITY_DETAIL = '/activity'
|
||||||
export const TASK_ACTIVITY_SIGN = '/stu/task/activity/sign post'
|
export const TASK_ACTIVITY_SIGN = '/stu/task/activity/sign post'
|
||||||
|
|||||||
@@ -31,7 +31,7 @@
|
|||||||
(e) => !whiteTypes(e.type)
|
(e) => !whiteTypes(e.type)
|
||||||
)" :key="index">
|
)" :key="index">
|
||||||
<div style="width: 70%">
|
<div style="width: 70%">
|
||||||
<div class="coursename">{{ value.name }}</div>
|
<div class="coursename" :title="value.name">{{ value.name }}</div>
|
||||||
<div class="coursetag">
|
<div class="coursetag">
|
||||||
<div class="tag1" style="margin-right: 11px; margin-top: 16px">
|
<div class="tag1" style="margin-right: 11px; margin-top: 16px">
|
||||||
必修
|
必修
|
||||||
@@ -254,6 +254,7 @@ import img from "@/assets/image/uploadimg.png";
|
|||||||
import { useRequest, request } from "@/api/request";
|
import { useRequest, request } from "@/api/request";
|
||||||
import {
|
import {
|
||||||
PROJECT_PROCESS,
|
PROJECT_PROCESS,
|
||||||
|
ONLINE_PROCESS,
|
||||||
ROUTER_PROCESS,
|
ROUTER_PROCESS,
|
||||||
LINK_DETAILS,
|
LINK_DETAILS,
|
||||||
STUDY_RECORD,
|
STUDY_RECORD,
|
||||||
@@ -271,7 +272,26 @@ const returnclick = () => {
|
|||||||
const { data } = useRequest(PROJECT_PROCESS, {
|
const { data } = useRequest(PROJECT_PROCESS, {
|
||||||
projectId: projectId || courseId,
|
projectId: projectId || courseId,
|
||||||
});
|
});
|
||||||
|
|
||||||
console.log("datadata", data);
|
console.log("datadata", data);
|
||||||
|
|
||||||
|
// const { onlinedata } = useRequest(ONLINE_PROCESS, {
|
||||||
|
// addView: false,
|
||||||
|
// cid:"1042123882713739264"
|
||||||
|
// });
|
||||||
|
// console.log("onlinedata", onlinedata);
|
||||||
|
|
||||||
|
// request(ONLINE_PROCESS, {
|
||||||
|
// addView: false,
|
||||||
|
// cid:"1042123882713739264"
|
||||||
|
// })
|
||||||
|
// .then((res) => {
|
||||||
|
// console.log(res)
|
||||||
|
// }).catch(err=>{
|
||||||
|
// console.log(err)
|
||||||
|
// })
|
||||||
|
|
||||||
|
|
||||||
const userInfo = computed(() => store.state.userInfo);
|
const userInfo = computed(() => store.state.userInfo);
|
||||||
const activeName = ref("first");
|
const activeName = ref("first");
|
||||||
const handleClick = (tab, event) => {
|
const handleClick = (tab, event) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user