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
34e9d13f
Commit
34e9d13f
authored
Jul 06, 2021
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改备课
parent
83e6af93
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
611 additions
and
370 deletions
+611
-370
class.js
src/api/course/class.js
+2
-2
lessonPreparation.vue
src/pages/course/lessonPreparation.vue
+23
-11
prepareclassDetails.vue
src/pages/course/prepareclassDetails.vue
+372
-249
teacherLesson.vue
src/pages/course/teacherLesson.vue
+214
-108
No files found.
src/api/course/class.js
View file @
34e9d13f
...
...
@@ -151,7 +151,7 @@ export function queryClassLogPageList(data) {
*/
export
function
GetTeacherPlan
(
data
)
{
return
request
({
url
:
"/Class/GetTeacherPlan"
,
url
:
"/Class/Get
New
TeacherPlan"
,
method
:
'post'
,
data
})
...
...
@@ -191,7 +191,7 @@ export function setLessonComment(data) {
*/
export
function
updateClassLessPlan
(
data
)
{
return
request
({
url
:
"/Class/
UpdateClassLessPlan
"
,
url
:
"/Class/
GetUpdateClassLessPlanSummary
"
,
method
:
'post'
,
data
})
...
...
src/pages/course/lessonPreparation.vue
View file @
34e9d13f
...
...
@@ -165,13 +165,24 @@
}
.prePare_Content
{
width
:
430px
;
/* width: 430px; */
min-height
:
100px
;
height
:
auto
;
background-color
:
#F0F5FB
;
padding
:
20px
;
margin
:
20px
auto
;
}
.prePare_Content
h6
,
.prePare_Content
h5
,
.prePare_Content
h4
,
.prePare_Content
h3
,
.prePare_Content
h2
,
.prePare_Content
h1
{
font-size
:
unset
!important
;
line-height
:
unset
!important
;
letter-spacing
:
unset
!important
;
}
</
style
>
<
template
>
<div
class=
"row"
>
...
...
@@ -213,7 +224,7 @@
教案名称:
<el-input
v-model=
"addMsg.LessonPlan"
placeholder=
"教案名称"
class=
"w260"
></el-input>
<span
style=
"margin-left:30px;"
>
第
<el-input
v-model=
"addMsg.CourseNum"
style=
"margin:0 5px;"
placeholder=
"第几课"
@
keyup
.
native=
"checkInteger(addMsg,'CourseNum')"
class=
"w60"
></el-input>
课
</span>
<span
style=
"float:right;display:inline-block;"
>
<span
style=
"float:right;display:inline-block;
margin-left:20px;
"
>
<q-btn
color=
"accent"
size=
"sm"
class=
"q-mr-md"
icon=
"add"
label=
"选择模板"
@
click=
"getModule()"
/>
</span>
</div>
...
...
@@ -228,21 +239,21 @@
</div>
</div>
<div
class=
"teach_Content"
>
指導内容
教学目标
</div>
<div
style=
""
v-for=
"(item,index) in addMsg.LessonPlanList"
>
<q-input
filled
stack-label
maxlength=
"50"
v-model=
"item.CourseTitle"
:dense=
"false"
class=
"col-12 q-pb-lg"
:label=
"item.CourseName+'項目'
"
/>
<div
style=
""
v-for=
"(item,index) in addMsg.LessonPlanList"
v-if=
"index==0"
>
<q-input
filled
stack-label
maxlength=
"50"
v-model=
"item.CourseTitle"
:dense=
"false"
class=
"col-12 q-pb-lg"
label=
"教学目标
"
/>
</div>
<div
class=
"teach_Content"
>
指導項目
教学难点
</div>
<div
style=
""
v-for=
"(item,index) in addMsg.LessonPlanList"
>
<
div
style=
"margin-top: 10px"
>
{{
item
.
CourseName
}}
</div
>
<div
style=
""
v-for=
"(item,index) in addMsg.LessonPlanList"
v-if=
"index==0"
>
<
!--
<div
style=
"margin-top: 10px"
>
{{
item
.
CourseName
}}
</div>
--
>
<UeEditor
class=
"col-8"
v-model=
"item.LessonPlanProjectsList[0].ProjectContent"
:config=
"config"
></UeEditor>
</div>
<div
style=
""
v-for=
"(item,index) in addMsg.LessonPlanList"
>
<div
style=
""
v-for=
"(item,index) in addMsg.LessonPlanList"
v-if=
"index==0"
>
<div
class=
"teach_Content"
>
{{
item
.
CourseName
}}
上课内容
教学流程
</div>
<div
class=
"row q-gutter-xs cont"
v-for=
"(subItem,subIndex) in item.LessonPlanDetailsList"
style=
"margin-top:20px;align-items: self-end;width:100%;"
>
...
...
@@ -320,6 +331,7 @@ export default {
this
.
msg
.
ClassId
=
this
.
$route
.
query
.
ClassId
;
this
.
msg
.
School_Id
=
this
.
$route
.
query
.
School_Id
;
this
.
msg
.
ClassPlanId
=
this
.
$route
.
query
.
ClassPlanId
;
this
.
addMsg
.
CourseNum
=
this
.
$route
.
query
.
Ranks
;
}
this
.
getList
();
...
...
@@ -341,7 +353,7 @@ export default {
if
(
data
.
Chapter
)
{
this
.
chapter
=
data
.
Chapter
}
this
.
addMsg
.
CourseNum
=
data
.
CourseNum
;
//
this.addMsg.CourseNum = data.CourseNum;
this
.
addMsg
.
ClassId
=
data
.
ClassId
;
this
.
addMsg
.
School_Id
=
data
.
School_Id
;
this
.
addMsg
.
ClassPlanId
=
data
.
ClassPlanId
;
...
...
src/pages/course/prepareclassDetails.vue
View file @
34e9d13f
This diff is collapsed.
Click to expand it.
src/pages/course/teacherLesson.vue
View file @
34e9d13f
This diff is collapsed.
Click to expand it.
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