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
655172cb
Commit
655172cb
authored
Jun 18, 2021
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
2e8aa449
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
614 additions
and
449 deletions
+614
-449
classmate-form.vue
src/components/course/classmate-form.vue
+507
-0
schedul-orderlist.vue
src/components/schedul/schedul-orderlist.vue
+2
-2
Work.vue
src/pages/Work.vue
+14
-3
classPlan.vue
src/pages/course/classPlan.vue
+48
-444
myClassmate.vue
src/pages/scheduling/myClassmate.vue
+43
-0
No files found.
src/components/course/classmate-form.vue
0 → 100644
View file @
655172cb
This diff is collapsed.
Click to expand it.
src/components/schedul/schedul-orderlist.vue
View file @
655172cb
...
@@ -283,8 +283,8 @@
...
@@ -283,8 +283,8 @@
</div>
</div>
</div>
</div>
<div
class=
"WorkObj_ImgList"
>
<div
class=
"WorkObj_ImgList"
>
<el-scrollbar>
<el-scrollbar
v-if=
"WorkObj.FileList&&WorkObj.FileList.length>0"
>
<
template
v-if=
"WorkObj.FileList&&WorkObj.FileList.length>0"
>
<
template
>
<div
class=
"SchImg_List"
style=
"width:50px;height:50px;border:0;"
<div
class=
"SchImg_List"
style=
"width:50px;height:50px;border:0;"
v-for=
"(item,index) in WorkObj.FileList"
>
v-for=
"(item,index) in WorkObj.FileList"
>
<el-image
:src=
"item"
style=
"width:100%;height:100%;"
:preview-src-list=
"WorkObj.FileList"
>
<el-image
:src=
"item"
style=
"width:100%;height:100%;"
:preview-src-list=
"WorkObj.FileList"
>
...
...
src/pages/Work.vue
View file @
655172cb
...
@@ -35,19 +35,25 @@
...
@@ -35,19 +35,25 @@
<q-btn
@
click=
"changeMenu(2)"
v-if=
"AccountType==2 || ispower==true"
flat
:color=
"chosenMenu==2?'primary':'blue-grey-14'"
:class=
"[chosenMenu==2?'text-weight-bold':'']"
label=
"备课管理"
>
<q-btn
@
click=
"changeMenu(2)"
v-if=
"AccountType==2 || ispower==true"
flat
:color=
"chosenMenu==2?'primary':'blue-grey-14'"
:class=
"[chosenMenu==2?'text-weight-bold':'']"
label=
"备课管理"
>
</q-btn>
</q-btn>
<q-btn
flat
@
click=
"changeMenu(3)"
:color=
"chosenMenu==3?'primary':'blue-grey-14'"
:class=
"[chosenMenu==3?'text-weight-bold':'']"
label=
"我的排班计划"
></q-btn>
<q-btn
flat
@
click=
"changeMenu(3)"
:color=
"chosenMenu==3?'primary':'blue-grey-14'"
:class=
"[chosenMenu==3?'text-weight-bold':'']"
label=
"我的排班计划"
></q-btn>
<q-btn
flat
@
click=
"changeMenu(4)"
v-if=
"AccountType==2"
:color=
"chosenMenu==4?'primary':'blue-grey-14'"
:class=
"[chosenMenu==4?'text-weight-bold':'']"
label=
"我的上课计划"
></q-btn>
</div>
</div>
<div
v-if=
"chosenMenu==1"
class=
"flex col"
style=
"flex: 1"
>
<div
v-if=
"chosenMenu==1"
class=
"flex col"
style=
"flex: 1"
>
<okr
v-if=
"okrMenu==1"
></okr>
<okr
v-if=
"okrMenu==1"
></okr>
<align-view
v-if=
"okrMenu==2"
></align-view>
<align-view
v-if=
"okrMenu==2"
></align-view>
</div>
</div>
<div
v-if=
"chosenMenu==2"
class=
"col
"
style=
"height: 750px;
overflow: auto"
>
<div
v-if=
"chosenMenu==2"
class=
"col
comWorkDiv"
style=
"
overflow: auto"
>
<teachplan></teachplan>
<teachplan></teachplan>
</div>
</div>
<!-- 备课管理 -->
<!-- 备课管理 -->
<div
v-if=
"chosenMenu==3"
style=
"height: 750px;
overflow: auto"
>
<div
v-if=
"chosenMenu==3"
class=
"comWorkDiv"
style=
"
overflow: auto"
>
<mySchedule></mySchedule>
<mySchedule></mySchedule>
</div>
</div>
<!-- 我的上课计划 -->
<div
v-if=
"chosenMenu==4"
class=
"comWorkDiv"
style=
"overflow: auto"
>
<myClassmate></myClassmate>
</div>
<!-- zk新增公告弹窗 -->
<!-- zk新增公告弹窗 -->
<notice-form
v-if=
"isShowNotice"
@
fathergoBefore=
"fathergoBefore"
@
fathergoAfter=
"fathergoAfter"
:seting-obj=
"noticeObj"
@
close=
"closeNoticeForm"
>
<notice-form
v-if=
"isShowNotice"
@
fathergoBefore=
"fathergoBefore"
@
fathergoAfter=
"fathergoAfter"
:seting-obj=
"noticeObj"
@
close=
"closeNoticeForm"
>
</notice-form>
</notice-form>
...
@@ -66,6 +72,7 @@
...
@@ -66,6 +72,7 @@
import
alignView
from
'./okr/okr-align-view'
import
alignView
from
'./okr/okr-align-view'
import
noticeForm
from
'../components/course/notice-form'
import
noticeForm
from
'../components/course/notice-form'
import
mySchedule
from
'./scheduling/mySchedule'
import
mySchedule
from
'./scheduling/mySchedule'
import
myClassmate
from
'./scheduling/myClassmate'
;
export
default
{
export
default
{
components
:{
components
:{
...
@@ -73,7 +80,8 @@
...
@@ -73,7 +80,8 @@
okr
,
okr
,
alignView
,
alignView
,
noticeForm
,
noticeForm
,
mySchedule
mySchedule
,
myClassmate
},
},
name
:
'PageIndex'
,
name
:
'PageIndex'
,
data
(){
data
(){
...
@@ -216,4 +224,7 @@
...
@@ -216,4 +224,7 @@
margin
:
0
;
margin
:
0
;
padding
:
10px
20px
;
padding
:
10px
20px
;
}
}
.comWorkDiv
{
height
:
100vh
}
</
style
>
</
style
>
src/pages/course/classPlan.vue
View file @
655172cb
This diff is collapsed.
Click to expand it.
src/pages/scheduling/myClassmate.vue
0 → 100644
View file @
655172cb
<
style
>
.myClassMate
.planTabDiv
{
height
:
calc
(
100vh
-
290px
);
max-height
:
calc
(
100vh
-
290px
);
}
</
style
>
<
template
>
<div
class=
"page-body MainPlan myClassMate"
>
<classmateForm
ref=
"classmate"
></classmateForm>
</div>
</
template
>
<
script
>
import
classmateForm
from
'../../components/course/classmate-form'
;
export
default
{
meta
:
{
title
:
"我的上课计划"
},
components
:
{
classmateForm
},
data
()
{
return
{
}
},
created
()
{
},
mounted
()
{
let
userinfo
=
this
.
getLocalStorage
();
let
AccountId
=
userinfo
.
AccountId
;
this
.
$refs
.
classmate
.
getPlanList
(
null
,
null
,
AccountId
,
0
);
},
methods
:
{
},
}
</
script
>
<
style
lang=
"sass"
>
@import
url('~assets/css/table.sass')
</
style
>
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