Commit 7436b498 authored by Mac's avatar Mac

1

parent f5e12f1d
...@@ -208,3 +208,13 @@ export function getTeachingBonusDetailList(data) { ...@@ -208,3 +208,13 @@ export function getTeachingBonusDetailList(data) {
data data
}); });
} }
/**
* 教师绩效分页列表
*/
export function getTeachingPerfPageList(data) {
return request({
url: '/TeachingRewards/GetTeachingPerfPageList',
method: 'post',
data
});
}
This diff is collapsed.
...@@ -131,6 +131,7 @@ ...@@ -131,6 +131,7 @@
<el-drawer <el-drawer
title="" title=""
:visible.sync="drawer" :visible.sync="drawer"
:wrapperClosable="false"
:with-header="false"> :with-header="false">
<div style="padding: 15px" class="class-popover"> <div style="padding: 15px" class="class-popover">
<div style="margin: 10px 0;font-size: 14px;font-weight: bold;color:#2D2D2D;">新增课时奖励</div> <div style="margin: 10px 0;font-size: 14px;font-weight: bold;color:#2D2D2D;">新增课时奖励</div>
...@@ -157,7 +158,7 @@ ...@@ -157,7 +158,7 @@
<div class="row col" style="margin-top: 30px"> <div class="row col" style="margin-top: 30px">
<q-btn class="q-mr-md" label="取消" @click="drawer=false" /> <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>
</div> </div>
</el-drawer> </el-drawer>
...@@ -182,6 +183,7 @@ ...@@ -182,6 +183,7 @@
loading:false, loading:false,
ISsystem:false, ISsystem:false,
Floading:false, Floading:false,
Dloading:false,
drawer:false, drawer:false,
data:[], data:[],
pageCount:0, pageCount:0,
...@@ -371,8 +373,9 @@ ...@@ -371,8 +373,9 @@
}) })
return return
} }
this.Dloading=true
setTeachingBonusAdd(this.addMsg).then(res => { setTeachingBonusAdd(this.addMsg).then(res => {
this.Dloading=false
if (res.Code == 1) { if (res.Code == 1) {
this.$q.notify({ this.$q.notify({
icon: 'iconfont icon-chenggong', icon: 'iconfont icon-chenggong',
...@@ -482,11 +485,9 @@ ...@@ -482,11 +485,9 @@
</script> </script>
<style scoped> <style scoped>
.classHourReward .el-range-editor .el-range-input { .classHourReward .Sysuser_Date .el-input--prefix .el-input__inner {
background: none; background-color: red;
} border: 0;
.classHourReward .el-range-editor.el-input__inner {
background-color: transparent;
} }
.classHourReward .state-item{ .classHourReward .state-item{
padding: 3px 0px;border-radius: 3px;width: 70px; padding: 3px 0px;border-radius: 3px;width: 70px;
...@@ -510,11 +511,11 @@ ...@@ -510,11 +511,11 @@
.classHourReward .el-date-editor.el-input{ .classHourReward .el-date-editor.el-input{
width: 100%; width: 100%;
} }
.classHourReward .el-input__inner { .classHourReward .el-date-editor.el-input input{
background-color: red!important;
}
.class-popover .el-input__inner {
background-color: transparent!important; background-color: transparent!important;
} }
.classHourReward .el-range-editor .el-range-input {
background: none;
}
</style> </style>
...@@ -314,7 +314,7 @@ ...@@ -314,7 +314,7 @@
.myOrder ul{padding: 0px} .myOrder ul{padding: 0px}
.myOrder .price-popup{border-radius: 4px;} .myOrder .price-popup{border-radius: 4px;}
.myOrder .el-range-editor .el-range-input { .myOrder .el-range-editor .el-range-input {
background: none; background: transparent;
} }
.myOrder .el-range-editor.el-input__inner { .myOrder .el-range-editor.el-input__inner {
background-color: transparent; background-color: transparent;
......
...@@ -371,6 +371,11 @@ const routes = [{ ...@@ -371,6 +371,11 @@ const routes = [{
component: () => component: () =>
import("pages/course/rewardDetailed.vue") import("pages/course/rewardDetailed.vue")
}, },
{
path: "/course/achievements", //教学奖励 绩效列表
component: () =>
import("pages/course/achievements.vue")
},
{ {
path: "/test", //API测试 path: "/test", //API测试
component: () => component: () =>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment