|
@@ -8,13 +8,13 @@
|
|
|
</el-form-item>
|
|
|
<el-form-item label="学员限额">
|
|
|
<el-input
|
|
|
- v-model="orgInfo.max_count_student"
|
|
|
+ v-model.number="orgInfo.max_count_student"
|
|
|
@input="orgInfo.max_count_student = orgInfo.max_count_student.replace(/[^\d]/g, '')"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="教师限额">
|
|
|
<el-input
|
|
|
- v-model="orgInfo.max_count_teacher"
|
|
|
+ v-model.number="orgInfo.max_count_teacher"
|
|
|
@input="orgInfo.max_count_teacher = orgInfo.max_count_teacher.replace(/[^\d]/g, '')"
|
|
|
/>
|
|
|
</el-form-item>
|