import {BasicColumn} from '/@/components/Table'; import {FormSchema} from '/@/components/Table'; import { rules} from '/@/utils/helper/validator'; import { render } from '/@/utils/common/renderUtils'; //列表数据 export const columns: BasicColumn[] = [ { title: '教师编号', align: "center", dataIndex: 'jsbh' }, { title: '教师姓名', align: "center", dataIndex: 'jsxm' }, { title: '教师职称', align: "center", dataIndex: 'jszc' }, { title: '教师院系', align: "center", dataIndex: 'jsyx' }, { title: '开课院系', align: "center", dataIndex: 'kkyx' }, { title: '课程名称', align: "center", dataIndex: 'kcmc' }, { title: '开课编号', align: "center", dataIndex: 'kkbh' }, { title: '参评率', align: "center", dataIndex: 'cpl' }, { title: '平均分汇总', align: "center", dataIndex: 'pjfhz' }, { title: '重视学生的成长引领,关心学生的学习需求,乐于与学生交流', align: "center", dataIndex: 'col1' }, { title: '上课准备充分,课堂教学秩序良好。作业布置合理,反馈及时', align: "center", dataIndex: 'col2' }, { title: '教学目标明确,重点突出,逻辑性强', align: "center", dataIndex: 'col3' }, { title: '教学内容清晰易懂,体现适当的深度、广度和前沿性', align: "center", dataIndex: 'col4' }, { title: '教学方法合理,教学媒体得当,课程资源丰富', align: "center", dataIndex: 'col5' }, { title: '教师知识渊博,教学水平高,教学特色鲜明,教学有吸引力', align: "center", dataIndex: 'col6' }, { title: '教学语言规范、准确,情绪饱满,热忱投入,为人师表', align: "center", dataIndex: 'col7' }, { title: '教学中启发学生思考,引导自主学习,激发学习动力,鼓励创新探索', align: "center", dataIndex: 'col8' }, { title: '掌握了所学课程的基础知识和基本理论,能用所学知识解决实际问题', align: "center", dataIndex: 'col9' }, { title: '体会到本门课程学习的乐趣和挑战,理解课程内容的意义与价值', align: "center", dataIndex: 'col10' }, { title: '优点或建议', align: "center", dataIndex: 'col11' }, { title: '学期学年', align: "center", dataIndex: 'xqxn' }, ]; //查询数据 export const searchFormSchema: FormSchema[] = [ ]; //表单数据 export const formSchema: FormSchema[] = [ { label: '教师编号', field: 'jsbh', component: 'Input', }, { label: '教师姓名', field: 'jsxm', component: 'Input', }, { label: '教师职称', field: 'jszc', component: 'Input', }, { label: '教师院系', field: 'jsyx', component: 'Input', }, { label: '开课院系', field: 'kkyx', component: 'Input', }, { label: '课程名称', field: 'kcmc', component: 'Input', }, { label: '开课编号', field: 'kkbh', component: 'Input', }, { label: '参评率', field: 'cpl', component: 'Input', }, { label: '平均分汇总', field: 'pjfhz', component: 'Input', }, { label: '重视学生的成长引领,关心学生的学习需求,乐于与学生交流', field: 'col1', component: 'Input', }, { label: '上课准备充分,课堂教学秩序良好。作业布置合理,反馈及时', field: 'col2', component: 'Input', }, { label: '教学目标明确,重点突出,逻辑性强', field: 'col3', component: 'Input', }, { label: '教学内容清晰易懂,体现适当的深度、广度和前沿性', field: 'col4', component: 'Input', }, { label: '教学方法合理,教学媒体得当,课程资源丰富', field: 'col5', component: 'Input', }, { label: '教师知识渊博,教学水平高,教学特色鲜明,教学有吸引力', field: 'col6', component: 'Input', }, { label: '教学语言规范、准确,情绪饱满,热忱投入,为人师表', field: 'col7', component: 'Input', }, { label: '教学中启发学生思考,引导自主学习,激发学习动力,鼓励创新探索', field: 'col8', component: 'Input', }, { label: '掌握了所学课程的基础知识和基本理论,能用所学知识解决实际问题', field: 'col9', component: 'Input', }, { label: '体会到本门课程学习的乐趣和挑战,理解课程内容的意义与价值', field: 'col10', component: 'Input', }, { label: '优点或建议', field: 'col11', component: 'InputTextArea', }, { label: '学期学年', field: 'xqxn', component: 'Input', }, // TODO 主键隐藏字段,目前写死为ID { label: '', field: 'id', component: 'Input', show: false, }, ];