From 23914dd777ed366e4723f65c4d870e6b1734711a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E8=B0=A2=E6=80=9D?= <2897217417@qq.com>
Date: Wed, 29 Jun 2022 14:23:43 +0800
Subject: [PATCH 1/2] =?UTF-8?q?glcc=E5=9C=B0=E5=9D=80=E6=A0=8F=E4=BC=98?=
=?UTF-8?q?=E5=8C=96?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/glcc/checkResult/index.jsx | 2 +-
src/glcc/openmmlab/projectTab/projectDetail.jsx | 4 ++--
src/glcc/project/component/projectDetail.jsx | 4 ++--
src/glcc/project/taskDetail/index.jsx | 3 +--
src/glcc/project/taskList/index.jsx | 2 +-
5 files changed, 7 insertions(+), 8 deletions(-)
diff --git a/src/glcc/checkResult/index.jsx b/src/glcc/checkResult/index.jsx
index 8ca925da..78ac165d 100644
--- a/src/glcc/checkResult/index.jsx
+++ b/src/glcc/checkResult/index.jsx
@@ -60,7 +60,7 @@ function CheckResult({current_user, history}) {
{ title: '学生专业', dataIndex: 'profession', className:"columnsResult taskName", width: '12%', ellipsis: true, render: (text) => {text}},
{ title: '学生年级', dataIndex: 'grade', className:"columnsResult taskName", width: '10%', ellipsis: true},
{ title: '课题导师', dataIndex: 'tutorName', className:"columnsResult", width: '10%', ellipsis: true},
- { title: '课题名称', dataIndex: 'taskName', className:"columnsResult", width: '20%', ellipsis: true, render: (text, item) => {window.open(`/glcc/subjects/detail/${item.id}?locked=${item.locked}`)}}>{text} },
+ { title: '课题名称', dataIndex: 'taskName', className:"columnsResult", width: '20%', ellipsis: true, render: (text, item) => {window.open(`/glcc/subjects/detail/${item.id}`)}}>{text} },
{ title: '项目名称', dataIndex: 'projectName', className:"columnsResult", ellipsis: true, width: '14%', render: (text) => {text} },
{ title: '操作', dataIndex: 'action', align: 'center', className:"columnsResult actionBox"},
]
diff --git a/src/glcc/openmmlab/projectTab/projectDetail.jsx b/src/glcc/openmmlab/projectTab/projectDetail.jsx
index bea1eefb..7178c81d 100644
--- a/src/glcc/openmmlab/projectTab/projectDetail.jsx
+++ b/src/glcc/openmmlab/projectTab/projectDetail.jsx
@@ -26,7 +26,7 @@ export default ({ detail, projectId, applyTaskId, isStudentApplyDate, secondStud
{info.registrationTaskList && info.registrationTaskList.length > 0 ? info.registrationTaskList.map((item, index)=>{
return
-
{window.location.href=`/glcc/subjects/detail/${item.id}?locked=${item.locked}`}}>{item.taskName}
+
{window.location.href=`/glcc/subjects/detail/${item.id}`}}>{item.taskName}
导师姓名: {item.tutorName}
{item.tutorMail &&
邮箱地址: {item.tutorMail}
}
@@ -44,7 +44,7 @@ export default ({ detail, projectId, applyTaskId, isStudentApplyDate, secondStud
{secondStudentApplyDate && !(applyTaskId && Object.keys(applyTaskId).includes(item.id.toString())) && (item.locked ?
:
)}
{/* 查看课题详情按钮 */}
-
+
¥{item.taskReward}
diff --git a/src/glcc/project/component/projectDetail.jsx b/src/glcc/project/component/projectDetail.jsx
index 9ecf11b5..0963c127 100644
--- a/src/glcc/project/component/projectDetail.jsx
+++ b/src/glcc/project/component/projectDetail.jsx
@@ -30,7 +30,7 @@ export default ({ detail, projectId, applyTaskId, isStudentApplyDate, secondStud
{showTask && (info.registrationTaskList && info.registrationTaskList.length > 0 ? info.registrationTaskList.map((item, index)=>{
return
-
{window.location.href=`/glcc/subjects/detail/${item.id}?locked=${item.locked}`}}>{item.taskName}
+
{window.location.href=`/glcc/subjects/detail/${item.id}`}}>{item.taskName}
导师姓名: {item.tutorName}
{item.tutorMail &&
邮箱地址: {item.tutorMail}
}
@@ -48,7 +48,7 @@ export default ({ detail, projectId, applyTaskId, isStudentApplyDate, secondStud
{secondStudentApplyDate && !(applyTaskId && Object.keys(applyTaskId).includes(item.id.toString())) && (item.locked ?
:
)}
{/* 查看课题详情按钮 */}
-
+
¥{item.taskReward}
diff --git a/src/glcc/project/taskDetail/index.jsx b/src/glcc/project/taskDetail/index.jsx
index 9f86363a..1dac4ff5 100644
--- a/src/glcc/project/taskDetail/index.jsx
+++ b/src/glcc/project/taskDetail/index.jsx
@@ -9,7 +9,6 @@ import './index.scss';
function TaskDetail(props) {
const {match, location, isStudentApplyDate, secondStudentApplyDate, applyTaskId, applyTask} = props
const taskId = Number(match.params.taskId);
- const locked = location.search && location.search.split('=')[1] === 'true';
const [detail, setDetail] = useState(undefined);
useEffect(()=>{
@@ -55,7 +54,7 @@ function TaskDetail(props) {
{/* 第一次报名 */}
{isStudentApplyDate && !(applyTaskId && Object.keys(applyTaskId).includes(taskId.toString())) && }
{/* 第二次报名 锁定状态 */}
- {secondStudentApplyDate && !(applyTaskId && Object.keys(applyTaskId).includes(taskId.toString())) && (locked ? : )}
+ {secondStudentApplyDate && !(applyTaskId && Object.keys(applyTaskId).includes(taskId.toString())) && (detail.locked ? : )}
diff --git a/src/glcc/project/taskList/index.jsx b/src/glcc/project/taskList/index.jsx
index c9ed0092..c38161de 100644
--- a/src/glcc/project/taskList/index.jsx
+++ b/src/glcc/project/taskList/index.jsx
@@ -24,7 +24,7 @@ function TaskList({applyTaskId, setStudentInfoReset, current_user, showLoginDial
const columns = [
{ title: '序号', dataIndex: 'index', align: 'center', className:"taskTableColumns", width: '6%', render: (text, item, index) => {(current-1)*pageSize+index + 1} },
- { title: '课题名称', dataIndex: 'taskName', className:"taskTableColumns taskName", width: '24%', ellipsis: true, render: (text, item) => {window.open(`/glcc/subjects/detail/${item.id}?locked=${item.locked}`)}}>{text} },
+ { title: '课题名称', dataIndex: 'taskName', className:"taskTableColumns taskName", width: '24%', ellipsis: true, render: (text, item) => {window.open(`/glcc/subjects/detail/${item.id}`)}}>{text} },
{ title: '课题类型', dataIndex: 'projectType', className:"taskTableColumns", width: '12%', ellipsis: true, },
{ title: '项目名称', dataIndex: 'projectName', className:"taskTableColumns", width: '24%', ellipsis: true, render: (text) => {text} },
{ title: '课题奖金', dataIndex: 'taskReward', className:"taskTableColumns", ellipsis: true, width: '10%', render: (text) => {text} },
From c05f9ff8580b86ef93ab45408db739cc72645596 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E8=B0=A2=E6=80=9D?= <2897217417@qq.com>
Date: Thu, 30 Jun 2022 10:55:33 +0800
Subject: [PATCH 2/2] =?UTF-8?q?glcc=E7=BB=93=E6=9E=9C=E5=85=AC=E7=A4=BA?=
=?UTF-8?q?=E6=97=B6=E9=97=B4=E8=B0=83=E6=95=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/glcc/checkResult/index.jsx | 4 ++--
src/glcc/home/index.jsx | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/glcc/checkResult/index.jsx b/src/glcc/checkResult/index.jsx
index 78ac165d..df66cff3 100644
--- a/src/glcc/checkResult/index.jsx
+++ b/src/glcc/checkResult/index.jsx
@@ -31,7 +31,7 @@ function CheckResult({current_user, history}) {
}
hasAuditRole({ userId: current_user.user_id }).then(res => {
// 7.1之前 普通用户不可以进入此页面
- if (!(res && res.message == 'success' && res.data.hasRole) && new Date().getTime() < new Date('2022-07-01 1:0').getTime()) {
+ if (!(res && res.message == 'success' && res.data.hasRole) && new Date().getTime() < new Date('2022-07-01 12:0').getTime()) {
history.push('/glcc');
}
})
@@ -108,7 +108,7 @@ function CheckResult({current_user, history}) {
return (
{time &&

}
- {new Date().getTime() > new Date('2022-07-01 1:0').getTime() &&

}
+ {new Date().getTime() > new Date('2022-07-01 12:0').getTime() &&

}
diff --git a/src/glcc/home/index.jsx b/src/glcc/home/index.jsx
index a66a1a5d..a13b7d7e 100644
--- a/src/glcc/home/index.jsx
+++ b/src/glcc/home/index.jsx
@@ -33,7 +33,7 @@ export default (props) => {
const [hasRole, setHhasRole] = useState(false);
const resultTime1 = new Date().getTime() > new Date('2022-06-28 1:0').getTime() && new Date().getTime() < new Date('2022-07-01 0:0').getTime();
- const resultTime2 = new Date().getTime() > new Date('2022-07-01 1:0').getTime();
+ const resultTime2 = new Date().getTime() > new Date('2022-07-01 12:0').getTime();
useEffect(() => {
if (!current_user.user_id) {
@@ -98,7 +98,7 @@ export default (props) => {
{resultTime2 &&

-
名单{resultTime1 && '预'}公示
+
名单{resultTime1 ? '预' : ''}公示
查看各课题入选学生名单
}