Compare commits
2 Commits
master-zsh
...
20250421_h
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8238bafc19 | ||
|
|
0d4c6f958f |
@@ -41,7 +41,6 @@ VUE_APP_PUBLIC_PATH='/pc'
|
|||||||
VUE_APP_MANAGER_PATH='/manage'
|
VUE_APP_MANAGER_PATH='/manage'
|
||||||
VUE_APP_STUDENT_PATH='/fe-student'
|
VUE_APP_STUDENT_PATH='/fe-student'
|
||||||
VUE_APP_MANAGER_API_PATH='/manageApi'
|
VUE_APP_MANAGER_API_PATH='/manageApi'
|
||||||
VUE_APP_GROWTH_API_PATH=''
|
|
||||||
|
|
||||||
# 路由懒加载
|
# 路由懒加载
|
||||||
VUE_CLI_BABEL_TRANSPILE_MODULES = true
|
VUE_CLI_BABEL_TRANSPILE_MODULES = true
|
||||||
|
|||||||
@@ -37,7 +37,6 @@ VUE_APP_PUBLIC_PATH='/pc-release'
|
|||||||
VUE_APP_MANAGER_PATH='/manage-release'
|
VUE_APP_MANAGER_PATH='/manage-release'
|
||||||
VUE_APP_STUDENT_PATH='/fe-student-release'
|
VUE_APP_STUDENT_PATH='/fe-student-release'
|
||||||
VUE_APP_MANAGER_API_PATH='/manageApi-release'
|
VUE_APP_MANAGER_API_PATH='/manageApi-release'
|
||||||
VUE_APP_GROWTH_API_PATH='/growth'
|
|
||||||
|
|
||||||
# 登录地址
|
# 登录地址
|
||||||
VUE_APP_LOGIN_URL='https://u.boe.com/web-release/'
|
VUE_APP_LOGIN_URL='https://u.boe.com/web-release/'
|
||||||
|
|||||||
@@ -37,7 +37,6 @@ VUE_APP_PUBLIC_PATH='/pc'
|
|||||||
VUE_APP_MANAGER_PATH='/manage'
|
VUE_APP_MANAGER_PATH='/manage'
|
||||||
VUE_APP_STUDENT_PATH='/fe-student'
|
VUE_APP_STUDENT_PATH='/fe-student'
|
||||||
VUE_APP_MANAGER_API_PATH='/manageApi'
|
VUE_APP_MANAGER_API_PATH='/manageApi'
|
||||||
VUE_APP_GROWTH_API_PATH='/growth'
|
|
||||||
|
|
||||||
# 登录地址
|
# 登录地址
|
||||||
VUE_APP_LOGIN_URL='https://u.boe.com/web/'
|
VUE_APP_LOGIN_URL='https://u.boe.com/web/'
|
||||||
|
|||||||
@@ -36,7 +36,6 @@ VUE_APP_PUBLIC_PATH='/pc'
|
|||||||
VUE_APP_MANAGER_PATH='/manage'
|
VUE_APP_MANAGER_PATH='/manage'
|
||||||
VUE_APP_STUDENT_PATH='/fe-student'
|
VUE_APP_STUDENT_PATH='/fe-student'
|
||||||
VUE_APP_MANAGER_API_PATH='/manageApi'
|
VUE_APP_MANAGER_API_PATH='/manageApi'
|
||||||
VUE_APP_GROWTH_API_PATH='/growth'
|
|
||||||
|
|
||||||
# 登录地址
|
# 登录地址
|
||||||
VUE_APP_LOGIN_URL='https://u-pre.boe.com/web/'
|
VUE_APP_LOGIN_URL='https://u-pre.boe.com/web/'
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
60ab8a4b97b446b2dcd32889
|
|
||||||
16369
package-lock.json
generated
|
Before Width: | Height: | Size: 689 B |
|
Before Width: | Height: | Size: 665 B |
|
Before Width: | Height: | Size: 169 KiB |
|
Before Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 957 B |
@@ -16,9 +16,9 @@
|
|||||||
<meta name="referrer" content="strict-origin-when-cross-origin"/>
|
<meta name="referrer" content="strict-origin-when-cross-origin"/>
|
||||||
<link rel="icon" href="<%= BASE_URL %>logo/favicon.ico">
|
<link rel="icon" href="<%= BASE_URL %>logo/favicon.ico">
|
||||||
<title>京东方大学堂</title>
|
<title>京东方大学堂</title>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
||||||
// if(window.top != window.self){
|
// if(window.top != window.self){
|
||||||
// window.top.location=window.self.location;
|
// window.top.location=window.self.location;
|
||||||
// }
|
// }
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
/**我的授课记录*/
|
/**我的授课记录*/
|
||||||
import ajax from '@/api/boe/boeApiAjax.js'
|
import ajax from '@/api/boe/boeApiAjax.js'
|
||||||
import ajax2 from '@/api/unionAjax.js'
|
|
||||||
import axios from 'axios'
|
import axios from 'axios'
|
||||||
import { getToken } from '@/utils/token'
|
import { getToken } from '@/utils/token'
|
||||||
const baseURL = process.env.VUE_APP_BOE_BASE_API;
|
const baseURL = process.env.VUE_APP_BOE_BASE_API;
|
||||||
@@ -61,63 +60,13 @@ const exportStudentOfTearcher = function(userId) {
|
|||||||
const courseRecordList = function(data) {
|
const courseRecordList = function(data) {
|
||||||
return ajax.postJson('/b1/system/teacher/teacher-course-list',data);
|
return ajax.postJson('/b1/system/teacher/teacher-course-list',data);
|
||||||
}
|
}
|
||||||
const getListByToken = function(data) {
|
|
||||||
return ajax2.get('/manageApi',`/admin/teacherRecord/getListByToken?courseName=${data.courseName}&pageNo=${data.pageNo}&pageSize=${data.pageSize}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 导出授课记录
|
|
||||||
*
|
|
||||||
* @param {Object} data
|
|
||||||
*/
|
|
||||||
const courseRecordExport2 = function(data) {
|
|
||||||
return axios.request({
|
|
||||||
baseURL: "/manageApi",
|
|
||||||
url: '/admin/export/exportInTeacherRecord',
|
|
||||||
method: 'get',
|
|
||||||
data:data,
|
|
||||||
headers:{'Content-Type':'application/json;charset=utf-8'},
|
|
||||||
responseType: 'blob'
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 导出课程下的学员信息
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
const exportStudentOfCourse2 = function(courseId,courseType) {
|
|
||||||
return axios.request({
|
|
||||||
baseURL: "/manageApi",
|
|
||||||
url: '/admin/export/exportTeacherRecordStudentInfo?courseId='+courseId+'&courseType='+courseType,
|
|
||||||
method: 'get'
|
|
||||||
// headers:{'Content-Type':'application/json;charset=utf-8'},
|
|
||||||
// responseType: 'blob'
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 导出教师下的所有授课记录下的学员信息
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
const exportStudentOfTearcher2 = function(userId) {
|
|
||||||
return axios.request({
|
|
||||||
baseURL: "/manageApi",
|
|
||||||
url: '/b1/system/teacher/teacher-course-student-export?userId='+userId,
|
|
||||||
method: 'post',
|
|
||||||
headers:{'Content-Type':'application/json;charset=utf-8'},
|
|
||||||
responseType: 'blob'
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
courseRecordExport,
|
courseRecordExport,
|
||||||
courseRecordExport2,
|
|
||||||
courseRecordList,
|
courseRecordList,
|
||||||
getListByToken,
|
|
||||||
exportStudentOfCourse,
|
exportStudentOfCourse,
|
||||||
exportStudentOfCourse2,
|
exportStudentOfTearcher
|
||||||
exportStudentOfTearcher,
|
|
||||||
exportStudentOfTearcher2,
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +0,0 @@
|
|||||||
// import ajax from '@/utils/xajax.js'
|
|
||||||
import ajax from '../ajax';
|
|
||||||
// const baseURL = process.env.VUE_APP_GROWTH_API_PATH;
|
|
||||||
const baseURL = '/growth';
|
|
||||||
// 查询专业力必修列表
|
|
||||||
export const listData = (obj) => ajax.get(baseURL, '/professional/student/studentGrowthList', { params: obj })
|
|
||||||
// 查询专业力统计
|
|
||||||
export const getTotalGrowthTaskDetail = (obj) => ajax.get(baseURL, '/professional/student/getTotalGrowthTaskDetail', { params: obj })
|
|
||||||
@@ -34,48 +34,9 @@ const userRsSginupCourse = function(data){
|
|||||||
return ajax.postJson(baseURL,'/stu/project/stuCancelEnrollment',data);
|
return ajax.postJson(baseURL,'/stu/project/stuCancelEnrollment',data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* 获取学员指定新员工转正项目的bpm审批状况
|
|
||||||
* {studentId,pid}
|
|
||||||
* add by zhengsongbo on 2025-07-12
|
|
||||||
*/
|
|
||||||
const getStudntProjectInfo = function(pid){
|
|
||||||
return ajax.get(baseURL,`/stu/project/queryStudentInfo?pid=${pid}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* BPM项目:立即报名
|
|
||||||
* pid
|
|
||||||
* add by zhengsongbo on 2025-07-13
|
|
||||||
*/
|
|
||||||
const signUpBpmProjectNow = function(pid){
|
|
||||||
return ajax.get(baseURL,`/stu/project/signUpBpmProjectNow?pid=${pid}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* BPM项目:重新报名
|
|
||||||
* pid
|
|
||||||
* add by zhengsongbo on 2025-07-13
|
|
||||||
*/
|
|
||||||
const signUpBpmProjectAgain = function(data){
|
|
||||||
return ajax.postJson(baseURL,'/stu/project/signUpBpmProjectAgain',data);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 社招新员工
|
|
||||||
* add by zhengsongbo on 2025-07-14
|
|
||||||
*/
|
|
||||||
const getNewSocialHireProject = function(){
|
|
||||||
return ajax.get(baseURL,'/stu/project/getNewSocialHireProject');
|
|
||||||
}
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
getTaskNum,
|
getTaskNum,
|
||||||
userTaskList,
|
userTaskList,
|
||||||
userDeleteStudy,
|
userDeleteStudy,
|
||||||
userRsSginupCourse,
|
userRsSginupCourse
|
||||||
getStudntProjectInfo,
|
|
||||||
signUpBpmProjectNow,
|
|
||||||
signUpBpmProjectAgain,
|
|
||||||
getNewSocialHireProject
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* 案例模块的相关处理*/
|
/* 案例模块的相关处理*/
|
||||||
import ajax from '@/utils/xajax.js'
|
import ajax from '@/utils/xajax.js'
|
||||||
import ajaxs from '@/api/ajax.js'
|
|
||||||
/**首页查询
|
/**首页查询
|
||||||
* pageSize
|
* pageSize
|
||||||
* orderField
|
* orderField
|
||||||
@@ -88,12 +88,6 @@ const usernameList = function (pageSize) {
|
|||||||
const queryPraises = function (pageSize) {
|
const queryPraises = function (pageSize) {
|
||||||
return ajax.get(`/xboe/m/boe/cases/query-praises?pageSize=${pageSize}`);
|
return ajax.get(`/xboe/m/boe/cases/query-praises?pageSize=${pageSize}`);
|
||||||
}
|
}
|
||||||
const queryPraisesNew = function (pageSize,rankType) {
|
|
||||||
return ajax.get(`/xboe/m/boe/cases/queryPopularity?pageSize=${pageSize}&rankType=${rankType}`);
|
|
||||||
}
|
|
||||||
const queryRecommendRank = function (pageSize) {
|
|
||||||
return ajax.get(`/xboe/m/boe/cases/queryRecommendRank?pageSize=${pageSize}`);
|
|
||||||
}
|
|
||||||
/*
|
/*
|
||||||
好评榜
|
好评榜
|
||||||
@param pageSize 长度
|
@param pageSize 长度
|
||||||
@@ -101,9 +95,6 @@ const queryRecommendRank = function (pageSize) {
|
|||||||
const queryComments = function (pageSize) {
|
const queryComments = function (pageSize) {
|
||||||
return ajax.get(`/xboe/m/boe/cases/query-comments?pageSize=${pageSize}`);
|
return ajax.get(`/xboe/m/boe/cases/query-comments?pageSize=${pageSize}`);
|
||||||
}
|
}
|
||||||
const queryCommentsNew = function (pageSize,rankType) {
|
|
||||||
return ajax.get(`/xboe/m/boe/cases/queryHighOpinion?pageSize=${pageSize}&rankType=${rankType}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 专业分类
|
* 专业分类
|
||||||
@@ -195,36 +186,11 @@ const endReadTimer = (data)=> ajax.postJson('/xboe/m/boe/cases/recommend/record
|
|||||||
const caseYears = function (query = {}) {
|
const caseYears = function (query = {}) {
|
||||||
return ajax.post('/xboe/m/boe/cases/caseYears', query);
|
return ajax.post('/xboe/m/boe/cases/caseYears', query);
|
||||||
}
|
}
|
||||||
//案例推荐榜单
|
|
||||||
const getQueryRecommendRank = function (params) {
|
|
||||||
return ajax.get(`/xboe/m/boe/cases/queryRecommendRank?pageSize=${params.pageSize}`)
|
|
||||||
}
|
|
||||||
//案例上榜
|
|
||||||
const riseIntoRank = (data) => ajax.post(`/xboe/m/boe/cases/riseIntoRank?caseId=${data.caseId}`)
|
|
||||||
//取消上榜
|
|
||||||
const cancelRiseIntoRank = (data) => ajax.post(`/xboe/m/boe/cases/cancelRiseIntoRank?caseId=${data.caseId}`)
|
|
||||||
//调整榜单
|
|
||||||
const adjustRank = (data) => ajax.post(`/xboe/m/boe/cases/adjustRank?caseIds=${data.caseIds}`)
|
|
||||||
//收藏案例
|
|
||||||
const queryFavoriteCaseOfIndex = (params) => ajax.get(`/xboe/m/boe/cases/queryFavoriteCaseOfIndex?pageIndex=${params.pageIndex}&pageSize=${params.pageSize}&orderField=${params.orderField}&orderAsc=${params.orderAsc}`)
|
|
||||||
//浏览记录
|
|
||||||
const queryViewRecord = (data) => ajaxs.post(`/statApi/xboe/m/stat/userdynamic/list?pageIndex=${data.pageIndex}&pageSize=${data.pageSize}&contentType=${data.contentType}&aid=${data.aid}&hidden=${data.hidden}&eventKey=${data.eventKey}`)
|
|
||||||
//浏览量TOP榜单
|
|
||||||
const queryPopularityOfMajor = (params) => ajax.get(`/xboe/m/boe/cases/queryPopularityOfMajor?pageSize=${params.pageSize}&rankMonth=${params.rankMonth}&majorId=${params.majorId}`)
|
|
||||||
//浏览记录新
|
|
||||||
const browsingHistory = (params) => ajax.get(`/xboe/m/boe/cases/browsingHistory?pageIndex=${params.pageIndex}&pageSize=5`)
|
|
||||||
//获取所有的专业月份
|
|
||||||
const queryAllTimePopularityOfMajor = () => ajax.get('/xboe/m/boe/cases/queryAllTimePopularityOfMajor')
|
|
||||||
export default {
|
export default {
|
||||||
queryAllTimePopularityOfMajor,
|
|
||||||
getQueryRecommendRank,
|
|
||||||
queryPopularityOfMajor,
|
|
||||||
browsingHistory,
|
|
||||||
queryViewRecord,
|
|
||||||
queryFavoriteCaseOfIndex,
|
|
||||||
riseIntoRank,
|
|
||||||
cancelRiseIntoRank,
|
|
||||||
adjustRank,
|
|
||||||
indexList,
|
indexList,
|
||||||
queryList,
|
queryList,
|
||||||
queryListV2,
|
queryListV2,
|
||||||
@@ -236,10 +202,7 @@ export default {
|
|||||||
query,
|
query,
|
||||||
usernameList,
|
usernameList,
|
||||||
queryPraises,
|
queryPraises,
|
||||||
queryPraisesNew,
|
|
||||||
queryRecommendRank,
|
|
||||||
queryComments,
|
queryComments,
|
||||||
queryCommentsNew,
|
|
||||||
majorTypes,
|
majorTypes,
|
||||||
details,
|
details,
|
||||||
ids,
|
ids,
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ import ajax from '@/utils/xajax.js'
|
|||||||
* 返回 检查报名状态
|
* 返回 检查报名状态
|
||||||
*/
|
*/
|
||||||
const hasSignup = function(courseId) {
|
const hasSignup = function(courseId) {
|
||||||
return ajax.get('/xboe/school/study/signup/has?cid='+courseId);
|
return ajax.get('/xboe/school/study/signup/has?cid='+courseId);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -25,7 +25,7 @@ const hasSignup = function(courseId) {
|
|||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
const signup = function(data) {
|
const signup = function(data) {
|
||||||
return ajax.post('/xboe/school/study/signup/self', data);
|
return ajax.post('/xboe/school/study/signup/self', data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -38,7 +38,7 @@ const signup = function(data) {
|
|||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
const findSignup = function(data) {
|
const findSignup = function(data) {
|
||||||
return ajax.post('/xboe/school/study/signup/pagelist', data);
|
return ajax.post('/xboe/school/study/signup/pagelist', data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -46,7 +46,7 @@ const findSignup = function(data) {
|
|||||||
* @param {Object} id 报名的id
|
* @param {Object} id 报名的id
|
||||||
*/
|
*/
|
||||||
const deleteSignup = function(id) {
|
const deleteSignup = function(id) {
|
||||||
return ajax.post('/xboe/school/study/signup/delete?id='+id);
|
return ajax.post('/xboe/school/study/signup/delete?id='+id);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -55,7 +55,7 @@ const deleteSignup = function(id) {
|
|||||||
* Signup 对象集合, list
|
* Signup 对象集合, list
|
||||||
*/
|
*/
|
||||||
const importSignup = function(data) {
|
const importSignup = function(data) {
|
||||||
return ajax.post('/xboe/school/study/signup/import',data);
|
return ajax.post('/xboe/school/study/signup/import',data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -63,11 +63,11 @@ const importSignup = function(data) {
|
|||||||
* @param {Object} courseId 课程 的id
|
* @param {Object} courseId 课程 的id
|
||||||
*/
|
*/
|
||||||
const countSignup = function(courseId) {
|
const countSignup = function(courseId) {
|
||||||
return ajax.post('/xboe/school/study/signup/count-by-course',{courseId});
|
return ajax.post('/xboe/school/study/signup/count-by-course',{courseId});
|
||||||
}
|
}
|
||||||
|
|
||||||
const studyIndex = function(courseId) {
|
const studyIndex = function(courseId) {
|
||||||
return ajax.get('/xboe/school/study/course/studyIndex?cid='+courseId+'&addView=true');
|
return ajax.get('/xboe/school/study/course/studyIndex?cid='+courseId+'&addView=true');
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
@@ -80,7 +80,7 @@ const studyIndex = function(courseId) {
|
|||||||
* @returns
|
* @returns
|
||||||
*/
|
*/
|
||||||
const studyIndexPost = function(data) {
|
const studyIndexPost = function(data) {
|
||||||
return ajax.post('/xboe/school/study/course/studyIndex',data);
|
return ajax.post('/xboe/school/study/course/studyIndex',data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -88,7 +88,7 @@ const studyIndexPost = function(data) {
|
|||||||
* @param {Object} courseId
|
* @param {Object} courseId
|
||||||
*/
|
*/
|
||||||
const studyInfo = function(courseId) {
|
const studyInfo = function(courseId) {
|
||||||
return ajax.get('/xboe/school/study/course/info?cid='+courseId);
|
return ajax.get('/xboe/school/study/course/info?cid='+courseId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -98,7 +98,7 @@ const studyInfo = function(courseId) {
|
|||||||
* @param {Object} contentId
|
* @param {Object} contentId
|
||||||
*/
|
*/
|
||||||
const getStudyContentItem = function(studyId,contentId) {
|
const getStudyContentItem = function(studyId,contentId) {
|
||||||
return ajax.post('/xboe/school/study/course/study-course-content',{studyId,contentId});
|
return ajax.post('/xboe/school/study/course/study-course-content',{studyId,contentId});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -111,11 +111,7 @@ const getStudyContentItem = function(studyId,contentId) {
|
|||||||
* @returns
|
* @returns
|
||||||
*/
|
*/
|
||||||
const studyVideoTime = function(data) {
|
const studyVideoTime = function(data) {
|
||||||
return ajax.post('/xboe/school/study/course/study-video-time',data);
|
return ajax.post('/xboe/school/study/course/study-video-time',data);
|
||||||
}
|
|
||||||
|
|
||||||
const updateStudyVideoTime = function(data) {
|
|
||||||
return ajax.post('/xboe/school/study/course/updateStudyVideoTime',data);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -123,7 +119,7 @@ const updateStudyVideoTime = function(data) {
|
|||||||
* @returns
|
* @returns
|
||||||
*/
|
*/
|
||||||
const lastStudy = function() {
|
const lastStudy = function() {
|
||||||
return ajax.get('/xboe/school/study/course/last-study');
|
return ajax.get('/xboe/school/study/course/last-study');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -140,7 +136,7 @@ const lastStudy = function() {
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
const studyContent = function(data) {
|
const studyContent = function(data) {
|
||||||
return ajax.postJson('/xboe/school/study/course/study',data);
|
return ajax.postJson('/xboe/school/study/course/study',data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -154,7 +150,7 @@ const studyContent = function(data) {
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
const appendStudyTime = function(data) {
|
const appendStudyTime = function(data) {
|
||||||
return ajax.post('/xboe/school/study/course/appendtime',data);
|
return ajax.post('/xboe/school/study/course/appendtime',data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -165,7 +161,7 @@ const appendStudyTime = function(data) {
|
|||||||
* name: 学习人的姓名
|
* name: 学习人的姓名
|
||||||
*/
|
*/
|
||||||
const studyRecords = function(data) {
|
const studyRecords = function(data) {
|
||||||
return ajax.post('/xboe/school/study/course/pagelist',data);
|
return ajax.post('/xboe/school/study/course/pagelist',data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -177,7 +173,7 @@ const studyRecords = function(data) {
|
|||||||
* name: 学习人的姓名
|
* name: 学习人的姓名
|
||||||
*/
|
*/
|
||||||
const studyContentRecords = function(data) {
|
const studyContentRecords = function(data) {
|
||||||
return ajax.post('/xboe/school/study/course/contents',data);
|
return ajax.post('/xboe/school/study/course/contents',data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -189,7 +185,7 @@ const studyContentRecords = function(data) {
|
|||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
const studyExport = function(data) {
|
const studyExport = function(data) {
|
||||||
return ajax.post('/xboe/school/study/course/export',data);
|
return ajax.post('/xboe/school/study/course/export',data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -204,7 +200,7 @@ const studyExport = function(data) {
|
|||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
const myStudyList = function(query) {
|
const myStudyList = function(query) {
|
||||||
return ajax.post('/xboe/school/study/course/mylist',query);
|
return ajax.post('/xboe/school/study/course/mylist',query);
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 当前课程学习记录
|
* 当前课程学习记录
|
||||||
@@ -220,7 +216,7 @@ const myStudyList = function(query) {
|
|||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
const myCourseStudy = function(query) {
|
const myCourseStudy = function(query) {
|
||||||
return ajax.post('/xboe/school/study/course/course-users',query);
|
return ajax.post('/xboe/school/study/course/course-users',query);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -245,7 +241,7 @@ const myCourseStudy = function(query) {
|
|||||||
* answerJson
|
* answerJson
|
||||||
*/
|
*/
|
||||||
const saveExam = function(data) {
|
const saveExam = function(data) {
|
||||||
return ajax.postJson('/xboe/school/study/exam/save',data);
|
return ajax.postJson('/xboe/school/study/exam/save',data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -265,7 +261,7 @@ const saveExam = function(data) {
|
|||||||
* hwAnswer: 文本提交的信息
|
* hwAnswer: 文本提交的信息
|
||||||
*/
|
*/
|
||||||
const saveHomework = function(data) {
|
const saveHomework = function(data) {
|
||||||
return ajax.postJson('/xboe/school/study/homework/save',data);
|
return ajax.postJson('/xboe/school/study/homework/save',data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -283,7 +279,7 @@ const saveHomework = function(data) {
|
|||||||
* asScore:评估得分
|
* asScore:评估得分
|
||||||
*/
|
*/
|
||||||
const saveAssess = function(data) {
|
const saveAssess = function(data) {
|
||||||
return ajax.postJson('/xboe/school/study/assess/save',data);
|
return ajax.postJson('/xboe/school/study/assess/save',data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -292,7 +288,7 @@ const saveAssess = function(data) {
|
|||||||
* id:记录的id
|
* id:记录的id
|
||||||
*/
|
*/
|
||||||
const myHomework = function(id) {
|
const myHomework = function(id) {
|
||||||
return ajax.post('/xboe/school/study/homework/detail?id='+id);
|
return ajax.post('/xboe/school/study/homework/detail?id='+id);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -301,7 +297,7 @@ const myHomework = function(id) {
|
|||||||
* id:记录的id
|
* id:记录的id
|
||||||
*/
|
*/
|
||||||
const myExamPaper = function(id) {
|
const myExamPaper = function(id) {
|
||||||
return ajax.get('/xboe/school/study/exam/detail?id='+id);
|
return ajax.get('/xboe/school/study/exam/detail?id='+id);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -310,7 +306,7 @@ const myExamPaper = function(id) {
|
|||||||
* id:记录的id
|
* id:记录的id
|
||||||
*/
|
*/
|
||||||
const myAssess = function(id) {
|
const myAssess = function(id) {
|
||||||
return ajax.get('/xboe/school/study/assess/detail?id='+id);
|
return ajax.get('/xboe/school/study/assess/detail?id='+id);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -322,7 +318,7 @@ const myAssess = function(id) {
|
|||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
const myHomeworkList = function(data) {
|
const myHomeworkList = function(data) {
|
||||||
return ajax.post('/xboe/school/study/homework/list-study',data);
|
return ajax.post('/xboe/school/study/homework/list-study',data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -331,7 +327,7 @@ const myHomeworkList = function(data) {
|
|||||||
* 对应的提交记录的id,
|
* 对应的提交记录的id,
|
||||||
*/
|
*/
|
||||||
const myExamList = function(itemId) {
|
const myExamList = function(itemId) {
|
||||||
return ajax.post('/xboe/school/study/exam/list',{itemId});
|
return ajax.post('/xboe/school/study/exam/list',{itemId});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -342,8 +338,8 @@ const myExamList = function(itemId) {
|
|||||||
contentId:''
|
contentId:''
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
const myExamList2 = function(data) {
|
const myExamList2 = function(data) {
|
||||||
return ajax.post('/xboe/school/study/exam/list-study',data);
|
return ajax.post('/xboe/school/study/exam/list-study',data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -355,7 +351,7 @@ const myExamList2 = function(data) {
|
|||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
const myAssessList = function(data) {
|
const myAssessList = function(data) {
|
||||||
return ajax.post('/xboe/school/study/assess/list-study',data);
|
return ajax.post('/xboe/school/study/assess/list-study',data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -364,7 +360,7 @@ const myAssessList = function(data) {
|
|||||||
@param courseId 课程id 用于删除课程报名信息和修改课程学习人数
|
@param courseId 课程id 用于删除课程报名信息和修改课程学习人数
|
||||||
*/
|
*/
|
||||||
const deleteSignUp=function(id,courseId){
|
const deleteSignUp=function(id,courseId){
|
||||||
return ajax.post(`/xboe/school/study/course/delete-signup?id=${id}&couserId=${courseId}`);
|
return ajax.post(`/xboe/school/study/course/delete-signup?id=${id}&couserId=${courseId}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -393,49 +389,44 @@ const followIds=function (data){
|
|||||||
const myStudysFromES=function (data){
|
const myStudysFromES=function (data){
|
||||||
return ajax.post('/xboe/school/study/es/search',data);
|
return ajax.post('/xboe/school/study/es/search',data);
|
||||||
}
|
}
|
||||||
//导出作业
|
|
||||||
const homeworkExport=function (data){
|
|
||||||
return ajax.get(`/xboe/m/course/portal/export?contentId=${data.contentId}&courseName=${data.courseName}`);
|
|
||||||
}
|
|
||||||
/**根据id集合查询,传入的是id数组*/
|
/**根据id集合查询,传入的是id数组*/
|
||||||
const findByIds=function (ids){
|
const findByIds=function (ids){
|
||||||
return ajax.postJson('/xboe/school/study/es/list-by-ids',ids);
|
return ajax.postJson('/xboe/school/study/es/list-by-ids',ids);
|
||||||
}
|
}
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
hasSignup,
|
hasSignup,
|
||||||
signup,
|
signup,
|
||||||
findSignup,
|
findSignup,
|
||||||
deleteSignup,
|
deleteSignup,
|
||||||
importSignup,
|
importSignup,
|
||||||
countSignup,
|
countSignup,
|
||||||
studyIndex,
|
studyIndex,
|
||||||
studyInfo,
|
studyInfo,
|
||||||
studyVideoTime,
|
studyVideoTime,
|
||||||
updateStudyVideoTime,
|
lastStudy,
|
||||||
lastStudy,
|
studyContent,
|
||||||
studyContent,
|
appendStudyTime,
|
||||||
appendStudyTime,
|
studyRecords,
|
||||||
studyRecords,
|
studyContentRecords,
|
||||||
studyContentRecords,
|
getStudyContentItem,
|
||||||
getStudyContentItem,
|
studyExport,
|
||||||
studyExport,
|
myStudyList,
|
||||||
myStudyList,
|
saveHomework,
|
||||||
saveHomework,
|
saveExam,
|
||||||
saveExam,
|
saveAssess,
|
||||||
saveAssess,
|
myHomework,
|
||||||
myHomework,
|
myExamPaper,
|
||||||
myExamPaper,
|
myAssess,
|
||||||
myAssess,
|
myHomeworkList,
|
||||||
myHomeworkList,
|
myExamList,
|
||||||
myExamList,
|
myAssessList,
|
||||||
myAssessList,
|
myExamList2,
|
||||||
myExamList2,
|
myCourseStudy,
|
||||||
myCourseStudy,
|
|
||||||
myStudysFromES,
|
myStudysFromES,
|
||||||
homeworkExport,
|
|
||||||
findByIds,
|
findByIds,
|
||||||
deleteSignUp,
|
deleteSignUp,
|
||||||
ids,
|
ids,
|
||||||
followIds,
|
followIds,
|
||||||
studyIndexPost
|
studyIndexPost
|
||||||
|
|||||||
@@ -1,64 +0,0 @@
|
|||||||
/**课程标签模块的相关处理*/
|
|
||||||
import ajax from '@/utils/xajax.js'
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 分页查询:标签列表
|
|
||||||
* @param {Object} query
|
|
||||||
*/
|
|
||||||
const portalPageList = function(query) {
|
|
||||||
return ajax.post('/xboe/m/coursetag/page', query);
|
|
||||||
}
|
|
||||||
|
|
||||||
//改变标签的公共属性
|
|
||||||
const changeTagPublic = function (row){
|
|
||||||
// 返回 Promise 的 API 调用
|
|
||||||
return ajax.post('/xboe/m/coursetag/changePublicStatus', {
|
|
||||||
id: row.id,
|
|
||||||
isPublic: row.isPublic
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
//改变标签的热点属性
|
|
||||||
const changeTagHot = function (row){
|
|
||||||
// 返回 Promise 的 API 调用
|
|
||||||
return ajax.post('/xboe/m/coursetag/changeHotStatus', {
|
|
||||||
id: row.id,
|
|
||||||
isHot: row.isHot
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
//查询指定id的标签关联的所有课程
|
|
||||||
const showCourseByTag = function (query){
|
|
||||||
return ajax.post('/xboe/m/coursetag/showCourseByTag', query);
|
|
||||||
}
|
|
||||||
|
|
||||||
//解除指定id的课程和某个标签之间的关联关系
|
|
||||||
const unbindCourseTagRelation = function (params){
|
|
||||||
return ajax.post('/xboe/m/coursetag/unbind', params);
|
|
||||||
}
|
|
||||||
|
|
||||||
//编辑课程:标签模糊查询
|
|
||||||
const searchTags = function (params){
|
|
||||||
return ajax.post('/xboe/m/coursetag/searchTags', params);
|
|
||||||
}
|
|
||||||
|
|
||||||
//编辑课程:创建标签(与当前课程关联)
|
|
||||||
const createTag = function (params){
|
|
||||||
return ajax.post('/xboe/m/coursetag/createTag', params);
|
|
||||||
}
|
|
||||||
|
|
||||||
//获取最新前10个热点标签
|
|
||||||
const getHotTagList = function (params){
|
|
||||||
return ajax.post('/xboe/m/coursetag/getHotTagList', params);
|
|
||||||
}
|
|
||||||
|
|
||||||
export default {
|
|
||||||
portalPageList,
|
|
||||||
changeTagPublic,
|
|
||||||
changeTagHot,
|
|
||||||
showCourseByTag,
|
|
||||||
unbindCourseTagRelation,
|
|
||||||
searchTags,
|
|
||||||
createTag,
|
|
||||||
getHotTagList
|
|
||||||
}
|
|
||||||
@@ -72,9 +72,6 @@ const querypaper = function(data) {
|
|||||||
const getPaperContent = function(id) {
|
const getPaperContent = function(id) {
|
||||||
return ajax.get('/xboe/m/exam/paper/paper-content?id=' + id);
|
return ajax.get('/xboe/m/exam/paper/paper-content?id=' + id);
|
||||||
}
|
}
|
||||||
const newPaperContent = function(id){
|
|
||||||
return ajax.get('/xboe/m/course/content/exam/paper-content?courseExamId='+id);
|
|
||||||
}
|
|
||||||
export default {
|
export default {
|
||||||
detail,
|
detail,
|
||||||
update,
|
update,
|
||||||
@@ -83,7 +80,6 @@ export default {
|
|||||||
querylist,
|
querylist,
|
||||||
querypaper,
|
querypaper,
|
||||||
getPaperContent,
|
getPaperContent,
|
||||||
newPaperContent,
|
|
||||||
batchImportCount,
|
batchImportCount,
|
||||||
batchImportData
|
batchImportData
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import ajax from '@/utils/xajax.js'
|
import ajax from '@/utils/xajax.js'
|
||||||
import ajax2 from '../unionAjax.js';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 按名称查询
|
* 按名称查询
|
||||||
@@ -9,9 +9,7 @@ const findByName = function(name) {
|
|||||||
return ajax.get('/xboe/teacher/name?name=' + name);
|
return ajax.get('/xboe/teacher/name?name=' + name);
|
||||||
}
|
}
|
||||||
|
|
||||||
const findByNameNew = function(name) {
|
|
||||||
return ajax2.get('/manageApi/admin/teacher/selectTeacher?name=' + name);
|
|
||||||
}
|
|
||||||
const updateTeacher=function(data){
|
const updateTeacher=function(data){
|
||||||
return ajax.postJson('/xboe/teacher/update-teacher',data);
|
return ajax.postJson('/xboe/teacher/update-teacher',data);
|
||||||
}
|
}
|
||||||
@@ -38,7 +36,7 @@ const detailTeacher=function (id){
|
|||||||
* tlevelId级别
|
* tlevelId级别
|
||||||
* salaryId发薪地
|
* salaryId发薪地
|
||||||
* tsystemId
|
* tsystemId
|
||||||
|
|
||||||
* } query
|
* } query
|
||||||
* @returns
|
* @returns
|
||||||
*/
|
*/
|
||||||
@@ -219,7 +217,7 @@ export default {
|
|||||||
update,
|
update,
|
||||||
del,
|
del,
|
||||||
detail,
|
detail,
|
||||||
findByNameNew,
|
findByName,
|
||||||
updateSysId,
|
updateSysId,
|
||||||
has,
|
has,
|
||||||
start,
|
start,
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 360 B |
|
Before Width: | Height: | Size: 467 B |
|
Before Width: | Height: | Size: 412 B |
|
Before Width: | Height: | Size: 474 B |
|
Before Width: | Height: | Size: 427 B |
|
Before Width: | Height: | Size: 471 B |
|
Before Width: | Height: | Size: 424 B |
|
Before Width: | Height: | Size: 461 B |
|
Before Width: | Height: | Size: 689 B |
|
Before Width: | Height: | Size: 625 B |
|
Before Width: | Height: | Size: 514 B |
|
Before Width: | Height: | Size: 665 B |
|
Before Width: | Height: | Size: 576 B |
|
Before Width: | Height: | Size: 475 B |
|
Before Width: | Height: | Size: 528 B |
|
Before Width: | Height: | Size: 476 B |
|
Before Width: | Height: | Size: 540 B |
|
Before Width: | Height: | Size: 387 B |
|
Before Width: | Height: | Size: 413 B |
|
Before Width: | Height: | Size: 425 B |
|
Before Width: | Height: | Size: 398 B |
|
Before Width: | Height: | Size: 4.9 KiB |
|
Before Width: | Height: | Size: 6.6 KiB |
|
Before Width: | Height: | Size: 69 KiB After Width: | Height: | Size: 362 KiB |
|
Before Width: | Height: | Size: 437 KiB |
|
Before Width: | Height: | Size: 657 KiB |
|
Before Width: | Height: | Size: 29 KiB |
|
Before Width: | Height: | Size: 28 KiB |
BIN
src/assets/images/hotforum/005.png
Normal file
|
After Width: | Height: | Size: 218 KiB |
BIN
src/assets/images/hotforum/006.png
Normal file
|
After Width: | Height: | Size: 151 KiB |
|
Before Width: | Height: | Size: 220 KiB |
|
Before Width: | Height: | Size: 84 KiB |
|
Before Width: | Height: | Size: 111 KiB |
|
Before Width: | Height: | Size: 33 KiB |
|
Before Width: | Height: | Size: 244 KiB |
|
Before Width: | Height: | Size: 186 KiB |
|
Before Width: | Height: | Size: 690 KiB After Width: | Height: | Size: 1.6 MiB |
|
Before Width: | Height: | Size: 1.4 MiB |
BIN
src/assets/images/hotforum/back_2025.jpg
Normal file
|
After Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 3.0 KiB |
|
Before Width: | Height: | Size: 2.9 KiB |
|
Before Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 42 KiB |
|
Before Width: | Height: | Size: 2.9 KiB |
|
Before Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 5.5 KiB |
@@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<!--弹出窗口设置-->
|
<!--弹出窗口设置-->
|
||||||
<div>
|
<div>
|
||||||
<div v-for="pop in popupList" :key="pop.id">
|
<div v-for="pop in popupList" :key="pop.id">wwww
|
||||||
<el-dialog :close-on-press-escape="false" :close-on-click-modal="false" class="medalbox" :visible.sync="pop.show" :append-to-body="true" >
|
<el-dialog :close-on-press-escape="false" :close-on-click-modal="false" class="medalbox" :visible.sync="pop.show" :append-to-body="true" >
|
||||||
<div style="text-align: center;position: relative;">
|
<div style="text-align: center;position: relative;">
|
||||||
<!-- <span style="float: right;" @click="pop.show = false"><i style="font-size: 28px;color: #000000;" class="el-icon-close"></i></span> -->
|
<!-- <span style="float: right;" @click="pop.show = false"><i style="font-size: 28px;color: #000000;" class="el-icon-close"></i></span> -->
|
||||||
|
|||||||
@@ -8,10 +8,7 @@
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="article-info-date">
|
<div class="article-info-date">
|
||||||
<div class="box">
|
<el-button @click="delItem(item)" type="text" style="color: #8590A6;font-size:14px" icon="el-icon-star-on">取消收藏</el-button>
|
||||||
<div class="image"></div>
|
|
||||||
<el-button @click="delItem(item)" type="text" style="color: #8590A6;font-size:14px">取消收藏</el-button>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="article-info-tools">
|
<div class="article-info-tools">
|
||||||
@@ -164,26 +161,6 @@
|
|||||||
line-height: 40px;
|
line-height: 40px;
|
||||||
font-weight: 200;
|
font-weight: 200;
|
||||||
color: #999999;
|
color: #999999;
|
||||||
display: flex;
|
|
||||||
justify-content: end;
|
|
||||||
.box{
|
|
||||||
display: flex;
|
|
||||||
justify-content: end;
|
|
||||||
align-items: center;
|
|
||||||
.image{
|
|
||||||
width: 14px;
|
|
||||||
height: 14px;
|
|
||||||
background: url('../../assets/images/case/Frame(5).png') no-repeat;
|
|
||||||
background-size: 100%;
|
|
||||||
margin-right: 10px;
|
|
||||||
}
|
|
||||||
&:hover{
|
|
||||||
.image{
|
|
||||||
background: url('../../assets/images/case/Frame(12).png') no-repeat;
|
|
||||||
background-size: 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
i {
|
i {
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -637,9 +637,7 @@ export default {
|
|||||||
}
|
}
|
||||||
this.teacherList = rs.result.teachers;
|
this.teacherList = rs.result.teachers;
|
||||||
this.teacherName = rs.result.teachers;
|
this.teacherName = rs.result.teachers;
|
||||||
this.teacher = rs.result.teachers.map(item => {
|
this.teacher = rs.result.teachers.map(res => res.teacherName);
|
||||||
return `${item.teacherName}(${item.userNo})`
|
|
||||||
});
|
|
||||||
this.totalContent = rs.result.contents.length; //计算总内容数
|
this.totalContent = rs.result.contents.length; //计算总内容数
|
||||||
if (this.courseInfo.tags != "") {
|
if (this.courseInfo.tags != "") {
|
||||||
this.showTags = this.courseInfo.tags.split(",");
|
this.showTags = this.courseInfo.tags.split(",");
|
||||||
|
|||||||
@@ -681,9 +681,7 @@ export default {
|
|||||||
}
|
}
|
||||||
this.teacherList = rs.result.teachers;
|
this.teacherList = rs.result.teachers;
|
||||||
this.teacherName = rs.result.teachers;
|
this.teacherName = rs.result.teachers;
|
||||||
this.teacher = rs.result.teachers.map(item => {
|
this.teacher = rs.result.teachers.map(item => item.teacherName);
|
||||||
return `${item.teacherName}(${item.userNo})`
|
|
||||||
});
|
|
||||||
this.showTags = this.courseInfo.tags.split(",");
|
this.showTags = this.courseInfo.tags.split(",");
|
||||||
if (rs.result.course.resOwner3 == "") {
|
if (rs.result.course.resOwner3 == "") {
|
||||||
this.resOwnerArray = [
|
this.resOwnerArray = [
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
</el-input>
|
</el-input>
|
||||||
<div class="choice-box" v-if="teacherDownList.length>0">
|
<div class="choice-box" v-if="teacherDownList.length>0">
|
||||||
<ul>
|
<ul>
|
||||||
<li v-for="te in teacherDownList" :key="te.key" @click="changeTeachers(te)">{{te.teacherName + '(' + te.teacherCode + ')'}}</li>
|
<li v-for="te in teacherDownList" :key="te.key" @click="changeTeachers(te)">{{te.teacherName + te.teacherCode}}</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<!-- <el-select
|
<!-- <el-select
|
||||||
@@ -88,15 +88,15 @@
|
|||||||
if (this.teacherValues !== '') {
|
if (this.teacherValues !== '') {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
try {
|
try {
|
||||||
const { data, message, code } = await apiTeacher.findByNameNew(this.teacherValues);
|
const { result, message, status } = await apiTeacher.findByName(this.teacherValues);
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
if (code === 200) {
|
if (status === 200) {
|
||||||
let list = [];
|
let list = [];
|
||||||
data.forEach(item => {
|
result.forEach(item => {
|
||||||
list.push({
|
list.push({
|
||||||
teacherId: item.id,
|
teacherId: item.id,
|
||||||
teacherName: item.name,
|
teacherName: item.name,
|
||||||
teacherCode: item.mobile
|
teacherCode: item.code
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
this.teacherDownList = list;
|
this.teacherDownList = list;
|
||||||
|
|||||||
@@ -85,28 +85,6 @@
|
|||||||
<el-form-item label="考试说明">
|
<el-form-item label="考试说明">
|
||||||
<el-input type="textarea" show-word-limit v-model="examInfo.info" placeholder="关于考试的说明(限255字以内)" maxlength="255"></el-input>
|
<el-input type="textarea" show-word-limit v-model="examInfo.info" placeholder="关于考试的说明(限255字以内)" maxlength="255"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="随机模式">
|
|
||||||
<el-col :span="4">
|
|
||||||
<el-radio-group v-model="examInfo.randomMode">
|
|
||||||
<el-radio :label="true">是</el-radio>
|
|
||||||
<el-radio :label="false">否</el-radio>
|
|
||||||
</el-radio-group>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="20" v-if="examInfo.randomMode&&examInfo.paperType==1">
|
|
||||||
<el-form-item label="数量">
|
|
||||||
<el-input-number v-model="examInfo.qnum" :min="1" :max="examPaper.items.length" label="数量"></el-input-number>
|
|
||||||
<span style="margin-left:10px;" v-if="examPaper.items.length==0">先添加试题</span>
|
|
||||||
<span style="margin-left:10px;" v-if="examPaper.items.length>0">试卷有 {{examPaper.items.length}} 道试题</span>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="20" v-if="examInfo.randomMode&&examInfo.paperType==2">
|
|
||||||
<el-form-item label="数量">
|
|
||||||
<el-input-number v-model="examInfo.qnum" :min="1" :max="usePaper.counts" label="数量"></el-input-number>
|
|
||||||
<span style="margin-left:10px;" v-if="usePaper.counts==0">先选择试卷</span>
|
|
||||||
<span style="margin-left:10px;" v-if="usePaper.counts>0">试卷有 {{usePaper.counts}} 道试题</span>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</el-form-item>
|
|
||||||
</el-form>
|
</el-form>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="examInfo.paperType==1">
|
<div v-if="examInfo.paperType==1">
|
||||||
@@ -307,9 +285,7 @@
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(!this.examInfo.randomMode){
|
|
||||||
this.examInfo.qnum = 0
|
|
||||||
}
|
|
||||||
this.$emit("save",this.examInfo);
|
this.$emit("save",this.examInfo);
|
||||||
},
|
},
|
||||||
deleteExam(){ //删除
|
deleteExam(){ //删除
|
||||||
@@ -318,8 +294,6 @@
|
|||||||
cancelButtonText: '取消',
|
cancelButtonText: '取消',
|
||||||
type: 'warning'
|
type: 'warning'
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
this.examInfo.randomMode = false;
|
|
||||||
this.examInfo.qnum = 0;
|
|
||||||
this.$emit("remove",this.examInfo);
|
this.$emit("remove",this.examInfo);
|
||||||
}).catch(() => {
|
}).catch(() => {
|
||||||
|
|
||||||
|
|||||||
@@ -253,9 +253,6 @@
|
|||||||
</el-select> -->
|
</el-select> -->
|
||||||
<choice :teacherValue="teacherValues" @getTeacherList="getTeacherList"></choice>
|
<choice :teacherValue="teacherValues" @getTeacherList="getTeacherList"></choice>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="标签" required>
|
|
||||||
<courseTag ref="courseTag" :courseId="curCourseId" :sysTypeList="sysTypeList" :initialTags="courseTags" @change="handleTagsChange"></courseTag>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="关键字">
|
<el-form-item label="关键字">
|
||||||
<el-input v-model.trim="keywords" maxlength="100" @keyup.enter.native="changeKeywords" placeholder="请输入关键字"></el-input>
|
<el-input v-model.trim="keywords" maxlength="100" @keyup.enter.native="changeKeywords" placeholder="请输入关键字"></el-input>
|
||||||
<el-tag v-for="(tag,index) in tips" size="small" :key="index" closable type="info" @close="closeKeywordsTag(tag,index)">
|
<el-tag v-for="(tag,index) in tips" size="small" :key="index" closable type="info" @close="closeKeywordsTag(tag,index)">
|
||||||
@@ -405,7 +402,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import courseTag from "@/components/Course/courseTag.vue";
|
|
||||||
import choice from '@/components/Course/choice.vue';
|
import choice from '@/components/Course/choice.vue';
|
||||||
import agreement from '@/components/Portal/agreement.vue';
|
import agreement from '@/components/Portal/agreement.vue';
|
||||||
import weikeContent from '@/components/Course/weikeContent.vue';
|
import weikeContent from '@/components/Course/weikeContent.vue';
|
||||||
@@ -422,7 +418,6 @@ import apiCourse from '../../api/modules/course.js';
|
|||||||
import apiCourseAudit from '../../api/modules/courseAudit.js';
|
import apiCourseAudit from '../../api/modules/courseAudit.js';
|
||||||
import apiOrg from '../../api/system/organiza.js';
|
import apiOrg from '../../api/system/organiza.js';
|
||||||
import apiUser from '../../api/system/user.js';
|
import apiUser from '../../api/system/user.js';
|
||||||
import apiCourseTag from '../../api/modules/courseTag.js';
|
|
||||||
import WxEditor from '@/components/Editor/index.vue';
|
import WxEditor from '@/components/Editor/index.vue';
|
||||||
import catalogSort from '@/components/Course/catalogSort.vue';
|
import catalogSort from '@/components/Course/catalogSort.vue';
|
||||||
import { courseType, getType } from '../../utils/tools.js';
|
import { courseType, getType } from '../../utils/tools.js';
|
||||||
@@ -431,7 +426,7 @@ import filecloud from '@/components/FileCloud/index.vue';
|
|||||||
import chooseOrg from '@/components/System/chooseOrg.vue';
|
import chooseOrg from '@/components/System/chooseOrg.vue';
|
||||||
export default {
|
export default {
|
||||||
props: {},
|
props: {},
|
||||||
components: { courseTag, weikeContent, catalogCourseware, imageUpload, WxEditor, catalogSort,agreement,filecloud,choice,chooseOrg},
|
components: { weikeContent, catalogCourseware, imageUpload, WxEditor, catalogSort,agreement,filecloud,choice,chooseOrg},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
keywords:'',//关键字的定义
|
keywords:'',//关键字的定义
|
||||||
@@ -471,7 +466,6 @@ export default {
|
|||||||
orgName:'',
|
orgName:'',
|
||||||
orgNamePath:'',
|
orgNamePath:'',
|
||||||
orgKid:'',
|
orgKid:'',
|
||||||
courseTags:[],
|
|
||||||
courseInfo: {
|
courseInfo: {
|
||||||
id: '',
|
id: '',
|
||||||
name: '',
|
name: '',
|
||||||
@@ -598,15 +592,6 @@ export default {
|
|||||||
closeKeywordsTag(item,index){
|
closeKeywordsTag(item,index){
|
||||||
this.tips.splice(index, 1);
|
this.tips.splice(index, 1);
|
||||||
},
|
},
|
||||||
// 处理标签变化事件
|
|
||||||
handleTagsChange(tags) {
|
|
||||||
console.log("父组件:",tags)
|
|
||||||
let ids = "";
|
|
||||||
tags.forEach(tag=>{
|
|
||||||
ids += tag.id + ',';
|
|
||||||
})
|
|
||||||
this.courseInfo.tags = ids;
|
|
||||||
},
|
|
||||||
showChooseOrg(){
|
showChooseOrg(){
|
||||||
this.$refs.refChooseOrg.dlgShow = true;
|
this.$refs.refChooseOrg.dlgShow = true;
|
||||||
},
|
},
|
||||||
@@ -737,7 +722,6 @@ export default {
|
|||||||
this.$emit('close');
|
this.$emit('close');
|
||||||
},
|
},
|
||||||
initShow(editData) {
|
initShow(editData) {
|
||||||
console.log('初始化显示内容============', editData)
|
|
||||||
//console.log(this.$refs.weikePanel,'this.$refs.weikePanel');
|
//console.log(this.$refs.weikePanel,'this.$refs.weikePanel');
|
||||||
//this.$refs.weikePanel.init();
|
//this.$refs.weikePanel.init();
|
||||||
//this.$refs.onlineCourse.resetData();
|
//this.$refs.onlineCourse.resetData();
|
||||||
@@ -785,8 +769,6 @@ export default {
|
|||||||
this.tips=[];
|
this.tips=[];
|
||||||
|
|
||||||
if (!editData) {
|
if (!editData) {
|
||||||
this.tips=[];
|
|
||||||
this.courseTags=[],
|
|
||||||
//console.log("新建课程?");
|
//console.log("新建课程?");
|
||||||
//以下为了保证初始化处理
|
//以下为了保证初始化处理
|
||||||
this.weikeReset = Math.round(Math.random()) + '';
|
this.weikeReset = Math.round(Math.random()) + '';
|
||||||
@@ -883,8 +865,6 @@ export default {
|
|||||||
if (rs.status == 200) {
|
if (rs.status == 200) {
|
||||||
this.courseChooseShow = false;
|
this.courseChooseShow = false;
|
||||||
this.courseInfo = rs.result;
|
this.courseInfo = rs.result;
|
||||||
this.curCourseId = this.courseInfo.id
|
|
||||||
console.log('保存课程成功',this.curCourseId)
|
|
||||||
if (this.courseChooseId == 1) {
|
if (this.courseChooseId == 1) {
|
||||||
this.weike.dlgShow = true;
|
this.weike.dlgShow = true;
|
||||||
} else {
|
} else {
|
||||||
@@ -913,8 +893,6 @@ export default {
|
|||||||
try {
|
try {
|
||||||
const { result, status } = await apiCourse.detail(id);
|
const { result, status } = await apiCourse.detail(id);
|
||||||
if (status === 200) {
|
if (status === 200) {
|
||||||
this.courseTags = result.tagList;
|
|
||||||
console.log('获取课程信息成功', this.courseTags);
|
|
||||||
//把数据附给三个对象
|
//把数据附给三个对象
|
||||||
if(result.course.visible==''){
|
if(result.course.visible==''){
|
||||||
result.course.visible=false;
|
result.course.visible=false;
|
||||||
@@ -980,6 +958,7 @@ export default {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
this.resOwnerArray=[];
|
this.resOwnerArray=[];
|
||||||
if (result.course.resOwner1 == '') {
|
if (result.course.resOwner1 == '') {
|
||||||
this.resOwnerArray.push(result.course.resOwner1);
|
this.resOwnerArray.push(result.course.resOwner1);
|
||||||
@@ -1264,7 +1243,7 @@ export default {
|
|||||||
teachers: saveTeachers,
|
teachers: saveTeachers,
|
||||||
crowds:crowds
|
crowds:crowds
|
||||||
};
|
};
|
||||||
console.log(postData);
|
//console.log(postData);
|
||||||
//this.btnLoading=false;
|
//this.btnLoading=false;
|
||||||
apiCourse
|
apiCourse
|
||||||
.saveBase(postData)
|
.saveBase(postData)
|
||||||
|
|||||||
@@ -48,17 +48,13 @@ export default {
|
|||||||
let name = '';
|
let name = '';
|
||||||
if (this.course && this.course.name && this.course.name !== '') {
|
if (this.course && this.course.name && this.course.name !== '') {
|
||||||
name = this.course.name.replace('color:#FF0000', 'color:#fff');
|
name = this.course.name.replace('color:#FF0000', 'color:#fff');
|
||||||
console.log("name gengxindata1 : ",name)
|
|
||||||
}
|
}
|
||||||
if (this.course && this.course.courseName && this.course.courseName !== '') {
|
if (this.course && this.course.courseName && this.course.courseName !== '') {
|
||||||
name = this.course.courseName.replace('color:#FF0000', 'color:#fff');
|
name = this.course.courseName.replace('color:#FF0000', 'color:#fff');
|
||||||
console.log("name gengxindata2 : ",name)
|
|
||||||
}
|
}
|
||||||
if (this.course && this.course.title && this.course.title !== '') {
|
if (this.course && this.course.title && this.course.title !== '') {
|
||||||
name = this.course.title.replace('color:#FF0000', 'color:#fff');
|
name = this.course.title.replace('color:#FF0000', 'color:#fff');
|
||||||
console.log("name gengxindata3 : ",name)
|
|
||||||
}
|
}
|
||||||
console.log("name gengxindata4 : ",name)
|
|
||||||
return name;
|
return name;
|
||||||
// course.name || course.courseName || course.title
|
// course.name || course.courseName || course.title
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,200 +0,0 @@
|
|||||||
|
|
||||||
<template>
|
|
||||||
<div class="tag-container">
|
|
||||||
<el-select style="width: 100%;"
|
|
||||||
v-model="selectedTags"
|
|
||||||
multiple
|
|
||||||
filterable
|
|
||||||
value-key="id"
|
|
||||||
remote
|
|
||||||
reserve-keyword
|
|
||||||
:remote-method="debouncedSearch"
|
|
||||||
:loading="loading"
|
|
||||||
:disabled="sysTypeList.length===0"
|
|
||||||
placeholder="按回车键Enter创建标签"
|
|
||||||
@remove-tag="handleTagRemove"
|
|
||||||
@change="handleSelectionChange"
|
|
||||||
@keyup.enter.native="handleEnterKey"
|
|
||||||
>
|
|
||||||
<el-option
|
|
||||||
v-for="item in searchResults"
|
|
||||||
:key="item.id"
|
|
||||||
:label="item.tagName"
|
|
||||||
:value="item"
|
|
||||||
/>
|
|
||||||
</el-select>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import { debounce } from 'lodash'
|
|
||||||
import apiCourseTag from '@/api/modules/courseTag.js'
|
|
||||||
import { mapGetters } from 'vuex';
|
|
||||||
|
|
||||||
export default {
|
|
||||||
props: {
|
|
||||||
courseId:{
|
|
||||||
type:String,
|
|
||||||
require:true,
|
|
||||||
},
|
|
||||||
sysTypeList:{
|
|
||||||
type:Array,
|
|
||||||
require:true,
|
|
||||||
default: []
|
|
||||||
},
|
|
||||||
maxTags: {
|
|
||||||
type: Number,
|
|
||||||
default: 10
|
|
||||||
},
|
|
||||||
// 添加:接收初始标签数据的props
|
|
||||||
initialTags: {
|
|
||||||
type: Array,
|
|
||||||
default: () => []
|
|
||||||
}
|
|
||||||
},
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
selectedTags: [],
|
|
||||||
searchResults: [],
|
|
||||||
loading: false,
|
|
||||||
tagMap: new Map(),
|
|
||||||
inputBuffer: '',
|
|
||||||
params: {},
|
|
||||||
tag: {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
computed: {
|
|
||||||
...mapGetters(['userInfo']),
|
|
||||||
displayTags() {
|
|
||||||
return this.selectedTags.map(tag =>
|
|
||||||
typeof tag === 'object' ? tag : this.tagMap.get(tag)
|
|
||||||
).filter(Boolean)
|
|
||||||
}
|
|
||||||
},
|
|
||||||
created() {
|
|
||||||
this.debouncedSearch = debounce(this.doSearch, 500)
|
|
||||||
console.log("----------sysTypeList.length---------->"+this.sysTypeList.length)
|
|
||||||
console.log("----------sysTypeList.length---------->"+(this.sysTypeList.length===0))
|
|
||||||
},
|
|
||||||
// 添加:挂载时初始化标签数据
|
|
||||||
mounted() {
|
|
||||||
if (this.initialTags && this.initialTags.length > 0) {
|
|
||||||
this.selectedTags = this.initialTags;
|
|
||||||
this.searchResults = this.initialTags;
|
|
||||||
// 将初始标签添加到tagMap中,确保删除功能正常
|
|
||||||
this.initialTags.forEach(tag => {
|
|
||||||
if (tag.id) {
|
|
||||||
this.tagMap.set(tag.id, tag);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
watch: {
|
|
||||||
// 监听课程ID变化,重置所有状态
|
|
||||||
courseId(newVal) {
|
|
||||||
this.resetTagState();
|
|
||||||
},
|
|
||||||
// 监听初始标签变化,重新加载
|
|
||||||
initialTags(newVal) {
|
|
||||||
this.selectedTags = newVal || [];
|
|
||||||
this.searchResults = newVal || [];
|
|
||||||
this.tagMap.clear(); // 清空旧缓存
|
|
||||||
newVal.forEach(tag => {
|
|
||||||
if (tag.id) this.tagMap.set(tag.id, tag);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
// 新增:重置标签状态的方法
|
|
||||||
resetTagState() {
|
|
||||||
this.selectedTags = [];
|
|
||||||
this.searchResults = [];
|
|
||||||
this.tagMap.clear();
|
|
||||||
this.loading = false;
|
|
||||||
this.params = {};
|
|
||||||
},
|
|
||||||
async doSearch(query) {
|
|
||||||
if (!query.trim()) {
|
|
||||||
this.searchResults = []
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
this.loading = true
|
|
||||||
try {
|
|
||||||
const {result:tags} = await apiCourseTag.searchTags({tagName:query})
|
|
||||||
tags.forEach(item => {
|
|
||||||
this.tagMap.set(item.id, item)
|
|
||||||
})
|
|
||||||
this.searchResults = tags
|
|
||||||
} finally {
|
|
||||||
this.loading = false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
handleTagRemove(tagId) {
|
|
||||||
this.selectedTags = this.selectedTags.filter(id => id !== tagId)
|
|
||||||
this.$emit('change', this.displayTags)
|
|
||||||
},
|
|
||||||
removeTag(tagId) {
|
|
||||||
this.handleTagRemove(tagId)
|
|
||||||
},
|
|
||||||
|
|
||||||
//按回车键,创建新标签
|
|
||||||
handleEnterKey(event) {
|
|
||||||
const inputVal = event.target.value?.trim()
|
|
||||||
if (!this.searchResults.length && inputVal && this.selectedTags.length < this.maxTags) {
|
|
||||||
this.createNewTag(event.target.value.trim())
|
|
||||||
event.target.value = ''
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
// 新增:处理选择变化事件
|
|
||||||
handleSelectionChange() {
|
|
||||||
this.$emit('change', this.displayTags)
|
|
||||||
},
|
|
||||||
//创建新标签
|
|
||||||
async createNewTag(tagName) {
|
|
||||||
// 标签不能超过八个字
|
|
||||||
if (tagName.length > 8) {
|
|
||||||
this.$message.error('标签不能超过8个字')
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this.loading = true
|
|
||||||
try {
|
|
||||||
this.params.courseId = this.courseId;
|
|
||||||
this.params.tagName = tagName;
|
|
||||||
// 分类
|
|
||||||
if (this.sysTypeList.length > 0) {
|
|
||||||
this.params.sysType1 = this.sysTypeList[0]; //一级的id
|
|
||||||
}
|
|
||||||
if (this.sysTypeList.length > 1) {
|
|
||||||
this.params.sysType2 = this.sysTypeList[1]; //二级的id
|
|
||||||
}
|
|
||||||
if (this.sysTypeList.length > 2) {
|
|
||||||
this.params.sysType3 = this.sysTypeList[2]; //三级的id
|
|
||||||
}
|
|
||||||
const {result:newTag} = await apiCourseTag.createTag(this.params)
|
|
||||||
this.$message.success('标签创建成功');
|
|
||||||
this.searchResults.push(newTag)
|
|
||||||
console.log("----------newTag---------->",this.searchResults)
|
|
||||||
this.tagMap.set(newTag.id, newTag)
|
|
||||||
this.$emit('change', this.displayTags)
|
|
||||||
} finally {
|
|
||||||
this.loading = false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
.tag-container {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.tag-preview {
|
|
||||||
margin-top: 8px;
|
|
||||||
}
|
|
||||||
.el-tag {
|
|
||||||
margin-right: 6px;
|
|
||||||
margin-bottom: 6px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
@@ -326,91 +326,48 @@ export default {
|
|||||||
return qitems;
|
return qitems;
|
||||||
},
|
},
|
||||||
startTest(){
|
startTest(){
|
||||||
apiExamPaper.newPaperContent(this.info.id).then(res=>{
|
if(this.info.paperType==2){
|
||||||
if(!res.error&&res.result != ''){
|
apiExamPaper.getPaperContent(this.info.paperId).then(rs=>{
|
||||||
if(this.info.paperType==2){
|
if(rs.status=200){
|
||||||
//TODO1
|
this.examPaper.json=JSON.parse(rs.result);
|
||||||
console.log("调用开始考试 if paperType == 2")
|
//console.log(this.examPaper.json,'this.examPaper.json');
|
||||||
this.examPaper.json=res.result;
|
let qitems=this.convertToItems(this.examPaper.json);
|
||||||
let qitems=this.convertToItems(this.examPaper.json);
|
|
||||||
this.paper ={items:qitems};
|
this.paper ={items:qitems};
|
||||||
this.total=qitems.length;
|
this.total=qitems.length;
|
||||||
this.curItem=qitems[this.curIndex];
|
this.curItem=qitems[this.curIndex];
|
||||||
this.startTime=new Date();//记录开始时间
|
this.startTime=new Date();//记录开始时间
|
||||||
this.timerValue=this.info.testDuration;
|
this.timerValue=this.info.testDuration;
|
||||||
this.content.status=1;
|
|
||||||
this.timer=setInterval(this.changeTimer,60000);
|
this.timer=setInterval(this.changeTimer,60000);
|
||||||
this.testStart=true;
|
this.testStart=true;
|
||||||
}else{
|
}else{
|
||||||
console.log("调用开始考试 else paperType != 2")
|
this.$message.error('加载试卷内容失败,请与管理员联系,试卷是否已删除');
|
||||||
let paper= {items:res.result};
|
|
||||||
paper.items.forEach(item=>{
|
|
||||||
if(item.type==101){
|
|
||||||
item.userAnswer='';
|
|
||||||
}else if(item.type==102){
|
|
||||||
item.userAnswer=[];
|
|
||||||
}else{
|
|
||||||
item.userAnswer=''
|
|
||||||
}
|
|
||||||
item.options.forEach(opt=>{
|
|
||||||
opt.checked=false;
|
|
||||||
})
|
|
||||||
});
|
|
||||||
this.total=paper.items.length;
|
|
||||||
this.paper =paper;
|
|
||||||
|
|
||||||
this.curItem=paper.items[this.curIndex];
|
|
||||||
this.startTime=new Date();//记录开始时间
|
|
||||||
this.timerValue=this.info.testDuration;
|
|
||||||
this.timer=setInterval(this.changeTimer,60000);
|
|
||||||
this.testStart=true;
|
|
||||||
}
|
}
|
||||||
}else{
|
})
|
||||||
this.$message.error('加载试卷内容失败,请与管理员联系,试卷是否已删除');
|
}else{
|
||||||
}
|
let paper= JSON.parse(this.info.paperContent);
|
||||||
})
|
paper.items.forEach(item=>{
|
||||||
// if(this.info.paperType==2){
|
//console.log(item);
|
||||||
// apiExamPaper.getPaperContent(this.info.paperId).then(rs=>{
|
if(item.type==101){
|
||||||
// if(rs.status=200){
|
item.userAnswer='';
|
||||||
// this.examPaper.json=JSON.parse(rs.result);
|
}else if(item.type==102){
|
||||||
// //console.log(this.examPaper.json,'this.examPaper.json');
|
item.userAnswer=[];
|
||||||
// let qitems=this.convertToItems(this.examPaper.json);
|
}else{
|
||||||
// this.paper ={items:qitems};
|
item.userAnswer=''
|
||||||
// this.total=qitems.length;
|
}
|
||||||
// this.curItem=qitems[this.curIndex];
|
item.options.forEach(opt=>{
|
||||||
// this.startTime=new Date();//记录开始时间
|
opt.checked=false;
|
||||||
// this.timerValue=this.info.testDuration;
|
})
|
||||||
// this.timer=setInterval(this.changeTimer,60000);
|
});
|
||||||
// this.testStart=true;
|
this.total=paper.items.length;
|
||||||
// }else{
|
this.paper =paper;
|
||||||
// this.$message.error('加载试卷内容失败,请与管理员联系,试卷是否已删除');
|
//console.log(this.paper);
|
||||||
// }
|
|
||||||
// })
|
|
||||||
// }else{
|
|
||||||
// let paper= JSON.parse(this.info.paperContent);
|
|
||||||
// paper.items.forEach(item=>{
|
|
||||||
// //console.log(item);
|
|
||||||
// if(item.type==101){
|
|
||||||
// item.userAnswer='';
|
|
||||||
// }else if(item.type==102){
|
|
||||||
// item.userAnswer=[];
|
|
||||||
// }else{
|
|
||||||
// item.userAnswer=''
|
|
||||||
// }
|
|
||||||
// item.options.forEach(opt=>{
|
|
||||||
// opt.checked=false;
|
|
||||||
// })
|
|
||||||
// });
|
|
||||||
// this.total=paper.items.length;
|
|
||||||
// this.paper =paper;
|
|
||||||
// //console.log(this.paper);
|
|
||||||
|
|
||||||
// this.curItem=paper.items[this.curIndex];
|
this.curItem=paper.items[this.curIndex];
|
||||||
// this.startTime=new Date();//记录开始时间
|
this.startTime=new Date();//记录开始时间
|
||||||
// this.timerValue=this.info.testDuration;
|
this.timerValue=this.info.testDuration;
|
||||||
// this.timer=setInterval(this.changeTimer,60000);
|
this.timer=setInterval(this.changeTimer,60000);
|
||||||
// this.testStart=true;
|
this.testStart=true;
|
||||||
// }
|
}
|
||||||
},
|
},
|
||||||
chooseOption(opt){
|
chooseOption(opt){
|
||||||
if(this.curItem.type==101 || this.curItem.type==103){
|
if(this.curItem.type==101 || this.curItem.type==103){
|
||||||
@@ -575,7 +532,7 @@ export default {
|
|||||||
randomMode:this.info.randomMode,
|
randomMode:this.info.randomMode,
|
||||||
score:testScore,
|
score:testScore,
|
||||||
paperJson:JSON.stringify(this.paper),//原来是对象,这里要也要对象
|
paperJson:JSON.stringify(this.paper),//原来是对象,这里要也要对象
|
||||||
startTime:formatDate(this.startTime),//此时间需要格式化,格式化时间可以放在util中
|
//startTime:formatDate(this.startTime),//此时间需要格式化,格式化时间可以放在util中
|
||||||
//endTime:formatDate(now),
|
//endTime:formatDate(now),
|
||||||
}
|
}
|
||||||
//计划考试的时长
|
//计划考试的时长
|
||||||
@@ -586,15 +543,8 @@ export default {
|
|||||||
apiStudy.saveExam(postData).then(res=>{
|
apiStudy.saveExam(postData).then(res=>{
|
||||||
this.thisTrue = true
|
this.thisTrue = true
|
||||||
if(res.status == 200) {
|
if(res.status == 200) {
|
||||||
console.log("获取数据结果 考试 res ==>",res)
|
|
||||||
this.records.push(res.result);
|
this.records.push(res.result);
|
||||||
//TODO 评分更改 最终完成
|
this.content.status=9;//表已学习完,判断上级的章是否已完成
|
||||||
if(res.result.score > res.result.passLine){
|
|
||||||
this.content.status=9;//表已学习完,判断上级的章是否已完成
|
|
||||||
}else{
|
|
||||||
this.content.status=1;
|
|
||||||
}
|
|
||||||
|
|
||||||
this.studyItemId=res.result.studyItemId;//第一次保存时是没有的,所以这里要赋值
|
this.studyItemId=res.result.studyItemId;//第一次保存时是没有的,所以这里要赋值
|
||||||
this.$alert('您本次考试得分:'+this.lastScore, '考试成绩', {
|
this.$alert('您本次考试得分:'+this.lastScore, '考试成绩', {
|
||||||
confirmButtonText: '确定',
|
confirmButtonText: '确定',
|
||||||
|
|||||||
@@ -1,61 +1,61 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<div v-if="has" class="homework-div">
|
<div v-if="has" class="homework-div">
|
||||||
<div>
|
<div>
|
||||||
<div class="homework-title">作业名称</div>
|
<div class="homework-title">作业名称</div>
|
||||||
<div class="homework-content">{{info.name}}</div>
|
<div class="homework-content">{{info.name}}</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div class="homework-title">内容</div>
|
<div class="homework-title">内容</div>
|
||||||
<div class="homework-content">{{info.content}}</div>
|
<div class="homework-content">{{info.content}}</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="info.file">
|
<div v-if="info.file">
|
||||||
<div class="homework-title">附件</div>
|
<div class="homework-title">附件</div>
|
||||||
<div class="homework-content" style="color: blue">
|
<div class="homework-content" style="color: blue">
|
||||||
<a :href="fileBaseUrl+info.file" target="_blank">下载作业附件</a></div>
|
<a :href="fileBaseUrl+info.file" target="_blank">下载作业附件</a></div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div class="homework-title">截止时间</div>
|
<div class="homework-title">截止时间</div>
|
||||||
<div class="homework-content" :style="{color:close? 'red':''}">{{info.deadTime}}</div>
|
<div class="homework-content" :style="{color:close? 'red':''}">{{info.deadTime}}</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-show="!close && showSubmit">
|
<div v-show="!close && showSubmit">
|
||||||
<div v-if="info.submitMode>1">
|
<div v-if="info.submitMode>1">
|
||||||
<div class="homework-title">作业内容</div>
|
<div class="homework-title">作业内容</div>
|
||||||
<div class="homework-content">
|
<div class="homework-content">
|
||||||
<el-input type="textarea" rows="5" show-word-limit maxlength="255" v-model="answer" placeholder="(限255个字)"></el-input>
|
<el-input type="textarea" rows="5" show-word-limit maxlength="255" v-model="answer" placeholder="(限255个字)"></el-input>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="info.submitMode==1 || info.submitMode==3">
|
<div v-if="info.submitMode==1 || info.submitMode==3">
|
||||||
<div class="homework-title">上传作业</div>
|
<div class="homework-title">上传作业</div>
|
||||||
<div class="homework-content">
|
<div class="homework-content">
|
||||||
<div v-if="filePath!=''">
|
<div v-if="filePath!=''">
|
||||||
<el-tag closable type="success" @close="removeHomeworkFile">作业附件</el-tag><span style="margin-left: 10px;">请点击下面的提交</span>
|
<el-tag closable type="success" @close="removeHomeworkFile">作业附件</el-tag><span style="margin-left: 10px;">请点击下面的提交</span>
|
||||||
</div>
|
</div>
|
||||||
<div v-else >
|
<div v-else >
|
||||||
<file-upload dir="files" :isShowTip="false" @success="uploadHomeworkFile" @remove="removeHomeworkFile"></file-upload>
|
<file-upload dir="files" :isShowTip="false" @success="uploadHomeworkFile" @remove="removeHomeworkFile"></file-upload>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div style="text-align: center;padding-bottom: 10px;">
|
<div style="text-align: center;padding-bottom: 10px;">
|
||||||
<el-button type="primary" :disabled="isSubmit" @click="submitHomework()">{{records.length>0?'重新提交':'提交'}}</el-button>
|
<el-button type="primary" :disabled="isSubmit" @click="submitHomework()">{{records.length>0?'重新提交':'提交'}}</el-button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-show="showRecord"><!--作业提交记录-->
|
<div v-show="showRecord"><!--作业提交记录-->
|
||||||
<el-table :data="records" style="width: 100%" border>
|
<el-table :data="records" style="width: 100%" border>
|
||||||
<el-table-column prop="endTime" label="提交时间" width="100" align="center"></el-table-column>
|
<el-table-column prop="endTime" label="提交时间" width="100" align="center"></el-table-column>
|
||||||
<el-table-column label="内容">
|
<el-table-column label="内容">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<div>{{scope.row.hwAnswer}}</div>
|
<div>{{scope.row.hwAnswer}}</div>
|
||||||
<div style="padding-top: 5px;" v-if="scope.row.filePath!=''">
|
<div style="padding-top: 5px;" v-if="scope.row.filePath!=''">
|
||||||
<a :href="fileBaseUrl+scope.row.filePath" target="_blank">下载上传的作业文件</a>
|
<a :href="fileBaseUrl+scope.row.filePath" target="_blank">下载上传的作业文件</a>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-else style="text-align: center;padding-top: 20px;color: red;">此课程无作业</div>
|
<div v-else style="text-align: center;padding-top: 20px;color: red;">此课程无作业</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@@ -65,21 +65,21 @@ import FileUpload from '@/components/FileUpload/index.vue';
|
|||||||
export default {
|
export default {
|
||||||
components: { FileUpload },
|
components: { FileUpload },
|
||||||
props:{
|
props:{
|
||||||
studyId: {
|
studyId: {
|
||||||
type: String,
|
type: String,
|
||||||
},
|
},
|
||||||
showRecord:{
|
showRecord:{
|
||||||
type:Boolean,
|
type:Boolean,
|
||||||
default:true
|
default:true
|
||||||
},
|
},
|
||||||
showSubmit:{
|
showSubmit:{
|
||||||
type:Boolean,
|
type:Boolean,
|
||||||
default:true
|
default:true
|
||||||
},
|
},
|
||||||
content: {
|
content: {
|
||||||
type: Object,
|
type: Object,
|
||||||
default:()=>{}
|
default:()=>{}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@@ -106,26 +106,26 @@ export default {
|
|||||||
methods: {
|
methods: {
|
||||||
loadHomeworkInfo(){
|
loadHomeworkInfo(){
|
||||||
apiCourse.getHomework(this.content.id).then(res=>{
|
apiCourse.getHomework(this.content.id).then(res=>{
|
||||||
if(res.status==200){
|
if(res.status==200){
|
||||||
this.info=res.result;
|
this.info=res.result;
|
||||||
//检查是否过期
|
//检查是否过期
|
||||||
if(res.result.deadTime!='' && res.result.deadTime != null){
|
if(res.result.deadTime!=''){
|
||||||
var d = new Date(res.result.deadTime);
|
var d = new Date(res.result.deadTime);
|
||||||
var now=new Date();
|
var now=new Date();
|
||||||
if(now.getTime() > d.getTime()){
|
if(now.getTime() > d.getTime()){
|
||||||
this.close=true;
|
this.close=true;
|
||||||
} else {
|
} else {
|
||||||
this.close=false;
|
this.close=false;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if(!this.showTest && this.showRecord){
|
}
|
||||||
this.loadRecord();
|
if(!this.showTest && this.showRecord){
|
||||||
}
|
this.loadRecord();
|
||||||
}else if(res.status==404){
|
}
|
||||||
//没有找到作业信息
|
}else if(res.status==404){
|
||||||
}else{
|
//没有找到作业信息
|
||||||
this.$message.error(res.message);
|
}else{
|
||||||
}
|
this.$message.error(res.message);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
//
|
//
|
||||||
},
|
},
|
||||||
@@ -149,15 +149,15 @@ export default {
|
|||||||
this.filePath = res.result.filePath;
|
this.filePath = res.result.filePath;
|
||||||
},
|
},
|
||||||
removeHomeworkFile(){
|
removeHomeworkFile(){
|
||||||
this.$confirm('您确定要删除已上传的附件吗?', '提示', {
|
this.$confirm('您确定要删除已上传的附件吗?', '提示', {
|
||||||
confirmButtonText: '确定',
|
confirmButtonText: '确定',
|
||||||
cancelButtonText: '取消',
|
cancelButtonText: '取消',
|
||||||
type: 'warning'
|
type: 'warning'
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
this.filePath='';
|
this.filePath='';
|
||||||
//从服务器端删除
|
//从服务器端删除
|
||||||
this.$message({ type: 'success', message: '删除成功!' });
|
this.$message({ type: 'success', message: '删除成功!' });
|
||||||
})
|
})
|
||||||
|
|
||||||
},
|
},
|
||||||
submitHomework() {//提交作业
|
submitHomework() {//提交作业
|
||||||
@@ -192,16 +192,16 @@ export default {
|
|||||||
}
|
}
|
||||||
apiCourseStudy.saveHomework(pamars).then(res=>{
|
apiCourseStudy.saveHomework(pamars).then(res=>{
|
||||||
this.isSubmit = false
|
this.isSubmit = false
|
||||||
if(res.status==200){
|
if(res.status==200){
|
||||||
this.$message.success("作业已提交");
|
this.$message.success("作业已提交");
|
||||||
this.filePath='';
|
this.filePath='';
|
||||||
this.answer='';
|
this.answer='';
|
||||||
this.studyItemId=res.result.id;
|
this.studyItemId=res.result.id;
|
||||||
this.records=[res.result];
|
this.records=[res.result];
|
||||||
this.$emit("submit", this.content);
|
this.$emit("submit", this.content);
|
||||||
}else {
|
}else {
|
||||||
this.$message.error(res.message);
|
this.$message.error(res.message);
|
||||||
}
|
}
|
||||||
|
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
@@ -210,27 +210,27 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
.homework-div {
|
.homework-div {
|
||||||
border: 1px solid #dadada;
|
border: 1px solid #dadada;
|
||||||
min-height: 500px;
|
min-height: 500px;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
>div{
|
>div{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
.homework-title {
|
.homework-title {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
.homework-content {
|
.homework-content {
|
||||||
color: #666;
|
color: #666;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -401,28 +401,6 @@
|
|||||||
<el-form-item label="考试说明">
|
<el-form-item label="考试说明">
|
||||||
<el-input type="textarea" show-word-limit v-model="exam.info.info" placeholder="关于考试的说明(限255字以内)" maxlength="255"></el-input>
|
<el-input type="textarea" show-word-limit v-model="exam.info.info" placeholder="关于考试的说明(限255字以内)" maxlength="255"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="随机模式">
|
|
||||||
<el-col :span="4">
|
|
||||||
<el-radio-group v-model="exam.info.randomMode">
|
|
||||||
<el-radio :label="true">是</el-radio>
|
|
||||||
<el-radio :label="false">否</el-radio>
|
|
||||||
</el-radio-group>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="20" v-if="exam.info.randomMode&&exam.info.paperType==1">
|
|
||||||
<el-form-item label="数量">
|
|
||||||
<el-input-number v-model="exam.info.qnum" :min="1" :max="exam.paperJson.items.length" label="数量"></el-input-number>
|
|
||||||
<span style="margin-left:10px;" v-if="exam.paperJson.items.length==0">先添加试题</span>
|
|
||||||
<span style="margin-left:10px;" v-if="exam.paperJson.items.length>0">试卷有 {{exam.paperJson.items.length}} 道试题</span>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="20" v-if="exam.info.randomMode&&exam.info.paperType==2">
|
|
||||||
<el-form-item label="数量">
|
|
||||||
<el-input-number v-model="exam.info.qnum" :min="1" :max="usePaper.counts" label="数量"></el-input-number>
|
|
||||||
<span style="margin-left:10px;" v-if="usePaper.counts==0">先选择试卷</span>
|
|
||||||
<span style="margin-left:10px;" v-if="usePaper.counts>0">试卷有 {{usePaper.counts}} 道试题</span>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</el-form-item>
|
|
||||||
</el-form>
|
</el-form>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="exam.info.paperType==1">
|
<div v-if="exam.info.paperType==1">
|
||||||
@@ -1081,14 +1059,12 @@
|
|||||||
if(this.exam.info.paperType==2){
|
if(this.exam.info.paperType==2){
|
||||||
if(!this.exam.info.paperId){
|
if(!this.exam.info.paperId){
|
||||||
this.$message.error("您还未选择任何试卷");
|
this.$message.error("您还未选择任何试卷");
|
||||||
this.loading=false;
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}else{
|
}else{
|
||||||
//检查是不是所有的试题都有了答案
|
//检查是不是所有的试题都有了答案
|
||||||
if(this.exam.paperJson.items.length==0){
|
if(this.exam.paperJson.items.length==0){
|
||||||
this.$message.error("您还没有添加考试的试题");
|
this.$message.error("您还没有添加考试的试题");
|
||||||
this.loading=false;
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
let pass=true;
|
let pass=true;
|
||||||
@@ -1111,9 +1087,6 @@
|
|||||||
}
|
}
|
||||||
this.exam.info.paperContent=JSON.stringify(this.exam.paperJson);
|
this.exam.info.paperContent=JSON.stringify(this.exam.paperJson);
|
||||||
}
|
}
|
||||||
if(!this.exam.info.randomMode){
|
|
||||||
this.exam.info.qnum = 0
|
|
||||||
}
|
|
||||||
postData.exam=this.exam.info;
|
postData.exam=this.exam.info;
|
||||||
postData.content.contentName='考试';
|
postData.content.contentName='考试';
|
||||||
this.examChange = deepClone(this.exam);
|
this.examChange = deepClone(this.exam);
|
||||||
@@ -1179,8 +1152,6 @@
|
|||||||
postData.id=this.exam.content.id;
|
postData.id=this.exam.content.id;
|
||||||
postData.ctype=this.exam.content.contentType;
|
postData.ctype=this.exam.content.contentType;
|
||||||
curContent=this.exam.content;
|
curContent=this.exam.content;
|
||||||
this.exam.info.randomMode = false;
|
|
||||||
this.exam.info.qnum = 0
|
|
||||||
}else if(index==4){
|
}else if(index==4){
|
||||||
postData.id=this.assess.content.id;
|
postData.id=this.assess.content.id;
|
||||||
postData.ctype=this.assess.content.contentType;
|
postData.ctype=this.assess.content.contentType;
|
||||||
|
|||||||
@@ -217,16 +217,13 @@ export default {
|
|||||||
if(delIdx>-1){
|
if(delIdx>-1){
|
||||||
fileList.splice(delIdx,1);
|
fileList.splice(delIdx,1);
|
||||||
}
|
}
|
||||||
this.$emit("success", res);
|
|
||||||
} else {
|
} else {
|
||||||
this.isLoading = false;
|
this.isLoading = false;
|
||||||
if(this.limit == 1){
|
//this.fileList = [];
|
||||||
this.fileList = [];
|
|
||||||
}
|
|
||||||
this.$message({message:"上传失败",type:'error',offset:100});
|
this.$message({message:"上传失败",type:'error',offset:100});
|
||||||
}
|
}
|
||||||
|
|
||||||
// this.$emit("success", res);
|
this.$emit("success", res);
|
||||||
},
|
},
|
||||||
// 删除文件
|
// 删除文件
|
||||||
handleDelete(index) {
|
handleDelete(index) {
|
||||||
|
|||||||
@@ -8,10 +8,7 @@
|
|||||||
<span style="margin-left:28px">{{item.eventTime}}</span>
|
<span style="margin-left:28px">{{item.eventTime}}</span>
|
||||||
<span v-if="item.aid == userInfo.aid" class="follow-hide pointer" style="float:right">
|
<span v-if="item.aid == userInfo.aid" class="follow-hide pointer" style="float:right">
|
||||||
<span v-if="item.hidden">已隐藏</span>
|
<span v-if="item.hidden">已隐藏</span>
|
||||||
<span class="span_hidden" v-else @click="emitHide(item.id)">
|
<span v-else @click="emitHide(item.id)"> <svg-icon style="margin-right: 10px;font-size:22px;padding-top: 4px;" icon-class="eyes"></svg-icon>隐藏 </span>
|
||||||
<!-- <svg-icon style="margin-right: 10px;font-size:22px;padding-top: 4px;" icon-class="eyes"></svg-icon> -->
|
|
||||||
<div class="is_hidden"></div>
|
|
||||||
隐藏 </span>
|
|
||||||
</span>
|
</span>
|
||||||
</p>
|
</p>
|
||||||
<div class="case-info-cont">
|
<div class="case-info-cont">
|
||||||
@@ -139,22 +136,6 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.span_hidden{
|
|
||||||
display: flex;
|
|
||||||
&:hover{
|
|
||||||
.is_hidden{
|
|
||||||
background: url('../../assets/images/case/Frame(12).png');
|
|
||||||
background-size: 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.is_hidden{
|
|
||||||
width: 18px;
|
|
||||||
height: 18px;
|
|
||||||
background: url('../../assets/images/case/Frame(5).png');
|
|
||||||
background-size: 100%;
|
|
||||||
margin-right: 10px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.sign-text{
|
.sign-text{
|
||||||
color: #666666;
|
color: #666666;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="item-author">
|
<div class="item-author">
|
||||||
<div v-if="userName" @click="toHome()">
|
<div @click="toHome()">
|
||||||
<!-- <el-avatar shape="square" size="small" :src="userAvatar" v-if="userAvatar"></el-avatar> -->
|
<!-- <el-avatar shape="square" size="small" :src="userAvatar" v-if="userAvatar"></el-avatar> -->
|
||||||
<!-- <div v-else class="uavatar"><span class="uavatar-text">{{avatarText}}</span></div> -->
|
<!-- <div v-else class="uavatar"><span class="uavatar-text">{{avatarText}}</span></div> -->
|
||||||
<el-avatar shape="circle" size="small" :src="userAvatar" v-if="userAvatar"></el-avatar>
|
<el-avatar shape="circle" size="small" :src="userAvatar" v-if="userAvatar"></el-avatar>
|
||||||
@@ -12,10 +12,9 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="!onlyAvatar&&userName" style="padding-left: 14px;padding-top: 6px;font-size: 14px;">
|
<div v-if="!onlyAvatar" style="padding-left: 14px;padding-top: 6px;font-size: 14px;">
|
||||||
<span style="color: #333333;font-weight: 600;font-size: 16px;">{{userName}}</span>
|
<span style="color: #333333;font-weight: 600;font-size: 16px;">{{userName}}</span>
|
||||||
<span class="author-text" v-if="userInfo && userInfo!=''"> {{userInfo}} </span>
|
<span class="author-text" v-if="userInfo && userInfo!=''"> {{userInfo}} </span>
|
||||||
<span style="margin-left: 15px;" class="comWords" v-if="authorTags.length != 0" v-for="tag in authorTags">{{tag}}</span>
|
|
||||||
</div>
|
</div>
|
||||||
<slot />
|
<slot />
|
||||||
</div>
|
</div>
|
||||||
@@ -50,12 +49,6 @@
|
|||||||
onlyAvatar:{
|
onlyAvatar:{
|
||||||
type:Boolean,
|
type:Boolean,
|
||||||
default:false
|
default:false
|
||||||
},
|
|
||||||
authorTags: {
|
|
||||||
type:Array,
|
|
||||||
default(){
|
|
||||||
return []
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data(){
|
data(){
|
||||||
@@ -126,14 +119,6 @@
|
|||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
margin-left: 4px;
|
margin-left: 4px;
|
||||||
}
|
}
|
||||||
.comWords {
|
|
||||||
background: #409EFF;
|
|
||||||
border-radius: 2px;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 12px;
|
|
||||||
color: #FFFFFF;
|
|
||||||
padding: 4px 10px;
|
|
||||||
}
|
|
||||||
.uavatar{
|
.uavatar{
|
||||||
// border: 1px solid #73adfe;
|
// border: 1px solid #73adfe;
|
||||||
width: 28px;
|
width: 28px;
|
||||||
|
|||||||
@@ -92,19 +92,11 @@
|
|||||||
<div class="comment-btns">
|
<div class="comment-btns">
|
||||||
|
|
||||||
<!-- <a><svg-icon icon-class="like"></svg-icon><span>66</span></a> -->
|
<!-- <a><svg-icon icon-class="like"></svg-icon><span>66</span></a> -->
|
||||||
<div style="display: flex" v-show="btnsShowRowId==com.id">
|
<div v-show="btnsShowRowId==com.id">
|
||||||
|
|
||||||
<a style="display: flex;align-items: center;" @click="showReply(com)">
|
<a @click="showReply(com)"><svg-icon icon-class="comment" style="margin-right: 0px;font-size: 16px;"></svg-icon><span>回复</span></a>
|
||||||
<!-- <svg-icon icon-class="comment" style="margin-right: 0px;font-size: 16px;"></svg-icon> -->
|
|
||||||
<div class="is_comment"></div>
|
|
||||||
<span>回复</span>
|
|
||||||
</a>
|
|
||||||
<!--必须当前登录人是一个人-->
|
<!--必须当前登录人是一个人-->
|
||||||
<a style="display: flex;align-items: center;" v-if="userInfo.aid==com.sysCreateAid" @click="delCommnet(com,comIdx)">
|
<a v-if="userInfo.aid==com.sysCreateAid" @click="delCommnet(com,comIdx)"><svg-icon icon-class="remove" style="margin-right: 0px;font-size: 16px;"></svg-icon><span>删除</span></a>
|
||||||
<!-- <svg-icon icon-class="remove" style="margin-right: 0px;font-size: 16px;"></svg-icon> -->
|
|
||||||
<div class="is_remove"></div>
|
|
||||||
<span>删除</span>
|
|
||||||
</a>
|
|
||||||
<a v-if="com.replyList && com.replyList.length==5" @click="showMoreReply(com)" ><svg-icon icon-class="all" style="margin-right: 0px;font-size: 16px;"></svg-icon><span>全部</span></a>
|
<a v-if="com.replyList && com.replyList.length==5" @click="showMoreReply(com)" ><svg-icon icon-class="all" style="margin-right: 0px;font-size: 16px;"></svg-icon><span>全部</span></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -558,7 +550,7 @@
|
|||||||
this.$message.error(res.message);
|
this.$message.error(res.message);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
this.loadData(false);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
@@ -633,7 +625,6 @@
|
|||||||
this.$message.error(res.message);
|
this.$message.error(res.message);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
this.loadData(false);
|
|
||||||
},
|
},
|
||||||
delCommnet(com,idx){
|
delCommnet(com,idx){
|
||||||
if(com.replyList!='' && com.replyList.length>0){
|
if(com.replyList!='' && com.replyList.length>0){
|
||||||
@@ -969,28 +960,6 @@
|
|||||||
line-height: 35px;
|
line-height: 35px;
|
||||||
a{
|
a{
|
||||||
margin-right:15px;
|
margin-right:15px;
|
||||||
&:hover{
|
|
||||||
.is_comment{
|
|
||||||
background: url('../../assets/images/case/Frame(9).png');
|
|
||||||
background-size: 100%;
|
|
||||||
}
|
|
||||||
.is_remove{
|
|
||||||
background: url('../../assets/images/case/Frame(15).png');
|
|
||||||
background-size: 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.is_comment{
|
|
||||||
width: 16px;
|
|
||||||
height: 16px;
|
|
||||||
background: url('../../assets/images/case/Frame.png');
|
|
||||||
background-size: 100%;
|
|
||||||
}
|
|
||||||
.is_remove{
|
|
||||||
width: 16px;
|
|
||||||
height: 16px;
|
|
||||||
background: url('../../assets/images/case/Frame(8).png');
|
|
||||||
background-size: 100%;
|
|
||||||
}
|
|
||||||
span{
|
span{
|
||||||
margin-left: 6px;
|
margin-left: 6px;
|
||||||
color: #8590A6;
|
color: #8590A6;
|
||||||
|
|||||||
@@ -10,8 +10,7 @@
|
|||||||
<el-tooltip effect="light" :content="type == 4 || type == 5 ?'回答':'回复'" placement="left" :visible-arrow="false" popper-class="text-tooltip">
|
<el-tooltip effect="light" :content="type == 4 || type == 5 ?'回答':'回复'" placement="left" :visible-arrow="false" popper-class="text-tooltip">
|
||||||
<!-- <svg-icon style="margin-right: 0;" icon-class="comment"></svg-icon> -->
|
<!-- <svg-icon style="margin-right: 0;" icon-class="comment"></svg-icon> -->
|
||||||
<!-- <img style="width:16px;height:14px;vertical-align: middle;" :src="require('@/assets/images/icon/answers.png')"> -->
|
<!-- <img style="width:16px;height:14px;vertical-align: middle;" :src="require('@/assets/images/icon/answers.png')"> -->
|
||||||
<!-- <svg-icon style="margin-right: 0;font-size: 14px;" icon-class="comment"></svg-icon> -->
|
<svg-icon style="margin-right: 0;font-size: 14px;" icon-class="comment"></svg-icon>
|
||||||
<div class="is_comment"></div>
|
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
<span class="interact-bar-value"> {{ data.answers? data.answers:0}}</span>
|
<span class="interact-bar-value"> {{ data.answers? data.answers:0}}</span>
|
||||||
</div>
|
</div>
|
||||||
@@ -24,16 +23,14 @@
|
|||||||
</div>
|
</div>
|
||||||
<div v-if="comments" class="interact-bar-btn" :style="`min-width: ${nodeWidth};`" :class="{cursor:!readonly}">
|
<div v-if="comments" class="interact-bar-btn" :style="`min-width: ${nodeWidth};`" :class="{cursor:!readonly}">
|
||||||
<el-tooltip effect="light" content="评论" placement="left" :visible-arrow="false" popper-class="text-tooltip">
|
<el-tooltip effect="light" content="评论" placement="left" :visible-arrow="false" popper-class="text-tooltip">
|
||||||
<!-- <svg-icon style="margin-right: 0;font-size: 14px;" icon-class="comment"></svg-icon> -->
|
<svg-icon style="margin-right: 0;font-size: 14px;" icon-class="comment"></svg-icon>
|
||||||
<div class="is_comment"></div>
|
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
<span class="interact-bar-value"> {{data.comments? data.comments:0}}</span>
|
<span class="interact-bar-value"> {{data.comments? data.comments:0}}</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-if="praises" @click="addPraise()" :style="`min-width: ${nodeWidth};`" class="interact-bar-btn" :class="{cursor:!readonly}">
|
<div v-if="praises" @click="addPraise()" :style="`min-width: ${nodeWidth};`" class="interact-bar-btn" :class="{cursor:!readonly}">
|
||||||
<el-tooltip effect="light" content="点赞" placement="top" :visible-arrow="false" popper-class="text-tooltip">
|
<el-tooltip effect="light" content="点赞" placement="top" :visible-arrow="false" popper-class="text-tooltip">
|
||||||
<!-- <svg-icon style="margin-right: 0;font-size: 14px;" :icon-class="isPraise?'praised':'like'"></svg-icon> -->
|
<svg-icon style="margin-right: 0;font-size: 14px;" :icon-class="isPraise?'praised':'like'"></svg-icon>
|
||||||
<div class="is_praise" :class="isPraise?'is_praise_a':'is_praise'"></div>
|
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
<span class="interact-bar-value"> {{ data.praises? data.praises:0}}</span>
|
<span class="interact-bar-value"> {{ data.praises? data.praises:0}}</span>
|
||||||
</div>
|
</div>
|
||||||
@@ -41,22 +38,19 @@
|
|||||||
<div v-if="favorites" @click.stop="addFavorite()" :style="`min-width: ${nodeWidth};`" class="interact-bar-btn" :class="{cursor:!readonly}">
|
<div v-if="favorites" @click.stop="addFavorite()" :style="`min-width: ${nodeWidth};`" class="interact-bar-btn" :class="{cursor:!readonly}">
|
||||||
<el-tooltip effect="light" content="收藏" placement="top" :visible-arrow="false" popper-class="text-tooltip">
|
<el-tooltip effect="light" content="收藏" placement="top" :visible-arrow="false" popper-class="text-tooltip">
|
||||||
<svg-icon v-if="courseExclusive" style="font-size: 32px;margin-right: 0;" :icon-class="isFavorite?'collectedCourse':'collectionCourse'"></svg-icon>
|
<svg-icon v-if="courseExclusive" style="font-size: 32px;margin-right: 0;" :icon-class="isFavorite?'collectedCourse':'collectionCourse'"></svg-icon>
|
||||||
<!-- <svg-icon v-else style="margin-right: 0;" :style="{'font-size':(size+2)+'px'}" :icon-class="isFavorite?'scactive2':'xihuan'"></svg-icon> -->
|
<svg-icon v-else style="margin-right: 0;" :style="{'font-size':(size+2)+'px'}" :icon-class="isFavorite?'scactive2':'xihuan'"></svg-icon>
|
||||||
<div v-else class="is_favorite" :class="isFavorite?'is_favorite_a':'is_favorite'"></div>
|
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
<span v-if="!courseExclusive" class="interact-bar-value"> {{ data.favorites? data.favorites:0}}</span>
|
<span v-if="!courseExclusive" class="interact-bar-value"> {{ data.favorites? data.favorites:0}}</span>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="shares" @click="addShare()" :style="`min-width: ${nodeWidth};`" class="interact-bar-btn" :class="{cursor:!readonly}">
|
<div v-if="shares" @click="addShare()" :style="`min-width: ${nodeWidth};`" class="interact-bar-btn" :class="{cursor:!readonly}">
|
||||||
<el-tooltip effect="light" content="分享" placement="top" :visible-arrow="false" popper-class="text-tooltip">
|
<el-tooltip effect="light" content="分享" placement="top" :visible-arrow="false" popper-class="text-tooltip">
|
||||||
<!-- <svg-icon icon-class="share" style="margin-right: 0;" :style="{'font-size':(size+2)+'px'}"></svg-icon> -->
|
<svg-icon icon-class="share" style="margin-right: 0;" :style="{'font-size':(size+2)+'px'}"></svg-icon>
|
||||||
<div class="is_share"></div>
|
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
<span class="interact-bar-value"> {{data.shares}}</span>
|
<span class="interact-bar-value"> {{data.shares}}</span>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="views" style="cursor: default;" :style="`min-width: ${nodeWidth};margin-left:${data.views>1000? '20px':'20px'}`" class="interact-bar-btn ese-view" :class="{cursor:!readonly}">
|
<div v-if="views" style="cursor: default;" :style="`min-width: ${nodeWidth};margin-left:${data.views>1000? '20px':'20px'}`" class="interact-bar-btn ese-view" :class="{cursor:!readonly}">
|
||||||
<el-tooltip effect="light" content="浏览量" placement="top" :visible-arrow="false" popper-class="text-tooltip">
|
<el-tooltip effect="light" content="浏览量" placement="top" :visible-arrow="false" popper-class="text-tooltip">
|
||||||
<!-- <svg-icon style="margin-right: 0; font-size:22px;" icon-class="eyes"></svg-icon> -->
|
<svg-icon style="margin-right: 0; font-size:22px;" icon-class="eyes"></svg-icon>
|
||||||
<div class="is_view"></div>
|
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
<!-- <div style="float:right;margin-left:8px"> -->
|
<!-- <div style="float:right;margin-left:8px"> -->
|
||||||
<span class="interact-bar-value eyes-view" > {{ formatNum(data.views)}}</span>
|
<span class="interact-bar-value eyes-view" > {{ formatNum(data.views)}}</span>
|
||||||
@@ -536,7 +530,6 @@ export default {
|
|||||||
this.$store.dispatch("unicomFavorites",false)
|
this.$store.dispatch("unicomFavorites",false)
|
||||||
}
|
}
|
||||||
this.$message({message:'已取消收藏',type:'success'});
|
this.$message({message:'已取消收藏',type:'success'});
|
||||||
this.$emit('deleteFavorite',true)
|
|
||||||
//this.$emit('addFavorite',res.result);//添加收藏,如果是true代表添加成功,false代表已存在
|
//this.$emit('addFavorite',res.result);//添加收藏,如果是true代表添加成功,false代表已存在
|
||||||
}else{
|
}else{
|
||||||
console.log('取消收藏失败:'+res.message);
|
console.log('取消收藏失败:'+res.message);
|
||||||
@@ -720,77 +713,6 @@ export default {
|
|||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
.interact-bar-btn {
|
.interact-bar-btn {
|
||||||
margin: 0 0 0 15px;
|
margin: 0 0 0 15px;
|
||||||
display: flex;
|
|
||||||
justify-content: end;
|
|
||||||
align-items: center;
|
|
||||||
&:hover{
|
|
||||||
.is_praise{
|
|
||||||
background: url('../../assets/images/case/Frame\(10\).png');
|
|
||||||
}
|
|
||||||
.is_favorite{
|
|
||||||
background: url('../../assets/images/case/Frame\(11\).png');
|
|
||||||
background-size: 100%;
|
|
||||||
}
|
|
||||||
.is_share{
|
|
||||||
background: url('../../assets/images/case/Frame\(14\).png');
|
|
||||||
background-size: 100%;
|
|
||||||
}
|
|
||||||
.is_view{
|
|
||||||
background: url('../../assets/images/case/Frame\(12\).png');
|
|
||||||
background-size: 100%;
|
|
||||||
}
|
|
||||||
.is_comment{
|
|
||||||
background: url('../../assets/images/case/Frame\(9\).png');
|
|
||||||
background-size: 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.is_comment{
|
|
||||||
width: 16px;
|
|
||||||
height: 16px;
|
|
||||||
background: url('../../assets/images/case/Frame.png');
|
|
||||||
background-size: 100%;
|
|
||||||
margin-right: 4px;
|
|
||||||
}
|
|
||||||
.is_view{
|
|
||||||
width: 17px;
|
|
||||||
height: 17px;
|
|
||||||
background: url('../../assets/images/case/Frame\(5\).png');
|
|
||||||
background-size: 100%;
|
|
||||||
margin-right: 4px;
|
|
||||||
}
|
|
||||||
.is_share{
|
|
||||||
width: 16px;
|
|
||||||
height: 16px;
|
|
||||||
background: url('../../assets/images/case/Frame\(7\).png');
|
|
||||||
background-size: 100%;
|
|
||||||
margin-right: 4px;
|
|
||||||
}
|
|
||||||
.is_praise{
|
|
||||||
width: 14px;
|
|
||||||
height: 14px;
|
|
||||||
background: url('../../assets/images/case/Frame\(1\).png');
|
|
||||||
margin-right: 4px;
|
|
||||||
}
|
|
||||||
.is_praise_a{
|
|
||||||
width: 14px;
|
|
||||||
height: 14px;
|
|
||||||
background: url('../../assets/images/case/Frame\(10\).png');
|
|
||||||
margin-right: 4px;
|
|
||||||
}
|
|
||||||
.is_favorite{
|
|
||||||
width: 16px;
|
|
||||||
height: 16px;
|
|
||||||
background: url('../../assets/images/case/Frame\(2\).png');
|
|
||||||
background-size: 100%;
|
|
||||||
margin-right: 4px;
|
|
||||||
}
|
|
||||||
.is_favorite_a{
|
|
||||||
width: 16px;
|
|
||||||
height: 16px;
|
|
||||||
background: url('../../assets/images/case/Frame\(11\).png');
|
|
||||||
background-size: 100%;
|
|
||||||
margin-right: 4px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
.interact-bar-value{
|
.interact-bar-value{
|
||||||
// color:#6E7B84; ui图给的颜色,但是效果于ui图效果不一样,也没有透明度,所以找一个相近的和谐的颜色
|
// color:#6E7B84; ui图给的颜色,但是效果于ui图效果不一样,也没有透明度,所以找一个相近的和谐的颜色
|
||||||
|
|||||||
@@ -51,8 +51,7 @@
|
|||||||
<el-dropdown placement="bottom" @command="handleContributor">
|
<el-dropdown placement="bottom" @command="handleContributor">
|
||||||
<span class="el-dropdown-link" style="font-size:16px;cursor: pointer;" :style="{color:textColor}">贡献者大会</span>
|
<span class="el-dropdown-link" style="font-size:16px;cursor: pointer;" :style="{color:textColor}">贡献者大会</span>
|
||||||
<el-dropdown-menu slot="dropdown">
|
<el-dropdown-menu slot="dropdown">
|
||||||
<el-dropdown-item command="three">2024</el-dropdown-item>
|
<el-dropdown-item command="one">2023</el-dropdown-item>
|
||||||
<el-dropdown-item command="one" divided>2023</el-dropdown-item>
|
|
||||||
<el-dropdown-item command="two" divided>2022</el-dropdown-item>
|
<el-dropdown-item command="two" divided>2022</el-dropdown-item>
|
||||||
</el-dropdown-menu>
|
</el-dropdown-menu>
|
||||||
</el-dropdown>
|
</el-dropdown>
|
||||||
@@ -137,30 +136,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- "社招新员工转正培训项目简介"弹框 -->
|
|
||||||
<el-dialog width="733px"
|
|
||||||
:visible.sync="projectDialogVisible"
|
|
||||||
:append-to-body="true"
|
|
||||||
>
|
|
||||||
<div class="el-dialog__header">
|
|
||||||
<span style="font-size: 35px; font-weight: bold; color: white; margin: 60px;line-height: 100px;">项目简介</span>
|
|
||||||
</div>
|
|
||||||
<div style="height: 280px;margin: 0px 40px 0px 40px;">
|
|
||||||
<span v-html="studentInfo.introduction"></span>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<span style="font-size: 14px; margin: 40px;" v-if="studentInfo.bpmStatus!=0">审批编号:<span style="font-weight: bold;">{{studentInfo.bpmNumber}}</span></span>
|
|
||||||
<br/>
|
|
||||||
<span style="font-size: 14px; margin: 40px;">审批状态:<span style="font-weight: bold; color: #efbf82">{{studentInfo.bpmStatusName}}</span></span>
|
|
||||||
</div>
|
|
||||||
<template #footer>
|
|
||||||
<span class="dialog-footer">
|
|
||||||
<el-button type="primary" @click="signUpNow" v-if="studentInfo.bpmStatus==0">立即报名</el-button>
|
|
||||||
<el-button v-if="studentInfo.bpmStatus==1" disabled>审批中</el-button>
|
|
||||||
<el-button type="primary" @click="signUpAgain" v-if="studentInfo.bpmStatus==3">重新报名</el-button>
|
|
||||||
</span>
|
|
||||||
</template>
|
|
||||||
</el-dialog>
|
|
||||||
</div>
|
</div>
|
||||||
<popup></popup><yearMedal></yearMedal>
|
<popup></popup><yearMedal></yearMedal>
|
||||||
</div>
|
</div>
|
||||||
@@ -168,9 +143,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import { mapGetters, mapActions } from 'vuex';
|
import { mapGetters, mapActions } from 'vuex';
|
||||||
import apiMessage from '@/api/system/message.js';
|
import apiMessage from '@/api/system/message.js';
|
||||||
import apiManage from '@/api/manage/manage.js';
|
|
||||||
import popup from '@/components/AlertPopup.vue';
|
import popup from '@/components/AlertPopup.vue';
|
||||||
import { getToken } from '@/utils/token.js';
|
|
||||||
import yearMedal from '@/components/Popup/China2023.vue';
|
import yearMedal from '@/components/Popup/China2023.vue';
|
||||||
import apiBoeCourse from '@/api/boe/course.js';
|
import apiBoeCourse from '@/api/boe/course.js';
|
||||||
import {userAvatarText} from "@/utils/tools.js";
|
import {userAvatarText} from "@/utils/tools.js";
|
||||||
@@ -230,34 +203,17 @@ export default {
|
|||||||
keyword: '',
|
keyword: '',
|
||||||
isTiao: false,
|
isTiao: false,
|
||||||
sex:'',
|
sex:'',
|
||||||
projectDialogVisible: false,
|
|
||||||
studentInfo: {},
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.sex = this.userInfo.sex;
|
this.sex = this.userInfo.sex;
|
||||||
this.$store.dispatch('refrashMsg');
|
this.$store.dispatch('refrashMsg');
|
||||||
this.loadBoeData();
|
this.loadBoeData();
|
||||||
// console.log('this.userInfo::',this.userInfo)
|
console.log('this.userInfo::',this.userInfo)
|
||||||
//this.loadPopupConfig();
|
//this.loadPopupConfig();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
//BPM项目:立即报名
|
|
||||||
signUpNow(){
|
|
||||||
const pid = this.studentInfo.projectId;
|
|
||||||
apiManage.signUpBpmProjectNow(pid).then(res=>{
|
|
||||||
this.projectDialogVisible = false;
|
|
||||||
})
|
|
||||||
},
|
|
||||||
//BPM项目:重新报名
|
|
||||||
signUpAgain(){
|
|
||||||
const pid = this.studentInfo.projectId;
|
|
||||||
const studentId=this.studentInfo.studentId;
|
|
||||||
const data = {"pid":pid,"studentId":studentId};
|
|
||||||
apiManage.signUpBpmProjectAgain(data).then(res=>{
|
|
||||||
this.projectDialogVisible = false;
|
|
||||||
})
|
|
||||||
},
|
|
||||||
setCurIdentity(iden){
|
setCurIdentity(iden){
|
||||||
this.$store.dispatch('SetCurIdentity',iden);
|
this.$store.dispatch('SetCurIdentity',iden);
|
||||||
},
|
},
|
||||||
@@ -290,39 +246,14 @@ export default {
|
|||||||
let obj = {
|
let obj = {
|
||||||
one: urlPre + "/web/contributornew/index",
|
one: urlPre + "/web/contributornew/index",
|
||||||
two: urlPre + "/web/contributor/index",
|
two: urlPre + "/web/contributor/index",
|
||||||
three: urlPre + "/web/contributor_2024/index"
|
|
||||||
};
|
};
|
||||||
// console.log(obj[val] + "?token=" + encodeURIComponent(getToken()), 'getOrgToken()::',getToken(), encodeURIComponent(getToken()));
|
window.open(obj[val]);
|
||||||
window.open(obj[val] + "?token=" + encodeURIComponent(getToken()));
|
|
||||||
// window.location.href = obj[val] + "?token=" + encodeURIComponent(getToken());
|
|
||||||
},
|
},
|
||||||
handleCommand(val) {
|
handleCommand(val) {
|
||||||
if (val === "four") {
|
if (val === "four") {
|
||||||
window.open("https://m.qingxuetang.com/x/?appId=qxtcorp306130")
|
window.open("https://m.qingxuetang.com/x/?appId=qxtcorp306130")
|
||||||
// this.$emit('showClass',true)
|
// this.$emit('showClass',true)
|
||||||
} else if(val === "five"){//new社招新员工项目(需BPM审批报名--唯一,如果不唯一,取发布时间最新的)
|
} else {
|
||||||
let studentPath = process.env.VUE_APP_STUDENT_PATH;
|
|
||||||
apiManage.getNewSocialHireProject().then(res=>{
|
|
||||||
this.studentInfo = res.data;
|
|
||||||
const bpmStatus = this.studentInfo.bpmStatus;
|
|
||||||
if (bpmStatus == 0){//未报名--则弹窗含“立即报名”
|
|
||||||
this.studentInfo.bpmStatusName="未报名";
|
|
||||||
this.projectDialogVisible=true;
|
|
||||||
|
|
||||||
}else if (bpmStatus == 1){//已报名待审核(审批中)--仅弹窗展示
|
|
||||||
this.studentInfo.bpmStatusName="审批中";
|
|
||||||
this.projectDialogVisible=true;
|
|
||||||
|
|
||||||
}else if (bpmStatus == 2){//bpm报名审核通过,则直接进入项目进行学习
|
|
||||||
let params = encodeURIComponent('projectId=' + this.studentInfo.projectId);
|
|
||||||
this.$router.push('/forward?to=' + studentPath + '/projectdetails¶ms=' + params);
|
|
||||||
}else if(bpmStatus == 3){//已拒绝--则弹窗含“重新报名”
|
|
||||||
this.studentInfo.bpmStatusName="已拒绝(含个人撤回)";
|
|
||||||
this.projectDialogVisible=true;
|
|
||||||
|
|
||||||
}
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
let urlPre = window.location.protocol + "//" + window.location.host;
|
let urlPre = window.location.protocol + "//" + window.location.host;
|
||||||
// process.env.VUE_APP_BOE_WEB_URL
|
// process.env.VUE_APP_BOE_WEB_URL
|
||||||
let obj = {
|
let obj = {
|
||||||
@@ -331,7 +262,7 @@ export default {
|
|||||||
two: urlPre + "/grow180/login",
|
two: urlPre + "/grow180/login",
|
||||||
three: this.webBaseUrl + "/study/index?study=1",
|
three: this.webBaseUrl + "/study/index?study=1",
|
||||||
// four: 'https://m.qingxuetang.com/x/?appId=qxtcorp306130',
|
// four: 'https://m.qingxuetang.com/x/?appId=qxtcorp306130',
|
||||||
// five: urlPre + "/boe/new-employee/index.html", //old社招新员工 zhengsongbo 注释掉 2025-07-14
|
five: urlPre + "/boe/new-employee/index.html",
|
||||||
six: urlPre + "/web/contributor/index",
|
six: urlPre + "/web/contributor/index",
|
||||||
seven: this.webBaseUrl + '/grateful/index'
|
seven: this.webBaseUrl + '/grateful/index'
|
||||||
};
|
};
|
||||||
@@ -665,27 +596,4 @@ text-align: center;
|
|||||||
margin-right: 8px;
|
margin-right: 8px;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
}
|
}
|
||||||
/* 项目简介 弹窗 ---start--- */
|
|
||||||
::v-deep .el-dialog__header {
|
|
||||||
padding: 0 !important;
|
|
||||||
}
|
|
||||||
::v-deep .el-dialog {
|
|
||||||
border-radius: 3% 3% 1% 1%;
|
|
||||||
}
|
|
||||||
.el-dialog__header {
|
|
||||||
height: 100px;
|
|
||||||
margin: 0 !important;
|
|
||||||
background-image: url('../assets/images/project/title-bg.png');
|
|
||||||
background-size: 100% 100%; /* 完全填充 */
|
|
||||||
display: block; /* 避免行内元素空隙 */
|
|
||||||
}
|
|
||||||
::v-deep .el-dialog__title {
|
|
||||||
margin: 0 !important;
|
|
||||||
padding: 0 !important;
|
|
||||||
}
|
|
||||||
::v-deep .el-dialog__body {
|
|
||||||
margin: 0 !important;
|
|
||||||
padding: 0 !important;
|
|
||||||
}
|
|
||||||
/* 项目简介 弹窗 ---end--- */
|
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<!-- <div style="color: red;">下面的表格标题及内容需要调整完善</div> -->
|
<!-- <div style="color: red;">下面的表格标题及内容需要调整完善</div> -->
|
||||||
<div>
|
<div>
|
||||||
<el-tabs style="width: 100%;" v-model="tabName" @tab-click="handleTabClick">
|
<el-tabs v-model="tabName" @tab-click="handleTabClick">
|
||||||
<el-tab-pane label="报名管理" name="second">
|
<el-tab-pane label="报名管理" name="second">
|
||||||
<!-- <div>已报名{{study.list.length}}人,共有0人报名未成功,共有{{study.list.length}}人通过审核</div> -->
|
<!-- <div>已报名{{study.list.length}}人,共有0人报名未成功,共有{{study.list.length}}人通过审核</div> -->
|
||||||
<el-row style="margin: 20px 0;" :gutter="20">
|
<el-row style="margin: 20px 0;" :gutter="20">
|
||||||
@@ -192,7 +192,7 @@
|
|||||||
</el-table-column>-->
|
</el-table-column>-->
|
||||||
<el-table-column label="学习人员" width="110">
|
<el-table-column label="学习人员" width="110">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-button size="mini" type="info" @click="getCatalogue(scope.row,scope.row.contentType)" >学习人员</el-button>
|
<el-button size="mini" type="info" @click="getCatalogue(scope.row,scope.row.contentName)" >学习人员</el-button>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
@@ -292,7 +292,6 @@
|
|||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" @click="studyContentRecordsSearch">搜索</el-button>
|
<el-button type="primary" @click="studyContentRecordsSearch">搜索</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-button v-if="isHomeWork" :disabled="isTrue" style="padding:10px 15px;margin-bottom: 10px;" type="primary" @click="downLoad">导出全部作业</el-button>
|
|
||||||
</el-form>
|
</el-form>
|
||||||
<el-table max-height="500" border :data="learningSituation.list" style="width: 100%">
|
<el-table max-height="500" border :data="learningSituation.list" style="width: 100%">
|
||||||
<el-table-column prop="aname" label="姓名" width="180"></el-table-column>
|
<el-table-column prop="aname" label="姓名" width="180"></el-table-column>
|
||||||
@@ -336,8 +335,6 @@ import apiCoursePortal from "@/api/modules/coursePortal.js";
|
|||||||
import { mapGetters,mapActions } from 'vuex';
|
import { mapGetters,mapActions } from 'vuex';
|
||||||
import apiUser from '@/api/system/user.js';
|
import apiUser from '@/api/system/user.js';
|
||||||
import apiStudy from '@/api/modules/courseStudy.js';
|
import apiStudy from '@/api/modules/courseStudy.js';
|
||||||
import { getToken } from '@/utils/token'
|
|
||||||
import axios from 'axios'
|
|
||||||
export default {
|
export default {
|
||||||
components: {auditCourse1,auditCourse2},
|
components: {auditCourse1,auditCourse2},
|
||||||
computed: {
|
computed: {
|
||||||
@@ -355,10 +352,7 @@ export default {
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
downParams: {},
|
|
||||||
typePress: false,
|
typePress: false,
|
||||||
isHomeWork: false,
|
|
||||||
isTrue: false,
|
|
||||||
catalogRecordTree:[],
|
catalogRecordTree:[],
|
||||||
catalogRecordList:[],
|
catalogRecordList:[],
|
||||||
resOwnerListMap:[],
|
resOwnerListMap:[],
|
||||||
@@ -383,8 +377,8 @@ export default {
|
|||||||
count: 0,
|
count: 0,
|
||||||
type: "",
|
type: "",
|
||||||
list: [],
|
list: [],
|
||||||
status: '',
|
|
||||||
name: '',
|
name: '',
|
||||||
|
status: '',
|
||||||
},
|
},
|
||||||
learningRecords: {
|
learningRecords: {
|
||||||
pageIndex: 1, //第几页
|
pageIndex: 1, //第几页
|
||||||
@@ -521,7 +515,6 @@ export default {
|
|||||||
pageIndex: this.learningSituation.pageIndex,
|
pageIndex: this.learningSituation.pageIndex,
|
||||||
pageSize: this.learningSituation.pageSize
|
pageSize: this.learningSituation.pageSize
|
||||||
};
|
};
|
||||||
this.downParams = params;
|
|
||||||
apicourseStudy.studyContentRecords(params).then(res => {
|
apicourseStudy.studyContentRecords(params).then(res => {
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
this.learningSituation.list = res.result.list;
|
this.learningSituation.list = res.result.list;
|
||||||
@@ -531,77 +524,6 @@ export default {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
downLoad(){
|
|
||||||
if(this.learningSituation.list.length == 0){
|
|
||||||
this.$message.warning('暂无数据');
|
|
||||||
return
|
|
||||||
}
|
|
||||||
this.isTrue = true;
|
|
||||||
let params = {
|
|
||||||
courseName:this.manageStudyData.name,
|
|
||||||
courseId: this.manageStudyData.id,
|
|
||||||
status: this.downParams.status || '',
|
|
||||||
name: this.downParams.name || '',
|
|
||||||
contentId: this.contentId,
|
|
||||||
}
|
|
||||||
// window.open(`/systemapi/xboe/m/course/portal/export?contentId=${params.contentId}&courseName=${params.courseName}&courseId=${params.courseId}&status=${params.status}&name=${params.name}`)
|
|
||||||
const url = `/systemapi/xboe/m/course/portal/export?contentId=${params.contentId}&courseName=${params.courseName}&courseId=${params.courseId}&status=${params.status}&name=${params.name}`
|
|
||||||
axios({
|
|
||||||
method: 'get',
|
|
||||||
url: url,
|
|
||||||
// responseType: 'blob',
|
|
||||||
headers: { 'X-Access-Token': getToken() }
|
|
||||||
}).then((res) => {
|
|
||||||
this.isTrue = false;
|
|
||||||
if(res.data.status == 200){
|
|
||||||
if(res.data.result.includes('upload')){
|
|
||||||
window.open('/upload'+res.data.result.split('upload')[1])
|
|
||||||
}else{
|
|
||||||
this.$message.warning(res.data.result)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}).catch(err=>{
|
|
||||||
this.isTrue = false;
|
|
||||||
this.$message.error(err.response.data.message)
|
|
||||||
})
|
|
||||||
// axios({
|
|
||||||
// method: 'get',
|
|
||||||
// url: url,
|
|
||||||
// responseType: 'blob',
|
|
||||||
// headers: { 'X-Access-Token': getToken() }
|
|
||||||
// }).then((response) => {
|
|
||||||
// if (response.status === 200) {
|
|
||||||
// this.isTrue = false;
|
|
||||||
// if (!(response.headers['content-type']).startsWith('application/json')) {
|
|
||||||
// this.resolveBlob(response, 'application/zip', `${params.courseName}【作业】`);
|
|
||||||
// } else {
|
|
||||||
// console.log(response,'response')
|
|
||||||
// const reader = new FileReader();
|
|
||||||
// reader.onload = (e) => {
|
|
||||||
// const errorData = JSON.parse(e.target.result)
|
|
||||||
// this.$message.error(errorData.result)
|
|
||||||
// };
|
|
||||||
// reader.readAsText(response.data);
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }).catch((error) => {
|
|
||||||
// this.isTrue = false;
|
|
||||||
// // 错误处理
|
|
||||||
// console.log(error);
|
|
||||||
// this.$message.error(error.data ? error.data.message : error.toString());
|
|
||||||
// });
|
|
||||||
},
|
|
||||||
resolveBlob(res, mimeType,filename) {
|
|
||||||
const link = document.createElement('a');// 创建a标签
|
|
||||||
let blob = new Blob([res.data], { type: mimeType }); // 设置文件类型
|
|
||||||
link.style.display = "none";
|
|
||||||
link.href = URL.createObjectURL(blob); // 创建URL
|
|
||||||
link.setAttribute("download", `${filename}`);
|
|
||||||
document.body.appendChild(link);
|
|
||||||
link.click();
|
|
||||||
URL.revokeObjectURL(link.href);
|
|
||||||
document.body.removeChild(link);
|
|
||||||
},
|
|
||||||
handleSizeChangeSituation(val) {
|
handleSizeChangeSituation(val) {
|
||||||
this.learningSituation.pageSize = val;
|
this.learningSituation.pageSize = val;
|
||||||
this.learningSituation.pageIndex = 1;
|
this.learningSituation.pageIndex = 1;
|
||||||
@@ -800,16 +722,11 @@ export default {
|
|||||||
this.getSignupList();
|
this.getSignupList();
|
||||||
},
|
},
|
||||||
getCatalogue(row,type) {
|
getCatalogue(row,type) {
|
||||||
if(type==61){
|
if(type=='考试'){
|
||||||
this.typePress = true
|
this.typePress = true
|
||||||
}else{
|
}else{
|
||||||
this.typePress = true
|
this.typePress = true
|
||||||
}
|
}
|
||||||
if(type == 60){
|
|
||||||
this.isHomeWork = true
|
|
||||||
}else{
|
|
||||||
this.isHomeWork = false
|
|
||||||
}
|
|
||||||
this.contentId = row.id;
|
this.contentId = row.id;
|
||||||
this.study.catalogueShow = true;
|
this.study.catalogueShow = true;
|
||||||
this.learningSituation.pageIndex = 1;//重置为第一页
|
this.learningSituation.pageIndex = 1;//重置为第一页
|
||||||
@@ -863,19 +780,4 @@ export default {
|
|||||||
height: 400px;
|
height: 400px;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.el-tabs__nav-wrap::after {
|
|
||||||
display: none; /* 隐藏滚动条轨道 */
|
|
||||||
}
|
|
||||||
|
|
||||||
.el-tabs__nav-scroll {
|
|
||||||
overflow: hidden; /* 隐藏滚动条滑块 */
|
|
||||||
}
|
|
||||||
|
|
||||||
/* 隐藏垂直滚动条 */
|
|
||||||
.el-table .el-table__body-wrapper::-webkit-scrollbar {
|
|
||||||
display: none; /* Chrome, Safari, Opera*/
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
:default-active="activeMenu"
|
:default-active="activeMenu"
|
||||||
router
|
router
|
||||||
active-text-color="#3379FB"
|
active-text-color="#3379FB"
|
||||||
:default-openeds="['manageTodo','manageFinish','teacherTodo','teacherFinish','lecturer','myqa','notice','mystudy','myGrowth', 'course', 'exam', 'u001', 'u002', 'u003', 'u004','mylecnotes','mycaseRecord']"
|
:default-openeds="['manageTodo','manageFinish','teacherTodo','teacherFinish','lecturer','myqa','notice','mystudy', 'course', 'exam', 'u001', 'u002', 'u003', 'u004','mylecnotes','mycaseRecord']"
|
||||||
class="el-menu-vertical"
|
class="el-menu-vertical"
|
||||||
@open="handleOpen"
|
@open="handleOpen"
|
||||||
@close="handleClose"
|
@close="handleClose"
|
||||||
@@ -242,20 +242,6 @@
|
|||||||
<svg-icon :icon-class="activeMenu == '/user/medal'?'myxunzhang-active':'myxunzhang'"></svg-icon>
|
<svg-icon :icon-class="activeMenu == '/user/medal'?'myxunzhang-active':'myxunzhang'"></svg-icon>
|
||||||
<span slot="title">我的勋章</span>
|
<span slot="title">我的勋章</span>
|
||||||
</el-menu-item>
|
</el-menu-item>
|
||||||
<template v-if="showGrowthNav">
|
|
||||||
<el-submenu index="myGrowth" v-show="curIdentity == 1">
|
|
||||||
<template slot="title">
|
|
||||||
<!-- <i class="el-icon-s-grid"></i> -->
|
|
||||||
<img src="../../assets/images/myGrowth.jpg" style="width: 1em;height: 1em;margin-right: 8px;"></img>
|
|
||||||
<span>我的必修</span>
|
|
||||||
</template>
|
|
||||||
<el-menu-item index="/growth/growthPage">
|
|
||||||
<!-- <i class="el-icon-menu"></i> -->
|
|
||||||
<span slot="title" class="study textl">专业力必修</span>
|
|
||||||
</el-menu-item>
|
|
||||||
</el-submenu>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<el-submenu index="mystudy" v-show="curIdentity == 1">
|
<el-submenu index="mystudy" v-show="curIdentity == 1">
|
||||||
<template slot="title">
|
<template slot="title">
|
||||||
<!-- <i class="el-icon-s-grid"></i> -->
|
<!-- <i class="el-icon-s-grid"></i> -->
|
||||||
@@ -399,7 +385,6 @@ import { mapGetters } from 'vuex';
|
|||||||
import apicourseStudy from "../../api/modules/courseStudy.js"
|
import apicourseStudy from "../../api/modules/courseStudy.js"
|
||||||
import {pageList} from "@/api/modules/lecturer"
|
import {pageList} from "@/api/modules/lecturer"
|
||||||
import courseImage from "@/components/Course/courseImage.vue"
|
import courseImage from "@/components/Course/courseImage.vue"
|
||||||
import { listData } from "@/api/growth/growthpath"
|
|
||||||
import testUser from '@/utils/testUsers.js'
|
import testUser from '@/utils/testUsers.js'
|
||||||
export default {
|
export default {
|
||||||
name: 'UcMenu',
|
name: 'UcMenu',
|
||||||
@@ -428,8 +413,7 @@ export default {
|
|||||||
isCollapse: false,
|
isCollapse: false,
|
||||||
lastStudy:{},
|
lastStudy:{},
|
||||||
overlayShow: false,
|
overlayShow: false,
|
||||||
instructor:0,
|
instructor:0
|
||||||
showGrowthNav: false
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
@@ -438,11 +422,6 @@ export default {
|
|||||||
this.getLastStudy();
|
this.getLastStudy();
|
||||||
//获取讲师认证中条数
|
//获取讲师认证中条数
|
||||||
this.instructorCertification()
|
this.instructorCertification()
|
||||||
console.log(this.userInfo,'userInfouserInfo')
|
|
||||||
//如果专业力必修没有学习任务则隐藏“我的必修按钮”
|
|
||||||
listData().then(res => {
|
|
||||||
this.showGrowthNav = !!res.data.length
|
|
||||||
})
|
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
//console.log(this.userInfo.loginName,'this.userInfo.loginName');
|
//console.log(this.userInfo.loginName,'this.userInfo.loginName');
|
||||||
|
|||||||
@@ -18,6 +18,7 @@
|
|||||||
@keydown.right.prevent="forwardCurrentTime"
|
@keydown.right.prevent="forwardCurrentTime"
|
||||||
@keydown.up.prevent="increaseVolume"
|
@keydown.up.prevent="increaseVolume"
|
||||||
@keydown.down.prevent="lowerVolume"
|
@keydown.down.prevent="lowerVolume"
|
||||||
|
@keydown.esc.prevent="toggleFullScreen"
|
||||||
tabindex="0"
|
tabindex="0"
|
||||||
width="100%"
|
width="100%"
|
||||||
height="100%"
|
height="100%"
|
||||||
@@ -39,12 +40,12 @@
|
|||||||
:isPlaying="isPlaying"
|
:isPlaying="isPlaying"
|
||||||
:biBarrageXml="biBarrageXml"
|
:biBarrageXml="biBarrageXml"
|
||||||
/>
|
/>
|
||||||
<!-- 加载动画(应该当前视频没有缓存时显示加载动画) && isCrowd && isShowPlayer -->
|
<!-- 加载动画 -->
|
||||||
<div v-show="isShowLoading" class="player-loading" @click="videoDom.focus({preventScroll: true})">
|
<div v-show="isShowLoading && isCrowd && isShowPlayer" class="player-loading" @click="videoDom.focus({preventScroll: true})">
|
||||||
<img src="@/components/VideoPlayer/images/loading.svg" alt="loading"/>
|
<img src="@/components/VideoPlayer/images/loading.svg" alt="loading"/>
|
||||||
</div>
|
</div>
|
||||||
<!-- 控制栏 -->
|
<!-- 控制栏 -->
|
||||||
<div v-show="isCrowd" class="player-controls-container" @click="videoDom.focus({preventScroll: true})">
|
<div v-show="!isShowLoading && isCrowd" class="player-controls-container" @click="videoDom.focus({preventScroll: true})">
|
||||||
<div v-show="isShowVolumeHint" class="player-volumeHint">
|
<div v-show="isShowVolumeHint" class="player-volumeHint">
|
||||||
<span class="player-volumeHint-text">当前音量:{{volumePercent}}%</span>
|
<span class="player-volumeHint-text">当前音量:{{volumePercent}}%</span>
|
||||||
</div>
|
</div>
|
||||||
@@ -70,7 +71,6 @@
|
|||||||
<div :class="{'player-controls': true, 'cursor-lasting-static': isCursorStatic}">
|
<div :class="{'player-controls': true, 'cursor-lasting-static': isCursorStatic}">
|
||||||
<div class="player-progress-bar">
|
<div class="player-progress-bar">
|
||||||
<progressBar
|
<progressBar
|
||||||
:blobId="blobId"
|
|
||||||
:currentProgress="currentProgress"
|
:currentProgress="currentProgress"
|
||||||
v-on:updateProgress="updateProgressByClickBar"
|
v-on:updateProgress="updateProgressByClickBar"
|
||||||
v-on:getMouseDownStatus="getMouseDownStatusOfProgressBar"
|
v-on:getMouseDownStatus="getMouseDownStatusOfProgressBar"
|
||||||
@@ -241,11 +241,6 @@ export default {
|
|||||||
type: String,
|
type: String,
|
||||||
default: null,
|
default: null,
|
||||||
},
|
},
|
||||||
// 视频链接对应的content Id
|
|
||||||
blobId: {
|
|
||||||
type: String,
|
|
||||||
default: null,
|
|
||||||
},
|
|
||||||
// 主题色
|
// 主题色
|
||||||
primaryColor: {
|
primaryColor: {
|
||||||
type: String,
|
type: String,
|
||||||
@@ -271,7 +266,7 @@ export default {
|
|||||||
},
|
},
|
||||||
isDrag:{
|
isDrag:{
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: true,
|
default: null,
|
||||||
},
|
},
|
||||||
isCrowd:{
|
isCrowd:{
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
@@ -317,17 +312,6 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
setInterval(() => {
|
setInterval(() => {
|
||||||
console.log('当前状态:',this.currentProgress,this.isDrag,this.videoDom.currentTime , this.videoDom.duration)
|
|
||||||
// 视频播放时本地记录视频实时播放时长,视频设置了禁止拖动时执行
|
|
||||||
if(!this.isDrag){
|
|
||||||
var time = localStorage.getItem('videoProgressData')
|
|
||||||
var arr = time&&JSON.parse(time) || {}
|
|
||||||
if(arr[this.blobId] < this.currentProgress || !arr[this.blobId]){
|
|
||||||
arr[this.blobId] = parseFloat((this.currentProgress).toFixed(8))
|
|
||||||
if(arr[this.blobId]) localStorage.setItem('videoProgressData',JSON.stringify(arr))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 定时更新进度条
|
// 定时更新进度条
|
||||||
if (this.isPlaying && !this.isMousedownProgress) {
|
if (this.isPlaying && !this.isMousedownProgress) {
|
||||||
this.currentProgress =
|
this.currentProgress =
|
||||||
@@ -364,11 +348,6 @@ export default {
|
|||||||
}
|
}
|
||||||
// 根据视频的readyState判断下一帧是否已加载,并控制loading的显示
|
// 根据视频的readyState判断下一帧是否已加载,并控制loading的显示
|
||||||
this.isShowLoading = this.videoDom.readyState < 3;
|
this.isShowLoading = this.videoDom.readyState < 3;
|
||||||
console.log("当前缓存:"+this.videoDom.readyState)
|
|
||||||
if (this.videoDom.readyState < 3){
|
|
||||||
console.log("详细信息",this.videoDom)
|
|
||||||
console.log("卡了",this.videoDom.readyState)
|
|
||||||
}
|
|
||||||
//if()
|
//if()
|
||||||
//console.log(this.videoDom.readyState,'this.videoDom.readyState');
|
//console.log(this.videoDom.readyState,'this.videoDom.readyState');
|
||||||
}, 1000);
|
}, 1000);
|
||||||
@@ -377,50 +356,20 @@ export default {
|
|||||||
this.isCursorStatic = false;
|
this.isCursorStatic = false;
|
||||||
this.timeoutControlsHint = 2000;
|
this.timeoutControlsHint = 2000;
|
||||||
});
|
});
|
||||||
this.videoDom.addEventListener('loadstart', function(){
|
|
||||||
console.log('\x1b[34m%s\x1b[0m','*****************视频加载中**************')
|
|
||||||
})
|
|
||||||
|
|
||||||
this.videoDom.addEventListener('loadeddata', function(){
|
|
||||||
console.log('\x1b[32m%s\x1b[0m','*****************加载完毕*************')
|
|
||||||
})
|
|
||||||
|
|
||||||
this.videoDom.addEventListener('error', function(){
|
|
||||||
console.log('\x1b[31m%s\x1b[0m','*****************加载失败**********')
|
|
||||||
})
|
|
||||||
// 监听全屏事件的变化,保存数据
|
// 监听全屏事件的变化,保存数据
|
||||||
window.addEventListener("F", () => {
|
window.addEventListener("fullscreenchange", () => {
|
||||||
this.isFullscreen = this.isFullScreen();
|
this.isFullscreen = this.isFullScreen();
|
||||||
});
|
});
|
||||||
document.addEventListener('fullscreenchange',this.handleFullscreenChange);
|
|
||||||
document.addEventListener('webkitfullscreenchange',this.handleFullscreenChange );
|
|
||||||
// this.videoDom.addEventListener('keydown', function(e){
|
|
||||||
// //console.log('\x1b[31m%s\x1b[0m','*****************加载失败**********')
|
|
||||||
// console.log("video is exit");
|
|
||||||
// if(e.key === "Escape"){
|
|
||||||
// console.log("按键 退出全屏 执行")
|
|
||||||
// }
|
|
||||||
// })
|
|
||||||
|
|
||||||
// this.videoDom.addEventListener("keydown", (e) => {
|
|
||||||
// console.log("是否监听到");
|
|
||||||
// if(e.keyCode == 27){
|
|
||||||
// console.log("是否监听到 esc");
|
|
||||||
// this.toggleFullScreen();
|
|
||||||
// }
|
|
||||||
// });
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
//当视频由于需要缓冲下一帧而停止,解决一直计时的问题
|
//当视频由于需要缓冲下一帧而停止,解决一直计时的问题
|
||||||
onWaiting(){
|
onWaiting(){
|
||||||
console.log('触发了onWairing');
|
console.log('触发了onWairing');
|
||||||
this.isShowLoading = true
|
|
||||||
this.$emit('onPlayerPause', {})
|
this.$emit('onPlayerPause', {})
|
||||||
},
|
},
|
||||||
//当音频/视频在已因缓冲而暂停或停止后已就绪时
|
//当音频/视频在已因缓冲而暂停或停止后已就绪时
|
||||||
onPlaying(){
|
onPlaying(){
|
||||||
console.log('触发缓存结束onPlaying');
|
console.log('触发缓存结束onPlaying');
|
||||||
this.isShowLoading = false
|
|
||||||
if(this.videoDom.paused){
|
if(this.videoDom.paused){
|
||||||
this.$emit('onPlayerPause', {})
|
this.$emit('onPlayerPause', {})
|
||||||
}else{
|
}else{
|
||||||
@@ -511,14 +460,6 @@ export default {
|
|||||||
updateProgressBySetTime(newCurrentTime) {
|
updateProgressBySetTime(newCurrentTime) {
|
||||||
this.currentProgress = newCurrentTime / this.videoDom.duration;
|
this.currentProgress = newCurrentTime / this.videoDom.duration;
|
||||||
},
|
},
|
||||||
/* 点击进度条更新视频播放进度2
|
|
||||||
*/
|
|
||||||
updateProgressByClickBar2(newCurrentTime,progressVideo) {
|
|
||||||
this.currentProgress = progressVideo;
|
|
||||||
this.barrageTimelineStart = newCurrentTime;
|
|
||||||
this.videoDom.currentTime = newCurrentTime;
|
|
||||||
this.updateProgressText();
|
|
||||||
},
|
|
||||||
/* 提高视频音量
|
/* 提高视频音量
|
||||||
*/
|
*/
|
||||||
increaseVolume() {
|
increaseVolume() {
|
||||||
@@ -569,7 +510,6 @@ export default {
|
|||||||
/* 切换“全屏”和“非全屏”模式
|
/* 切换“全屏”和“非全屏”模式
|
||||||
*/
|
*/
|
||||||
toggleFullScreen() {
|
toggleFullScreen() {
|
||||||
console.log("toggleFullScreen 执行 ",this.isFullScreen())
|
|
||||||
let element = this.$refs.area;
|
let element = this.$refs.area;
|
||||||
if (!this.isFullScreen()) {
|
if (!this.isFullScreen()) {
|
||||||
if (element.requestFullscreen) {
|
if (element.requestFullscreen) {
|
||||||
@@ -626,24 +566,6 @@ export default {
|
|||||||
const currentTime = this.$refs.video.currentTime;
|
const currentTime = this.$refs.video.currentTime;
|
||||||
this.$emit('onTimeUpdate', currentTime);
|
this.$emit('onTimeUpdate', currentTime);
|
||||||
},
|
},
|
||||||
/**
|
|
||||||
* 监听全屏变化
|
|
||||||
*/
|
|
||||||
handleFullscreenChange() {
|
|
||||||
console.log("handleFullscreenChange gx this.isFullScreen()",this.isFullScreen())
|
|
||||||
console.log("handleFullscreenChange gx this.isFullscreen",this.isFullscreen)
|
|
||||||
|
|
||||||
if(this.isFullscreen){
|
|
||||||
this.isFullscreen = !!document.fullscreenElement;
|
|
||||||
if (!this.isFullscreen) {
|
|
||||||
// 退出全屏后的逻辑(如暂停视频、更新 UI 等)
|
|
||||||
console.log('ESC 已退出全屏 handleFullscreenChange',this.isFullscreen);
|
|
||||||
this.$emit('onFullscreen',false);//全屏
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
currentVolume: function () {
|
currentVolume: function () {
|
||||||
|
|||||||
@@ -38,9 +38,6 @@ export default {
|
|||||||
isDrag:{
|
isDrag:{
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: true,
|
default: true,
|
||||||
},
|
|
||||||
blobId:{
|
|
||||||
type: String,
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
@@ -60,12 +57,10 @@ export default {
|
|||||||
window.addEventListener("mousemove", (e) => {
|
window.addEventListener("mousemove", (e) => {
|
||||||
if (this.is_mousedown_progress) {
|
if (this.is_mousedown_progress) {
|
||||||
this.move(e);
|
this.move(e);
|
||||||
e.preventDefault();
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
window.addEventListener("mouseup", (e) => {
|
window.addEventListener("mouseup", (e) => {
|
||||||
this.up(e);
|
this.up(e);
|
||||||
e.preventDefault();
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
beforeDestroy() {
|
beforeDestroy() {
|
||||||
@@ -73,51 +68,39 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
down(e) {
|
down(e) {
|
||||||
if (!this.isDrag) return;
|
if(this.isDrag) {
|
||||||
this.$emit("getMouseDownStatus", true);
|
this.$emit("getMouseDownStatus", true);
|
||||||
this.is_mousedown_progress = true;
|
this.is_mousedown_progress = true;
|
||||||
// 获取完整进度条的clientX(dom左上角)
|
// 获取完整进度条的clientX(dom左上角)
|
||||||
let init_clientX = this.dom_full.getBoundingClientRect().left;
|
let init_clientX = this.dom_full.getBoundingClientRect().left;
|
||||||
// 计算调整后的当前进度条的长度
|
// 计算调整后的当前进度条的长度
|
||||||
this.current_width_px = e.clientX - init_clientX;
|
this.current_width_px = e.clientX - init_clientX;
|
||||||
// 设置当前的播放进度(同时作用于当前进度条的样式)
|
// 设置当前的播放进度(同时作用于当前进度条的样式)
|
||||||
let current = (e.clientX - init_clientX) / this.dom_full.clientWidth;
|
let current =
|
||||||
if(current>1) current = 1;
|
(e.clientX - init_clientX) / this.dom_full.clientWidth;
|
||||||
if(current<0) current = 0;
|
this.$emit("updateProgress", current);
|
||||||
var time = localStorage.getItem('videoProgressData');
|
}
|
||||||
var arr = time&&JSON.parse(time) || {}
|
|
||||||
// 禁止拖动
|
|
||||||
if(time && arr[this.blobId] < current) return;
|
|
||||||
|
|
||||||
this.$emit("updateProgress", current);
|
|
||||||
},
|
},
|
||||||
move(e) {
|
move(e) {
|
||||||
if (!this.isDrag || !this.is_mousedown_progress) return;
|
if (this.is_mousedown_progress && this.isDrag) {
|
||||||
let init_clientX = this.dom_full.getBoundingClientRect().left;
|
let init_clientX = this.dom_full.getBoundingClientRect().left;
|
||||||
this.current_width_px = e.clientX - init_clientX;
|
this.current_width_px = e.clientX - init_clientX;
|
||||||
let current = (e.clientX - init_clientX) / this.dom_full.clientWidth;
|
let current =
|
||||||
if(current>1) current = 1;
|
(e.clientX - init_clientX) / this.dom_full.clientWidth;
|
||||||
if(current<0) current = 0;
|
this.$emit("updateProgress", current);
|
||||||
var time = localStorage.getItem('videoProgressData');
|
}
|
||||||
var arr = time&&JSON.parse(time) || {}
|
|
||||||
// 禁止拖动
|
|
||||||
if(time && arr[this.blobId] < current) return;
|
|
||||||
this.$emit("updateProgress", current);
|
|
||||||
},
|
},
|
||||||
up() {
|
up() {
|
||||||
if (!this.isDrag || !this.is_mousedown_progress) return;
|
if (this.is_mousedown_progress && this.isDrag) {
|
||||||
// 标记鼠标不处于按下的状态了
|
// 标记鼠标不处于按下的状态了
|
||||||
this.is_mousedown_progress = false;
|
this.is_mousedown_progress = false;
|
||||||
// 松开鼠标后,即调整进度条后,此时的进度(0-1)
|
// 松开鼠标后,即调整进度条后,此时的进度(0-1)
|
||||||
let current = this.current_width_px / this.dom_full.clientWidth;
|
let current =
|
||||||
if(current>1) current = 1;
|
this.current_width_px / this.dom_full.clientWidth;
|
||||||
if(current<0) current = 0;
|
this.$emit("updateProgress", current);
|
||||||
var time = localStorage.getItem('videoProgressData');
|
this.$emit("getMouseDownStatus", false);
|
||||||
var arr = time&&JSON.parse(time) || {}
|
}
|
||||||
this.$emit("getMouseDownStatus", false);
|
|
||||||
// 禁止拖动
|
|
||||||
if(time && arr[this.blobId] < current) return;
|
|
||||||
this.$emit("updateProgress", current);
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@@ -168,4 +151,4 @@ export default {
|
|||||||
.progress-bar:hover .progress-current::after {
|
.progress-bar:hover .progress-current::after {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
@@ -82,9 +82,6 @@ export const pages=[
|
|||||||
{title:'学习路径图',path:'path',component:'study/StudyPath',hidden:false},
|
{title:'学习路径图',path:'path',component:'study/StudyPath',hidden:false},
|
||||||
{title:'学习项目',path:'project',component:'study/StudyProject',hidden:false}
|
{title:'学习项目',path:'project',component:'study/StudyProject',hidden:false}
|
||||||
]},
|
]},
|
||||||
{title:'我的必修',path:'/growth',hidden:false,children:[
|
|
||||||
{title:'专业力必修',path:'growthPage',component:'growth/index',hidden:false},
|
|
||||||
]},
|
|
||||||
{title:'个人中心',path:'/uc',hidden:false,children:[
|
{title:'个人中心',path:'/uc',hidden:false,children:[
|
||||||
{title:'首页',path:'index',component:'StudyIndex',hidden:false}
|
{title:'首页',path:'index',component:'StudyIndex',hidden:false}
|
||||||
]},
|
]},
|
||||||
@@ -128,8 +125,7 @@ export const iframes=[
|
|||||||
{title:'查看受众', path:'/iframe/ugroup/view',hidden:false,component:'manage/AudienceView'},
|
{title:'查看受众', path:'/iframe/ugroup/view',hidden:false,component:'manage/AudienceView'},
|
||||||
{title:'问答管理', path:'/iframe/qa/manages',hidden:false,component:'qa/ManageList'},
|
{title:'问答管理', path:'/iframe/qa/manages',hidden:false,component:'qa/ManageList'},
|
||||||
{title:'待审核课程', path:'/iframe/course/noapproved',hidden:false,component:'examine/NotApproved'},
|
{title:'待审核课程', path:'/iframe/course/noapproved',hidden:false,component:'examine/NotApproved'},
|
||||||
{title:'已审核课程', path:'/iframe/course/reviewed',hidden:false,component:'examine/Reviewed'},
|
{title:'已审核课程', path:'/iframe/course/reviewed',hidden:false,component:'examine/Reviewed'}
|
||||||
{title:'标签管理', path:'/iframe/tag/manages',hidden:false,component:'tag/TagManageList'},
|
|
||||||
|
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
@@ -6,10 +6,7 @@
|
|||||||
<!-- <div style="height: 20px;"></div> -->
|
<!-- <div style="height: 20px;"></div> -->
|
||||||
</div>
|
</div>
|
||||||
<!-- width: 990px; -->
|
<!-- width: 990px; -->
|
||||||
<div class="main-body" :style="{
|
<div class="main-body" style="padding: 30px 20px;flex:1; background-color: #fff;margin-left: 20px;">
|
||||||
backgroundColor: bgColor,
|
|
||||||
padding
|
|
||||||
}" style="flex:1; margin-left: 20px;">
|
|
||||||
<!-- <div style="margin-bottom: 10px;padding:10px; border-bottom: 1px solid #dbdbdb;"> -->
|
<!-- <div style="margin-bottom: 10px;padding:10px; border-bottom: 1px solid #dbdbdb;"> -->
|
||||||
<!-- <el-breadcrumb separator-class="el-icon-arrow-right">
|
<!-- <el-breadcrumb separator-class="el-icon-arrow-right">
|
||||||
<el-breadcrumb-item :to="{ path: '/uc/index' }"><i class="el-icon-arrow-right"></i>个人中心</el-breadcrumb-item>
|
<el-breadcrumb-item :to="{ path: '/uc/index' }"><i class="el-icon-arrow-right"></i>个人中心</el-breadcrumb-item>
|
||||||
@@ -18,12 +15,10 @@
|
|||||||
<!-- </div> -->
|
<!-- </div> -->
|
||||||
<transition name="fade-transform" mode="out-in">
|
<transition name="fade-transform" mode="out-in">
|
||||||
<keep-alive :include="cachedViews">
|
<keep-alive :include="cachedViews">
|
||||||
<div :style="{
|
<div style="background-color: #FFFFFF;min-height: 600px;padding-bottom: 50px;">
|
||||||
backgroundColor: bgColor
|
|
||||||
}" style="min-height: 600px;padding-bottom: 50px;">
|
|
||||||
<router-view :key="key" />
|
<router-view :key="key" />
|
||||||
</div>
|
</div>
|
||||||
</keep-alive>
|
</keep-alive>
|
||||||
</transition>
|
</transition>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -44,14 +39,7 @@ export default {
|
|||||||
return this.$route.meta.title;
|
return this.$route.meta.title;
|
||||||
},
|
},
|
||||||
key() {
|
key() {
|
||||||
console.log(this.$route)
|
|
||||||
return this.$route.path
|
return this.$route.path
|
||||||
},
|
|
||||||
bgColor() {
|
|
||||||
return this.$route.path === "/growth/growthPage" ? "rgba(0,0,0,0)" : "#fff";
|
|
||||||
},
|
|
||||||
padding(){
|
|
||||||
return this.$route.path === "/growth/growthPage" ? "0" : "30px 20px";
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -193,20 +193,6 @@ export const constantRoutes = [{
|
|||||||
name: 'caseDetail',
|
name: 'caseDetail',
|
||||||
meta: {title: '案例详情', keepAlive: true, icon: 'dashboard', noCache: false, affix: true},
|
meta: {title: '案例详情', keepAlive: true, icon: 'dashboard', noCache: false, affix: true},
|
||||||
},
|
},
|
||||||
{
|
|
||||||
path: '/case/charts',
|
|
||||||
hidden: true,
|
|
||||||
component: (resolve) => require(['@/views/portal/case/Charts'], resolve),
|
|
||||||
name: 'caseCharts',
|
|
||||||
meta: {title: '排行榜', keepAlive: true, icon: 'dashboard', noCache: false, affix: true},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: '/case/excellent',
|
|
||||||
hidden: true,
|
|
||||||
component: (resolve) => require(['@/views/portal/case/Excellent'], resolve),
|
|
||||||
name: 'caseExcellent',
|
|
||||||
meta: {title: '浏览量榜单', keepAlive: true, icon: 'dashboard', noCache: false, affix: true},
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
path: '/article',
|
path: '/article',
|
||||||
hidden: true,
|
hidden: true,
|
||||||
@@ -341,13 +327,6 @@ export const constantRoutes = [{
|
|||||||
name: 'hotforum',
|
name: 'hotforum',
|
||||||
meta: {title: '热点论坛', icon: 'dashboard', noCache: true, affix: true},
|
meta: {title: '热点论坛', icon: 'dashboard', noCache: true, affix: true},
|
||||||
},
|
},
|
||||||
{
|
|
||||||
path: '/lexiang',
|
|
||||||
hidden: true,
|
|
||||||
component: (resolve) => require(['@/views/sso/lexiang'], resolve),
|
|
||||||
name: 'lexiang',
|
|
||||||
meta: {title: '单点登录', icon: 'dashboard', noCache: true, affix: true},
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
path: '/404',
|
path: '/404',
|
||||||
component: (resolve) => require(['@/views/error/404'], resolve),
|
component: (resolve) => require(['@/views/error/404'], resolve),
|
||||||
|
|||||||
@@ -423,7 +423,6 @@ export function translate(field) {
|
|||||||
let name = '';
|
let name = '';
|
||||||
switch (field) {
|
switch (field) {
|
||||||
case 'total':name = '累计'; break;
|
case 'total':name = '累计'; break;
|
||||||
case 'now':name = '当前'; break;
|
|
||||||
case 'weeks':name = '本周'; break;
|
case 'weeks':name = '本周'; break;
|
||||||
case 'months':name = '本月'; break;
|
case 'months':name = '本月'; break;
|
||||||
case 'years':name = '本年'; break;
|
case 'years':name = '本年'; break;
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
<div class="box" :class="{ incl: url.includes('projectdetails') }">
|
<div class="box" :class="{ incl: url.includes('projectdetails') }">
|
||||||
<portal-header style="background: #387DF7;" :hideSearch="true" textColor="#ffffff"></portal-header>
|
<portal-header style="background: #387DF7;" :hideSearch="true" textColor="#ffffff"></portal-header>
|
||||||
<iframe :src="url" style="width: 100%;height: 100%;" frameborder="0" ref="iframe"></iframe>
|
<iframe :src="url" style="width: 100%;height: 100%;" frameborder="0" ref="iframe"></iframe>
|
||||||
<portal-footer v-if="isShowFooter"></portal-footer>
|
<portal-footer></portal-footer>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
@@ -16,8 +16,7 @@ import portalFooter from "@/components/PortalFooter.vue";
|
|||||||
data(){
|
data(){
|
||||||
return {
|
return {
|
||||||
url: "",
|
url: "",
|
||||||
boeUrl:process.env.VUE_APP_BOE_WEB_URL,
|
boeUrl:process.env.VUE_APP_BOE_WEB_URL
|
||||||
isShowFooter:true
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
@@ -25,10 +24,6 @@ import portalFooter from "@/components/PortalFooter.vue";
|
|||||||
let to = this.$route.query.to;//跳转的地址,以 /开头的地址
|
let to = this.$route.query.to;//跳转的地址,以 /开头的地址
|
||||||
let urlPre=window.location.protocol+'//'+window.location.host;
|
let urlPre=window.location.protocol+'//'+window.location.host;
|
||||||
this.url=urlPre+to
|
this.url=urlPre+to
|
||||||
|
|
||||||
if(to.includes('growthList')){
|
|
||||||
this.isShowFooter = false
|
|
||||||
}
|
|
||||||
if(params){
|
if(params){
|
||||||
this.url=this.url+'?'+params;
|
this.url=this.url+'?'+params;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
<!--
|
|
||||||
<template>
|
<template>
|
||||||
<div class="login" :style="`background: url(${webBaseUrl}/temp/background.jpg) no-repeat`">
|
<div class="login" :style="`background: url(${webBaseUrl}/temp/background.jpg) no-repeat`">
|
||||||
<el-form :model="form" ref="form" :rules="rules">
|
<el-form :model="form" ref="form" :rules="rules">
|
||||||
@@ -25,7 +24,7 @@
|
|||||||
<el-form-item>
|
<el-form-item>
|
||||||
<section>
|
<section>
|
||||||
<el-checkbox v-model="rememberMe">记住密码</el-checkbox>
|
<el-checkbox v-model="rememberMe">记住密码</el-checkbox>
|
||||||
<!– <span>忘记密码</span> –>
|
<!-- <span>忘记密码</span> -->
|
||||||
</section>
|
</section>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item><el-button type="primary" @click="loginSubmit">点击登录</el-button></el-form-item>
|
<el-form-item><el-button type="primary" @click="loginSubmit">点击登录</el-button></el-form-item>
|
||||||
@@ -195,4 +194,3 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
-->
|
|
||||||
|
|||||||
@@ -289,8 +289,8 @@ export default {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
viewTopic(data) {
|
viewTopic(data) {
|
||||||
window.open(this.webBaseUrl+'/article/detail?id='+data.id , '_blank')
|
// window.open(this.webBaseUrl+'/article/detail?id='+data.id , '_blank')
|
||||||
// this.$router.push({path:'/article/detail',query:{id:data.id}})
|
this.$router.push({path:'/article/detail',query:{id:data.id}})
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -32,9 +32,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div style="margin: 5px 0 0 5px;">
|
|
||||||
<el-button type="primary" @click="recoRanking">推荐榜单</el-button>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<el-table style="100%" :data="caseList" border stripe>
|
<el-table style="100%" :data="caseList" border stripe>
|
||||||
<el-table-column label="标题" prop="title" show-overflow-tooltip>
|
<el-table-column label="标题" prop="title" show-overflow-tooltip>
|
||||||
@@ -52,7 +49,6 @@
|
|||||||
<el-table-column label="操作">
|
<el-table-column label="操作">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-button-group>
|
<el-button-group>
|
||||||
<el-button style="margin:0 5px" type="text" v-if="scope.row.recommendRank === ''||scope.row.recommendRank === null" @click="suggest(scope.row)" icon="el-icon-medal">榜单推荐</el-button>
|
|
||||||
<!-- <el-button type="text" @click="shareItem(scope.row)" icon="el-icon-share" style="margin:0 5px">推荐</el-button> -->
|
<!-- <el-button type="text" @click="shareItem(scope.row)" icon="el-icon-share" style="margin:0 5px">推荐</el-button> -->
|
||||||
<el-button style="margin:0 5px" v-if="!scope.row.isTop && scope.row.confidentialityLevel == '内部'" type="text"
|
<el-button style="margin:0 5px" v-if="!scope.row.isTop && scope.row.confidentialityLevel == '内部'" type="text"
|
||||||
@click="setTop(scope.row)" icon="el-icon-top">置顶</el-button>
|
@click="setTop(scope.row)" icon="el-icon-top">置顶</el-button>
|
||||||
@@ -60,12 +56,8 @@
|
|||||||
@click="setTop(scope.row)" icon="el-icon-bottom">取消置顶</el-button>
|
@click="setTop(scope.row)" icon="el-icon-bottom">取消置顶</el-button>
|
||||||
<el-button type="text" icon="el-icon-medal"
|
<el-button type="text" icon="el-icon-medal"
|
||||||
v-if="scope.row.filePath && scope.row.confidentialityLevel == '内部'"><span @click="cancal(scope.row)"
|
v-if="scope.row.filePath && scope.row.confidentialityLevel == '内部'"><span @click="cancal(scope.row)"
|
||||||
v-if="scope.row.excellent">取消最佳</span>
|
v-if="scope.row.excellent">取消最佳</span><span @click="open(scope.row)" v-else>最佳案例</span></el-button>
|
||||||
<!-- <span @click="open(scope.row)" v-else>最佳案例</span> -->
|
|
||||||
<span @click="theBest(scope.row)" v-else>最佳</span>
|
|
||||||
</el-button>
|
|
||||||
<el-button style="margin:0 5px" type="text" @click="delItem(scope.row)" icon="el-icon-delete">删除</el-button>
|
<el-button style="margin:0 5px" type="text" @click="delItem(scope.row)" icon="el-icon-delete">删除</el-button>
|
||||||
<!-- <el-button style="margin:0 5px" type="text" @click="theBest(scope.row)" icon="el-icon-delete">最佳</el-button> -->
|
|
||||||
</el-button-group>
|
</el-button-group>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
@@ -129,91 +121,16 @@
|
|||||||
</div>
|
</div>
|
||||||
<span slot="footer" class="dialog-footer"><el-button @click="recommend.dlgShow = false">关闭</el-button></span>
|
<span slot="footer" class="dialog-footer"><el-button @click="recommend.dlgShow = false">关闭</el-button></span>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
<el-dialog
|
|
||||||
title="最佳案例"
|
|
||||||
:visible.sync="bestValue"
|
|
||||||
width="36%">
|
|
||||||
<div class="best_card">
|
|
||||||
<div class="card_item">
|
|
||||||
<div class="card_title">
|
|
||||||
<i class="icon"></i>
|
|
||||||
<span class="text">年度</span>
|
|
||||||
</div>
|
|
||||||
<el-input style="width:190px" disabled v-model="bestYear" placeholder="请输入年度"></el-input>
|
|
||||||
</div>
|
|
||||||
<div class="card_item">
|
|
||||||
<div class="card_title">
|
|
||||||
<i class="icon"></i>
|
|
||||||
<span class="text">组织领域</span>
|
|
||||||
</div>
|
|
||||||
<el-input disabled v-model="bestOrg" placeholder="请输入组织领域"></el-input>
|
|
||||||
</div>
|
|
||||||
<div class="card_item">
|
|
||||||
<div class="card_title">
|
|
||||||
<span class="text">最佳理由</span>
|
|
||||||
</div>
|
|
||||||
<el-input type="textarea"
|
|
||||||
placeholder="请输入内容"
|
|
||||||
v-model="bestTextarea"
|
|
||||||
maxlength="200"
|
|
||||||
show-word-limit></el-input>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<span slot="footer" class="dialog-footer">
|
|
||||||
<el-button @click="notBest">取 消</el-button>
|
|
||||||
<el-button type="primary" @click="parameBest">确 定</el-button>
|
|
||||||
</span>
|
|
||||||
</el-dialog>
|
|
||||||
<el-drawer
|
|
||||||
title="推荐榜单"
|
|
||||||
:visible.sync="RankingShow"
|
|
||||||
size="80%">
|
|
||||||
<div style="padding: 10px 20px 80px">
|
|
||||||
<el-table :data="tableData" border stripe>
|
|
||||||
<el-table-column
|
|
||||||
type="index"
|
|
||||||
width="50"
|
|
||||||
label="排序">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column show-overflow-tooltip label="案例标题" prop="caseTitle"></el-table-column>
|
|
||||||
<el-table-column width="150px" label="作者名称" prop="caseAuthor"></el-table-column>
|
|
||||||
<el-table-column width="150px" label="上榜人" prop="caseAuthor"></el-table-column>
|
|
||||||
<el-table-column width="250px" label="上榜时间" prop="recommendRankPusTime"></el-table-column>
|
|
||||||
<el-table-column label="操作">
|
|
||||||
<template slot-scope="scope">
|
|
||||||
<el-button-group>
|
|
||||||
<el-button style="margin:0 5px" type="text" @click="handleNotRank(scope.row)" icon="el-icon-delete">取消推荐</el-button>
|
|
||||||
<el-button style="margin:0 5px" type="text" @click="moveUp(scope.row,scope.$index)" icon="el-icon-top">上移排序</el-button>
|
|
||||||
<el-button style="margin:0 5px" type="text" @click="moveDown(scope.row,scope.$index)" icon="el-icon-bottom">下移排序</el-button>
|
|
||||||
</el-button-group>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
</el-table>
|
|
||||||
</div>
|
|
||||||
<div class="rank_footer">
|
|
||||||
<el-button @click="closeDrawer" style="width: 130px;height:40px;margin-right: 30px;" type="default">取消</el-button>
|
|
||||||
<el-button @click="queryList" style="width: 130px;height:40px;margin-right: 15px;" type="primary">确定</el-button>
|
|
||||||
</div>
|
|
||||||
</el-drawer>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import apiCase from '@/api/modules/cases.js';
|
import apiCase from '@/api/modules/cases.js';
|
||||||
import apiUser from '@/api/system/user.js'
|
import apiUser from '@/api/system/user.js'
|
||||||
import apiType from "@/api/modules/type.js";
|
|
||||||
export default {
|
export default {
|
||||||
name: 'articleItems',
|
name: 'articleItems',
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
adminList: [],
|
|
||||||
caseType: process.env.VUE_APP_CASE_TYPE,
|
|
||||||
RankingShow: false,
|
|
||||||
bestYear: '',
|
|
||||||
bestOrg: '',
|
|
||||||
bestId: '',
|
|
||||||
bestTextarea: '',
|
|
||||||
bestValue: false,
|
|
||||||
excellent: false,
|
excellent: false,
|
||||||
queryObj: {
|
queryObj: {
|
||||||
pageIndex: 1,
|
pageIndex: 1,
|
||||||
@@ -222,8 +139,6 @@ export default {
|
|||||||
excellent: '',
|
excellent: '',
|
||||||
}, //查询对象
|
}, //查询对象
|
||||||
caseList: [], //案例列表
|
caseList: [], //案例列表
|
||||||
tableData: [],
|
|
||||||
caseIds: '',
|
|
||||||
count: 0,
|
count: 0,
|
||||||
recommend: {
|
recommend: {
|
||||||
dlgShow: false,
|
dlgShow: false,
|
||||||
@@ -256,153 +171,8 @@ export default {
|
|||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.getData();
|
this.getData();
|
||||||
this.getList();
|
|
||||||
apiType.treeList(1,Number(this.caseType ?? 155),1).then(res=>{
|
|
||||||
if(res.code == 200){
|
|
||||||
this.adminList = res.data.records;
|
|
||||||
}
|
|
||||||
})
|
|
||||||
},
|
|
||||||
watch:{
|
|
||||||
RankingShow(val){
|
|
||||||
if(val){
|
|
||||||
this.getList()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
orgDomainTranslate(code) { // 组织领域翻译
|
|
||||||
if (code == '') {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
let name = '';
|
|
||||||
let data = this.adminList.find(item => {
|
|
||||||
return item.code == code;
|
|
||||||
});
|
|
||||||
if (data) {
|
|
||||||
name = data.name;
|
|
||||||
}
|
|
||||||
return name;
|
|
||||||
},
|
|
||||||
suggest(record){
|
|
||||||
if(this.tableData.length == 10){
|
|
||||||
this.$message.error('最多推荐10个')
|
|
||||||
return
|
|
||||||
}
|
|
||||||
this.$confirm('你确认要推荐此案例吗?', '提示', {
|
|
||||||
confirmButtonText: '确定',
|
|
||||||
cancelButtonText: '取消',
|
|
||||||
type: 'warning'
|
|
||||||
}).then(() => {
|
|
||||||
apiCase.riseIntoRank({caseId:record.id}).then(res=>{
|
|
||||||
if(res.status == 200 ){
|
|
||||||
this.$message.success('推荐成功')
|
|
||||||
this.getData()
|
|
||||||
this.getList()
|
|
||||||
}
|
|
||||||
})
|
|
||||||
})
|
|
||||||
},
|
|
||||||
handleNotRank(record){
|
|
||||||
this.$confirm('你确认要取消推荐吗?', '提示', {
|
|
||||||
confirmButtonText: '确定',
|
|
||||||
cancelButtonText: '取消',
|
|
||||||
type: 'warning'
|
|
||||||
}).then(() => {
|
|
||||||
apiCase.cancelRiseIntoRank({caseId:record?.caseId}).then(res=>{
|
|
||||||
if(res.status == 200){
|
|
||||||
this.$message.success('取消推荐成功')
|
|
||||||
this.getList()
|
|
||||||
this.getData()
|
|
||||||
}
|
|
||||||
}).catch(()=>{
|
|
||||||
this.$message.error('取消推荐失败')
|
|
||||||
})
|
|
||||||
})
|
|
||||||
},
|
|
||||||
moveUp(row,index){
|
|
||||||
console.log(row,index,'index')
|
|
||||||
if(index == 0){
|
|
||||||
this.$message.error('已经排到第一位了')
|
|
||||||
return
|
|
||||||
}
|
|
||||||
this.swapArray(this.tableData,index,index-1)
|
|
||||||
},
|
|
||||||
moveDown(row,index){
|
|
||||||
if(index == this.tableData.length - 1){
|
|
||||||
this.$message.error('已经排到最后一位了')
|
|
||||||
return
|
|
||||||
}
|
|
||||||
this.swapArray(this.tableData,index,index+1)
|
|
||||||
},
|
|
||||||
swapArray(arr, index1, index2){
|
|
||||||
const temp = arr[index1];
|
|
||||||
arr.splice(index1, 1);
|
|
||||||
arr.splice(index2, 0, temp);
|
|
||||||
},
|
|
||||||
getList(){
|
|
||||||
apiCase.getQueryRecommendRank({pageSize:10}).then(res=>{
|
|
||||||
console.log(res,'res')
|
|
||||||
if(res.status == 200){
|
|
||||||
this.tableData = res.result
|
|
||||||
this.caseIds = res.result.map(item=>item.caseId).join(',')
|
|
||||||
}
|
|
||||||
})
|
|
||||||
},
|
|
||||||
notBest(){
|
|
||||||
this.bestValue = false
|
|
||||||
this.bestYear = ''
|
|
||||||
this.bestOrg = ''
|
|
||||||
this.bestId = ''
|
|
||||||
this.bestTextarea = ''
|
|
||||||
},
|
|
||||||
parameBest(){
|
|
||||||
this.excellent = true;
|
|
||||||
let data = {
|
|
||||||
id: this.bestId,
|
|
||||||
excellent: this.excellent,
|
|
||||||
excellentReason: this.bestTextarea
|
|
||||||
}
|
|
||||||
apiCase.excellent(data).then(res=>{
|
|
||||||
if (res.status == 200) {
|
|
||||||
this.$message({
|
|
||||||
type: 'success',
|
|
||||||
message: '设置最佳案例成功!'
|
|
||||||
});
|
|
||||||
this.getData()
|
|
||||||
}else{
|
|
||||||
this.$message({
|
|
||||||
type: 'error',
|
|
||||||
message: res.message
|
|
||||||
});
|
|
||||||
}
|
|
||||||
this.notBest()
|
|
||||||
})
|
|
||||||
},
|
|
||||||
recoRanking(){
|
|
||||||
this.RankingShow = true
|
|
||||||
},
|
|
||||||
closeDrawer(){
|
|
||||||
this.RankingShow = false
|
|
||||||
},
|
|
||||||
queryList(){
|
|
||||||
if(this.caseIds != this.tableData.map(item=>item.caseId).join(',')){
|
|
||||||
apiCase.adjustRank({caseIds:this.tableData.map(item=>item.caseId).join(',')}).then(res=>{
|
|
||||||
if(res.status == 200){
|
|
||||||
this.$message({
|
|
||||||
message: '调整成功',
|
|
||||||
type: 'success'
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}).catch(()=>{
|
|
||||||
this.$message({
|
|
||||||
message: '调整失败',
|
|
||||||
type: 'error'
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
|
||||||
this.RankingShow = false
|
|
||||||
},
|
|
||||||
// 导出
|
// 导出
|
||||||
importList() {
|
importList() {
|
||||||
apiCase.exports(this.queryObj).then(res => {
|
apiCase.exports(this.queryObj).then(res => {
|
||||||
@@ -441,11 +211,6 @@ export default {
|
|||||||
message: '取消成功!'
|
message: '取消成功!'
|
||||||
});
|
});
|
||||||
this.getData()
|
this.getData()
|
||||||
}else{
|
|
||||||
this.$message({
|
|
||||||
type: 'error',
|
|
||||||
message: res.message
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}).catch(() => {
|
}).catch(() => {
|
||||||
@@ -589,12 +354,6 @@ export default {
|
|||||||
this.$message({ type: 'info', message: '已取消删除', offset: 50 });
|
this.$message({ type: 'info', message: '已取消删除', offset: 50 });
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
theBest(item){
|
|
||||||
this.bestValue = true
|
|
||||||
this.bestId = item.id
|
|
||||||
this.bestOrg = this.orgDomainTranslate(item.orgDomainParent)
|
|
||||||
this.bestYear = item.sysCreateTime.split('-')[0]
|
|
||||||
},
|
|
||||||
//添加推荐
|
//添加推荐
|
||||||
shareItem(item) {
|
shareItem(item) {
|
||||||
this.shareItemData = { ...item }
|
this.shareItemData = { ...item }
|
||||||
@@ -697,8 +456,7 @@ export default {
|
|||||||
},
|
},
|
||||||
viewTopic(data) {
|
viewTopic(data) {
|
||||||
if (data.confidentialityLevel == '内部') {
|
if (data.confidentialityLevel == '内部') {
|
||||||
// this.$router.push({ path: '/case/detail', query: { id: data.id } })
|
this.$router.push({ path: '/case/detail', query: { id: data.id } })
|
||||||
window.open(this.webBaseUrl+'/case/detail?id='+data.id , '_blank')
|
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning("非内部密级案例不能查看");
|
this.$message.warning("非内部密级案例不能查看");
|
||||||
}
|
}
|
||||||
@@ -709,48 +467,6 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.rank_footer{
|
|
||||||
position: absolute;
|
|
||||||
bottom: 0;
|
|
||||||
right: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 80px;
|
|
||||||
display: flex;
|
|
||||||
justify-content: flex-end;
|
|
||||||
align-items: center;
|
|
||||||
background: #fff;
|
|
||||||
padding-right: 20px;
|
|
||||||
}
|
|
||||||
::v-deep .el-dialog__header{
|
|
||||||
border-bottom: 1px solid #f0f0f1;
|
|
||||||
}
|
|
||||||
::v-deep .el-textarea__inner{
|
|
||||||
height: 100px !important;
|
|
||||||
}
|
|
||||||
.best_card{
|
|
||||||
.card_item{
|
|
||||||
display: flex;
|
|
||||||
justify-content: start;
|
|
||||||
margin-bottom: 20px;
|
|
||||||
.card_title{
|
|
||||||
width: 94px;
|
|
||||||
min-width: 94px;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: end;
|
|
||||||
margin-right: 14px;
|
|
||||||
.icon{
|
|
||||||
width:8px;
|
|
||||||
height: 8px;
|
|
||||||
background: url('../../assets/images/asterisk.png') no-repeat;
|
|
||||||
background-size: 100%;
|
|
||||||
}
|
|
||||||
.text{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.article-status1 {
|
.article-status1 {
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
border: 1px dotted #1ea0fa;
|
border: 1px dotted #1ea0fa;
|
||||||
|
|||||||
@@ -624,12 +624,8 @@ export default {
|
|||||||
// if(item.minute){
|
// if(item.minute){
|
||||||
// item.duration=parseFloat(item.minute)*60;
|
// item.duration=parseFloat(item.minute)*60;
|
||||||
// }
|
// }
|
||||||
// 视频文件才可以设置时长,其他类型直接赋值0
|
// 如果没有给一个默认值30分钟
|
||||||
if (item.fileType === 'mp4' || item.fileType === 'mp3') {
|
item.duration = item.minute ? parseFloat(item.minute) * 60 : 1800;
|
||||||
item.duration = item.minute ? parseFloat(item.minute) * 60 : 0;
|
|
||||||
} else {
|
|
||||||
item.duration = 0;
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
coueseFile.batchUpdate(this.fileList).then(rs => {
|
coueseFile.batchUpdate(this.fileList).then(rs => {
|
||||||
|
|||||||
@@ -195,15 +195,7 @@
|
|||||||
</template>
|
</template>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
<!--课程管理-->
|
<!--课程管理-->
|
||||||
<el-dialog
|
<el-dialog custom-class="g-dialog" title="课程学习管理" width="900px" :visible.sync="manageStudy.dlgShow" :close-on-click-modal="false">
|
||||||
custom-class="g-dialog"
|
|
||||||
title="课程学习管理"
|
|
||||||
width="900px"
|
|
||||||
height="900px"
|
|
||||||
:visible.sync="manageStudy.dlgShow"
|
|
||||||
:close-on-click-modal="false"
|
|
||||||
|
|
||||||
>
|
|
||||||
<manager :manageStudyData="manageStudyData" :isShowDialog="manageStudy.dlgShow"></manager>
|
<manager :manageStudyData="manageStudyData" :isShowDialog="manageStudy.dlgShow"></manager>
|
||||||
<template #footer>
|
<template #footer>
|
||||||
<el-button @click="manageStudy.dlgShow = false">关闭</el-button>
|
<el-button @click="manageStudy.dlgShow = false">关闭</el-button>
|
||||||
@@ -676,10 +668,8 @@ export default {
|
|||||||
}
|
}
|
||||||
apiCourse.pageList(this.params).then(rs=>{
|
apiCourse.pageList(this.params).then(rs=>{
|
||||||
if(rs.status==200){
|
if(rs.status==200){
|
||||||
this.pageData = rs.result.list ? rs.result.list : [];
|
this.pageData = rs.result.list;
|
||||||
// this.pageData = rs.result.list;
|
|
||||||
this.page.count = rs.result.count;
|
this.page.count = rs.result.count;
|
||||||
this.page.pageSize = rs.result.pageSize;
|
|
||||||
}else{
|
}else{
|
||||||
return this.$message.error(rs.message);
|
return this.$message.error(rs.message);
|
||||||
}
|
}
|
||||||
@@ -949,8 +939,4 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.el-dialog__body {
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -1,146 +1,80 @@
|
|||||||
<template>
|
<template>
|
||||||
<div style="padding: 12px 32px 10px 12px;">
|
<div style="padding: 12px 32px 10px 12px;">
|
||||||
<div style="display: flex;justify-content: flex-start;">
|
<div style="display: flex;justify-content: flex-start;">
|
||||||
|
|
||||||
<div>
|
<div><el-input v-model="keyword" placeholder="输入课程名称搜索" clearable></el-input></div>
|
||||||
<el-input v-model="keyword" placeholder="输入课程名称搜索" clearable></el-input>
|
<div style="padding-left: 10px;"><el-button @click="recordList()" type="primary" icon="el-icon-search">搜索</el-button></div>
|
||||||
|
<div style="padding: 0px 5px;"><el-button icon="el-icon-refresh-right" @click="keyword = ''" type="primary" >重置</el-button></div>
|
||||||
|
<div style="padding: 0px 5px;"><el-button type="primary" @click="exportFile()" icon="el-icon-search" size="small" round>导出</el-button></div>
|
||||||
|
<div style="padding: 0px 5px;"><el-button type="primary" @click="exportStudentOfTearcher()" icon="el-icon-search" size="small" round>导出学员信息</el-button></div>
|
||||||
</div>
|
</div>
|
||||||
<div style="padding-left: 10px;">
|
<div class="Export">
|
||||||
<el-button @click="recordList()" type="primary" icon="el-icon-search">搜索</el-button>
|
<!-- <div style="padding-left: 10px;"><el-button type="primary" @click="exportFile()" icon="el-icon-search" size="small" round>导出</el-button></div> -->
|
||||||
|
<!-- <div style="padding: 0px 5px;"><el-button icon="el-icon-refresh-right" type="primary" size="small" round>导出学员信息</el-button></div> -->
|
||||||
</div>
|
</div>
|
||||||
<div style="padding: 0px 5px;">
|
<div style="margin-top:20px;">
|
||||||
<el-button icon="el-icon-refresh-right" @click="keyword = ''" type="primary">重置</el-button>
|
<el-table :data="pageData" border stripe>
|
||||||
|
<el-table-column
|
||||||
|
label="课程时间"
|
||||||
|
prop="courseTime"
|
||||||
|
width="200px">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="课程名称"
|
||||||
|
prop="courseName"
|
||||||
|
width="200px">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="开课场地"
|
||||||
|
prop="address"
|
||||||
|
width="240px">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="所属课程"
|
||||||
|
prop="parentCourse"
|
||||||
|
width="120px">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="所属项目"
|
||||||
|
prop="parentProject"
|
||||||
|
></el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="所属路径"
|
||||||
|
prop="parentRoute"
|
||||||
|
width="200px"
|
||||||
|
></el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="学习总人数"
|
||||||
|
prop="studentNumber"
|
||||||
|
width="100px"
|
||||||
|
></el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="时长(分钟)"
|
||||||
|
width="100px"
|
||||||
|
prop="period"
|
||||||
|
></el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="评分"
|
||||||
|
width="100px"
|
||||||
|
prop="score"
|
||||||
|
></el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="操作"
|
||||||
|
align="center"
|
||||||
|
width="150px"
|
||||||
|
prop="cz"
|
||||||
|
fixed="right"
|
||||||
|
>
|
||||||
|
<template v-slot="scope">
|
||||||
|
<el-button type="text" @click="exportStudentOfCourse(scope.row.courseId)" size="small">导出学员信息</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
</div>
|
</div>
|
||||||
<div style="padding: 0px 5px;">
|
|
||||||
<el-button type="primary" @click="exportFile()" icon="el-icon-search" size="small" round>导出</el-button>
|
|
||||||
</div>
|
|
||||||
<!-- <div style="padding: 0px 5px;">-->
|
|
||||||
<!-- <el-button type="primary" @click="exportStudentOfTearcher()" icon="el-icon-search" size="small" round>-->
|
|
||||||
<!-- 导出学员信息-->
|
|
||||||
<!-- </el-button>-->
|
|
||||||
<!-- </div>-->
|
|
||||||
</div>
|
|
||||||
<div class="Export">
|
|
||||||
<!-- <div style="padding-left: 10px;"><el-button type="primary" @click="exportFile()" icon="el-icon-search" size="small" round>导出</el-button></div> -->
|
|
||||||
<!-- <div style="padding: 0px 5px;"><el-button icon="el-icon-refresh-right" type="primary" size="small" round>导出学员信息</el-button></div> -->
|
|
||||||
</div>
|
|
||||||
<div style="margin-top:20px;">
|
|
||||||
<el-table :data="pageData" border stripe>
|
|
||||||
<el-table-column
|
|
||||||
label="序号"
|
|
||||||
prop="index"
|
|
||||||
width="100px">
|
|
||||||
<template v-slot="scope">
|
|
||||||
<span>{{ scope.$index + 1 }}</span>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
label="讲师工号"
|
|
||||||
prop="userNo"
|
|
||||||
width="100px">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
label="讲师姓名"
|
|
||||||
prop="teacherName"
|
|
||||||
width="200px">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
label="课程名称"
|
|
||||||
prop="courseName"
|
|
||||||
width="200px">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
label="培训发生组织"
|
|
||||||
prop="trainOrgName"
|
|
||||||
width="200px">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column label="课程类型" prop="type" width="120px">
|
|
||||||
<template v-slot="scope">
|
|
||||||
<span>{{
|
|
||||||
{
|
|
||||||
"0": "在线课",
|
|
||||||
"1": "面授课",
|
|
||||||
"2": "课程开发",
|
|
||||||
"3": "作业员入模培训",
|
|
||||||
"4": "其他",
|
|
||||||
}[scope.row.type + '']
|
|
||||||
}}</span>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
label="授课/课程日期"
|
|
||||||
prop="teachingDate"
|
|
||||||
width="200px">
|
|
||||||
</el-table-column>
|
|
||||||
|
|
||||||
<el-table-column
|
|
||||||
label="内容分类"
|
|
||||||
prop="courseTypeName"
|
|
||||||
width="200px">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column label="开课状态" width="100px" prop="courseStatus">
|
|
||||||
<template v-slot="scope">
|
|
||||||
<span>{{
|
|
||||||
{
|
|
||||||
"0": "未开课",
|
|
||||||
"1": "已开课",
|
|
||||||
}[scope.row.courseStatus + '']
|
|
||||||
}}</span>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
label="授课时长(分钟)"
|
|
||||||
prop="teaching"
|
|
||||||
width="120px"
|
|
||||||
></el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
label="参训人数"
|
|
||||||
prop="studys"
|
|
||||||
width="120px"
|
|
||||||
></el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
label="评分"
|
|
||||||
prop="score"
|
|
||||||
width="100px"
|
|
||||||
></el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
label="是否生成讲师费"
|
|
||||||
prop="createdFee"
|
|
||||||
width="100px"
|
|
||||||
>
|
|
||||||
<template v-slot="scope">
|
|
||||||
<span>{{
|
|
||||||
{
|
|
||||||
"0": "否",
|
|
||||||
"1": "是",
|
|
||||||
}[scope.row.createdFee + '']
|
|
||||||
}}</span>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
label="备注"
|
|
||||||
width="200px"
|
|
||||||
prop="remark"
|
|
||||||
></el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
label="操作"
|
|
||||||
align="center"
|
|
||||||
width="150px"
|
|
||||||
prop="cz"
|
|
||||||
fixed="right"
|
|
||||||
>
|
|
||||||
<template v-slot="scope">
|
|
||||||
<el-button type="text" @click="exportStudentOfCourse(scope.row.courseId, scope.row.type)"
|
|
||||||
size="small">导出学员信息
|
|
||||||
</el-button>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
</el-table>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div style="text-align: center; margin-top:57px">
|
<div style="text-align: center; margin-top:57px">
|
||||||
<el-pagination
|
<el-pagination
|
||||||
background
|
background
|
||||||
@size-change="handleSizeChange"
|
@size-change="handleSizeChange"
|
||||||
@current-change="handleCurrentChange"
|
@current-change="handleCurrentChange"
|
||||||
:current-page="pageInfo.page"
|
:current-page="pageInfo.page"
|
||||||
@@ -149,127 +83,123 @@
|
|||||||
layout="total, sizes, prev, pager, next, jumper"
|
layout="total, sizes, prev, pager, next, jumper"
|
||||||
:total="pageInfo.total"
|
:total="pageInfo.total"
|
||||||
></el-pagination>
|
></el-pagination>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import apiCourse from '../../api/boe/courseRecord.js';
|
import apiCourse from '../../api/boe/courseRecord.js';
|
||||||
import {mapGetters} from 'vuex';
|
import { mapGetters } from 'vuex';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data(){
|
||||||
return {
|
return {
|
||||||
pageData: [],
|
pageData:[],
|
||||||
keyword: '',
|
keyword:'',
|
||||||
pageInfo: {
|
pageInfo:{},
|
||||||
pageIndex:1,
|
|
||||||
pageSize:10,
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
mounted() {
|
mounted() {
|
||||||
this.recordList();
|
this.recordList(1);
|
||||||
|
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
...mapGetters(['userInfo'])
|
...mapGetters(['userInfo'])
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
// 导出所有记录
|
|
||||||
exportFile() {
|
|
||||||
// let req = {
|
|
||||||
// }
|
|
||||||
// apiCourse.courseRecordExport2(req).then(res => {
|
|
||||||
// const link = document.createElement('a');// 创建a标签
|
|
||||||
// let blob = new Blob([res.data], {type: 'application/vnd.ms-excel'}); // 设置文件类型
|
|
||||||
// link.style.display = "none";
|
|
||||||
// link.href = URL.createObjectURL(blob); // 创建URL
|
|
||||||
// link.setAttribute("download", "授课记录.xls");
|
|
||||||
// document.body.appendChild(link);
|
|
||||||
// link.click();
|
|
||||||
// document.body.removeChild(link);
|
|
||||||
// })
|
|
||||||
// 取pageData记录第一条
|
|
||||||
if (this.pageData.length > 0) {
|
|
||||||
let teacherId = this.pageData[0].teacherId;
|
|
||||||
window.open(
|
|
||||||
`/manageApi/admin/export/exportInTeacherRecord?teacherId=${teacherId}`
|
|
||||||
);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
// 导出课程下的学员信息
|
// 导出所有记录
|
||||||
exportStudentOfCourse(courseId, courseType) {
|
exportFile(){
|
||||||
// apiCourse.exportStudentOfCourse2(courseId, courseType).then(res => {
|
let req = {
|
||||||
// const link = document.createElement('a');// 创建a标签
|
userId: this.userInfo.sysId
|
||||||
// let blob = new Blob([res.data], {type: 'application/vnd.ms-excel'}); // 设置文件类型
|
// userId:"70F80F4E-34BA-10AB-894A-8FA812B19637"
|
||||||
// link.style.display = "none";
|
|
||||||
// link.href = URL.createObjectURL(blob); // 创建URL
|
|
||||||
// link.setAttribute("download", "授课记录.xls");
|
|
||||||
// document.body.appendChild(link);
|
|
||||||
// link.click();
|
|
||||||
// document.body.removeChild(link);
|
|
||||||
// })
|
|
||||||
|
|
||||||
window.open(
|
|
||||||
`/manageApi/admin/export/exportTeacherRecordStudentInfo?courseId=${courseId}&courseType=${courseType}`
|
|
||||||
);
|
|
||||||
},
|
|
||||||
|
|
||||||
// 导出教师下的所有授课记录下的学员信息
|
|
||||||
exportStudentOfTearcher() {
|
|
||||||
let userId = this.userInfo.sysId;
|
|
||||||
apiCourse.exportStudentOfTearcher2(userId).then(res => {
|
|
||||||
const link = document.createElement('a');// 创建a标签
|
|
||||||
let blob = new Blob([res.data], {type: 'application/vnd.ms-excel'}); // 设置文件类型
|
|
||||||
link.style.display = "none";
|
|
||||||
link.href = URL.createObjectURL(blob); // 创建URL
|
|
||||||
link.setAttribute("download", "授课记录.xls");
|
|
||||||
document.body.appendChild(link);
|
|
||||||
link.click();
|
|
||||||
document.body.removeChild(link);
|
|
||||||
})
|
|
||||||
},
|
|
||||||
|
|
||||||
recordList() {
|
|
||||||
let req = {
|
|
||||||
courseName: this.keyword,
|
|
||||||
pageNo: this.pageInfo.pageIndex,
|
|
||||||
pageSize: this.pageInfo.pageSize
|
|
||||||
}
|
|
||||||
apiCourse.getListByToken(req).then(res => {
|
|
||||||
if (res.status == 200) {
|
|
||||||
this.pageData = res.data.records;
|
|
||||||
this.pageInfo.pageSize = Number(res.data.size);
|
|
||||||
this.pageInfo.total = Number(res.data.total);
|
|
||||||
this.pageInfo.page = Number(res.data.current);
|
|
||||||
} else {
|
|
||||||
this.$message({
|
|
||||||
type: 'error',
|
|
||||||
message: res.message
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
})
|
apiCourse.courseRecordExport(req).then(res=>{
|
||||||
},
|
const link = document.createElement('a');// 创建a标签
|
||||||
|
let blob = new Blob([res.data],{type: 'application/vnd.ms-excel'}); // 设置文件类型
|
||||||
|
link.style.display = "none";
|
||||||
|
link.href = URL.createObjectURL(blob); // 创建URL
|
||||||
|
link.setAttribute("download", "授课记录.xls");
|
||||||
|
document.body.appendChild(link);
|
||||||
|
link.click();
|
||||||
|
document.body.removeChild(link);
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
// 导出课程下的学员信息
|
||||||
|
exportStudentOfCourse(courseId){
|
||||||
|
let userId = this.userInfo.sysId;
|
||||||
|
apiCourse.exportStudentOfCourse(userId,courseId).then(res=>{
|
||||||
|
const link = document.createElement('a');// 创建a标签
|
||||||
|
let blob = new Blob([res.data],{type: 'application/vnd.ms-excel'}); // 设置文件类型
|
||||||
|
link.style.display = "none";
|
||||||
|
link.href = URL.createObjectURL(blob); // 创建URL
|
||||||
|
link.setAttribute("download", "授课记录.xls");
|
||||||
|
document.body.appendChild(link);
|
||||||
|
link.click();
|
||||||
|
document.body.removeChild(link);
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
// 导出教师下的所有授课记录下的学员信息
|
||||||
|
exportStudentOfTearcher(){
|
||||||
|
let userId = this.userInfo.sysId;
|
||||||
|
// let userId = '5D36C207-64F4-C512-312D-C9598257695C';
|
||||||
|
apiCourse.exportStudentOfTearcher(userId).then(res=>{
|
||||||
|
const link = document.createElement('a');// 创建a标签
|
||||||
|
let blob = new Blob([res.data],{type: 'application/vnd.ms-excel'}); // 设置文件类型
|
||||||
|
link.style.display = "none";
|
||||||
|
link.href = URL.createObjectURL(blob); // 创建URL
|
||||||
|
link.setAttribute("download", "授课记录.xls");
|
||||||
|
document.body.appendChild(link);
|
||||||
|
link.click();
|
||||||
|
document.body.removeChild(link);
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
recordList(pageIndex){
|
||||||
|
let req = {
|
||||||
|
// userId:"6B049FAF-C314-7CCF-0D28-0D23F4C42531",
|
||||||
|
userId: this.userInfo.sysId,
|
||||||
|
keyword:this.keyword,
|
||||||
|
page:pageIndex,
|
||||||
|
pageSize:10
|
||||||
|
}
|
||||||
|
apiCourse.courseRecordList(req).then(res=>{
|
||||||
|
if(res.status == 200) {
|
||||||
|
this.pageData = res.result.list;
|
||||||
|
this.pageInfo = res.result.pageInfo;
|
||||||
|
} else {
|
||||||
|
this.$message({
|
||||||
|
type: 'error',
|
||||||
|
message: res.message
|
||||||
|
});
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
// 每页显示的条数事件
|
||||||
|
handleSizeChange(val){
|
||||||
|
this.pageInfo.pageSize = val;
|
||||||
|
this.recordList(1);
|
||||||
|
},
|
||||||
|
// 显示制定页的数据
|
||||||
|
handleCurrentChange(val){
|
||||||
|
this.pageInfo.pageIndex = val;
|
||||||
|
this.recordList(this.pageInfo.pageIndex);
|
||||||
|
},
|
||||||
|
|
||||||
// 每页显示的条数事件
|
|
||||||
handleSizeChange(val) {
|
|
||||||
this.pageInfo.pageIndex = 1;
|
|
||||||
this.pageInfo.pageSize = val;
|
|
||||||
this.recordList();
|
|
||||||
},
|
|
||||||
// 显示制定页的数据
|
|
||||||
handleCurrentChange(val) {
|
|
||||||
this.pageInfo.pageIndex = val;
|
|
||||||
this.recordList(this.pageInfo.pageIndex);
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.Export {
|
.Export{
|
||||||
display: flex;
|
display: flex;
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
}
|
}
|
||||||
|
|||||||