Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
罗超
confucius
Commits
9eb25914
Commit
9eb25914
authored
Jan 21, 2021
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
cba89816
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
381 additions
and
10 deletions
+381
-10
class.js
src/api/course/class.js
+42
-3
fasong.png
src/assets/images/course/fasong.png
+0
-0
prepareclassDetails.vue
src/pages/course/prepareclassDetails.vue
+331
-5
teacherLesson.vue
src/pages/course/teacherLesson.vue
+8
-2
No files found.
src/api/course/class.js
View file @
9eb25914
...
...
@@ -156,7 +156,46 @@ export function GetTeacherPlan(data) {
data
})
}
/**
* 获取教案
*/
export
function
getClassLessPlan
(
data
)
{
return
request
({
url
:
"/Class/GetClassLessPlan"
,
method
:
'post'
,
data
})
}
/**
* 获取教案 评论列表
*/
export
function
getLessonCommentList
(
data
)
{
return
request
({
url
:
"/Class/GetLessonCommentList"
,
method
:
'post'
,
data
})
}
/**
* 获取教案 评论列表
*/
export
function
setLessonComment
(
data
)
{
return
request
({
url
:
"/Class/SetLessonComment"
,
method
:
'post'
,
data
})
}
/**
* 获取教案详情的 提交
*/
export
function
updateClassLessPlan
(
data
)
{
return
request
({
url
:
"/Class/UpdateClassLessPlan"
,
method
:
'post'
,
data
})
}
/**
* 教师课时奖励 分页列表
*/
...
...
@@ -262,7 +301,7 @@ export function setTeachingPerfFinance(data) {
/**
* 修改班级状态
* @param {JSON数据} data
* @param {JSON数据} data
*/
export
function
saveClassStatus
(
data
)
{
return
request
({
...
...
@@ -270,4 +309,4 @@ export function saveClassStatus(data) {
method
:
'post'
,
data
})
}
\ No newline at end of file
}
src/assets/images/course/fasong.png
0 → 100644
View file @
9eb25914
3.53 KB
src/pages/course/prepareclassDetails.vue
View file @
9eb25914
This diff is collapsed.
Click to expand it.
src/pages/course/teacherLesson.vue
View file @
9eb25914
...
...
@@ -224,7 +224,7 @@
<div
style=
"margin-top:30px;"
>
<div
class=
"TeacherInfo_List"
v-for=
"(item,index) in newDataList"
>
<div
class=
"timeleft"
>
<div>
<div
style=
"width: 45px;"
>
{{
item
.
StartTime
}}
</div>
</div>
...
...
@@ -240,7 +240,7 @@
{{
item
.
GuestStr
}}
</div>
<div
style=
"margin:20px 0 30px 0;"
>
<span
class=
"beikeBtn"
v-if=
"item.LessonPlanNum>0"
style=
"background:#3FC4FF;"
>
已备课
</span>
<span
class=
"beikeBtn"
v-if=
"item.LessonPlanNum>0"
style=
"background:#3FC4FF;"
@
click=
"goyibeike(item)"
>
已备课
</span>
<span
class=
"beikeBtn"
v-else
@
click=
"goBeike(item)"
>
备课
</span>
</div>
</div>
...
...
@@ -387,6 +387,12 @@
this
.
$router
.
push
({
path
:
tempStr
});
},
goyibeike
(
item
){
var
tempStr
=
'/course/prepareclassDetails?ClassId='
+
item
.
ClassId
+
'&ClassPlanId='
+
item
.
ClassPlanId
;
this
.
$router
.
push
({
path
:
tempStr
});
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment