This commit is contained in:
parent
1ae53262d3
commit
07dab299bc
|
@ -606,7 +606,6 @@ export default {
|
||||||
//班级提交
|
//班级提交
|
||||||
this.$refs[formName].validate((valid) => {
|
this.$refs[formName].validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
// debugger
|
|
||||||
//let content = this.phoneEditor.txt.html();//htm标签加文字
|
//let content = this.phoneEditor.txt.html();//htm标签加文字
|
||||||
// let content = this.phoneEditor.txt.text();//文字
|
// let content = this.phoneEditor.txt.text();//文字
|
||||||
let datas = {
|
let datas = {
|
||||||
|
@ -620,7 +619,7 @@ export default {
|
||||||
ClassRemark:this.formItem.ClassRemark,
|
ClassRemark:this.formItem.ClassRemark,
|
||||||
ClassinfoGrade: '1',//this.formItem.ClassinfoGrade
|
ClassinfoGrade: '1',//this.formItem.ClassinfoGrade
|
||||||
HeadTeacherNum:'',
|
HeadTeacherNum:'',
|
||||||
counselorsNumber:this.formItem.CounselorsNumber == undefined ? '' : this.formItem.counselorsNumber.join(',')
|
counselorsNumber:this.formItem.counselorsNumber == undefined ? '' : this.formItem.counselorsNumber.join(',')
|
||||||
};
|
};
|
||||||
|
|
||||||
postClassInfoAddinfo(datas).then((res) => {
|
postClassInfoAddinfo(datas).then((res) => {
|
||||||
|
|
|
@ -70,12 +70,12 @@
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="ClassroomName" align="center" label="教室名称" width="150">
|
<el-table-column prop="ClassroomName" align="center" label="教室名称" width="150">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="IsValid" align="center" label="按日期时间排课" width="150">
|
<!-- <el-table-column prop="IsValid" align="center" label="按日期时间排课" width="150">
|
||||||
<template v-slot="scope">
|
<template v-slot="scope">
|
||||||
<el-tag type="success" v-if="!scope.row.IsByDate">是</el-tag>
|
<el-tag type="success" v-if="!scope.row.IsByDate">是</el-tag>
|
||||||
<el-tag type="danger" v-if="scope.row.IsByDate">否</el-tag>
|
<el-tag type="danger" v-if="scope.row.IsByDate">否</el-tag>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column> -->
|
||||||
<el-table-column label="操作" align="center" width="150" fixed="right">
|
<el-table-column label="操作" align="center" width="150" fixed="right">
|
||||||
<template v-slot="scope">
|
<template v-slot="scope">
|
||||||
|
|
||||||
|
@ -646,9 +646,12 @@ export default {
|
||||||
columnValue = "教师职称";
|
columnValue = "教师职称";
|
||||||
break;
|
break;
|
||||||
case 9:
|
case 9:
|
||||||
columnValue = "是否校外教师";
|
columnValue = "手机号";
|
||||||
break;
|
break;
|
||||||
case 19:
|
case 10:
|
||||||
|
columnValue = "教师类型";
|
||||||
|
break;
|
||||||
|
case 11:
|
||||||
columnValue = "教学形式";
|
columnValue = "教学形式";
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue