|
@@ -137,12 +137,11 @@
|
|
|
<template
|
|
|
slot-scope="scope"
|
|
|
v-if="
|
|
|
- scope.row.courseScheduleType != 'VIP' && !scope.row.settlementTime
|
|
|
+ !scope.row.settlementTime
|
|
|
"
|
|
|
>
|
|
|
<auth
|
|
|
auths="courseSchedule/updateTeacherCoursesSalary/settlement"
|
|
|
- v-if="scope.row.courseScheduleType != 'DEMO'"
|
|
|
>
|
|
|
<el-button @click="onUpdate(scope.row)" type="text"
|
|
|
>课酬补贴</el-button
|
|
@@ -199,12 +198,21 @@
|
|
|
prop="subsidy"
|
|
|
:label-width="formLabelWidth"
|
|
|
>
|
|
|
- <el-input
|
|
|
+ <!-- <el-input
|
|
|
v-model.trim="form.subsidy"
|
|
|
type="number"
|
|
|
@mousewheel.native.prevent
|
|
|
autocomplete="off"
|
|
|
- ></el-input>
|
|
|
+ ></el-input> -->
|
|
|
+ <el-input-number
|
|
|
+ class="number-input"
|
|
|
+ @mousewheel.native.prevent
|
|
|
+ autocomplete="off"
|
|
|
+ :controls="false"
|
|
|
+ :min="0"
|
|
|
+ style="width: 180px;"
|
|
|
+ v-model.number="form.subsidy"
|
|
|
+ ></el-input-number>
|
|
|
</el-form-item>
|
|
|
<!-- <el-form-item label="课时补贴调整为"
|
|
|
prop="subsidy"
|
|
@@ -388,5 +396,10 @@ export default {
|
|
|
},
|
|
|
};
|
|
|
</script>
|
|
|
-<style lang="scss" scope>
|
|
|
+<style lang="scss" scoped>
|
|
|
+.number-input{
|
|
|
+ /deep/ .el-input__inner {
|
|
|
+ text-align: left;
|
|
|
+ }
|
|
|
+}
|
|
|
</style>
|