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
7436b498
Commit
7436b498
authored
Dec 17, 2020
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
f5e12f1d
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
303 additions
and
12 deletions
+303
-12
class.js
src/api/course/class.js
+10
-0
addreamke.png
src/assets/images/course/addreamke.png
+0
-0
chehui.png
src/assets/images/course/chehui.png
+0
-0
xiaoxi.png
src/assets/images/course/xiaoxi.png
+0
-0
zhidan.png
src/assets/images/course/zhidan.png
+0
-0
achievements.vue
src/pages/course/achievements.vue
+275
-0
classHourReward.vue
src/pages/course/classHourReward.vue
+12
-11
myOrder.vue
src/pages/sale/myOrder.vue
+1
-1
routes.js
src/router/routes.js
+5
-0
No files found.
src/api/course/class.js
View file @
7436b498
...
...
@@ -208,3 +208,13 @@ export function getTeachingBonusDetailList(data) {
data
});
}
/**
* 教师绩效分页列表
*/
export
function
getTeachingPerfPageList
(
data
)
{
return
request
({
url
:
'/TeachingRewards/GetTeachingPerfPageList'
,
method
:
'post'
,
data
});
}
src/assets/images/course/addreamke.png
0 → 100644
View file @
7436b498
331 Bytes
src/assets/images/course/chehui.png
0 → 100644
View file @
7436b498
218 Bytes
src/assets/images/course/xiaoxi.png
0 → 100644
View file @
7436b498
302 Bytes
src/assets/images/course/zhidan.png
0 → 100644
View file @
7436b498
125 Bytes
src/pages/course/achievements.vue
0 → 100644
View file @
7436b498
This diff is collapsed.
Click to expand it.
src/pages/course/classHourReward.vue
View file @
7436b498
...
...
@@ -131,6 +131,7 @@
<el-drawer
title=
""
:visible
.
sync=
"drawer"
:wrapperClosable=
"false"
:with-header=
"false"
>
<div
style=
"padding: 15px"
class=
"class-popover"
>
<div
style=
"margin: 10px 0;font-size: 14px;font-weight: bold;color:#2D2D2D;"
>
新增课时奖励
</div>
...
...
@@ -157,7 +158,7 @@
<div
class=
"row col"
style=
"margin-top: 30px"
>
<q-btn
class=
"q-mr-md"
label=
"取消"
@
click=
"drawer=false"
/>
<q-btn
color=
"accent"
class=
"q-mr-md"
label=
"保存"
@
click=
"saveOrderInfo()"
/>
<q-btn
color=
"accent"
class=
"q-mr-md"
label=
"保存"
@
click=
"saveOrderInfo()"
:loading=
"Dloading"
/>
</div>
</div>
</el-drawer>
...
...
@@ -182,6 +183,7 @@
loading
:
false
,
ISsystem
:
false
,
Floading
:
false
,
Dloading
:
false
,
drawer
:
false
,
data
:[],
pageCount
:
0
,
...
...
@@ -371,8 +373,9 @@
})
return
}
this
.
Dloading
=
true
setTeachingBonusAdd
(
this
.
addMsg
).
then
(
res
=>
{
this
.
Dloading
=
false
if
(
res
.
Code
==
1
)
{
this
.
$q
.
notify
({
icon
:
'iconfont icon-chenggong'
,
...
...
@@ -482,11 +485,9 @@
</
script
>
<
style
scoped
>
.classHourReward
.el-range-editor
.el-range-input
{
background
:
none
;
}
.classHourReward
.el-range-editor.el-input__inner
{
background-color
:
transparent
;
.classHourReward
.Sysuser_Date
.el-input--prefix
.el-input__inner
{
background-color
:
red
;
border
:
0
;
}
.classHourReward
.state-item
{
padding
:
3px
0px
;
border-radius
:
3px
;
width
:
70px
;
...
...
@@ -510,11 +511,11 @@
.classHourReward
.el-date-editor.el-input
{
width
:
100%
;
}
.classHourReward
.el-input__inner
{
background-color
:
red
!important
;
}
.class-popover
.el-input__inner
{
.classHourReward
.el-date-editor.el-input
input
{
background-color
:
transparent
!important
;
}
.classHourReward
.el-range-editor
.el-range-input
{
background
:
none
;
}
</
style
>
src/pages/sale/myOrder.vue
View file @
7436b498
...
...
@@ -314,7 +314,7 @@
.myOrder
ul
{
padding
:
0px
}
.myOrder
.price-popup
{
border-radius
:
4px
;}
.myOrder
.el-range-editor
.el-range-input
{
background
:
none
;
background
:
transparent
;
}
.myOrder
.el-range-editor.el-input__inner
{
background-color
:
transparent
;
...
...
src/router/routes.js
View file @
7436b498
...
...
@@ -371,6 +371,11 @@ const routes = [{
component
:
()
=>
import
(
"pages/course/rewardDetailed.vue"
)
},
{
path
:
"/course/achievements"
,
//教学奖励 绩效列表
component
:
()
=>
import
(
"pages/course/achievements.vue"
)
},
{
path
:
"/test"
,
//API测试
component
:
()
=>
...
...
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