diff --git a/.env.production b/.env.production index 554cda1..9f18d7b 100644 --- a/.env.production +++ b/.env.production @@ -21,12 +21,15 @@ VITE_GLOB_API_URL=/jeecg-boot #后台接口全路径地址(必填) # VITE_GLOB_DOMAIN_URL=https://zxkccx.webvpn.nenu.edu.cn/jeecg-boot VITE_GLOB_DOMAIN_URL=https://smartedu.nenu.edu.cn/jeecg-boot +# VITE_GLOB_DOMAIN_URL=https://xxhbtest2.nenu.edu.cn/jeecg-boot +#VITE_GLOB_DOMAIN_URL=http://210.47.29.177 # VITE_GLOB_DOMAIN_URL=https://kczxcs.nenu.edu.cn/jeecg-boot # VITE_GLOB_DOMAIN_URL=http://210.47.29.100/jeecg-boot #RTC服务器地址 # VITE_GLOB_RTC_SERVER = https://zxkccx.webvpn.nenu.edu.cn:8081 VITE_GLOB_RTC_SERVER = https://smartedu.nenu.edu.cn:8081 +# VITE_GLOB_RTC_SERVER = https://xxhbtest2.nenu.edu.cn:8081 # 接口父路径前缀 VITE_GLOB_API_URL_PREFIX= diff --git a/src/components/Form/src/jeecg/components/JUpload/JUpload.vue b/src/components/Form/src/jeecg/components/JUpload/JUpload.vue index 9565f88..df41ced 100644 --- a/src/components/Form/src/jeecg/components/JUpload/JUpload.vue +++ b/src/components/Form/src/jeecg/components/JUpload/JUpload.vue @@ -161,7 +161,6 @@ watch( (param, oldParam) => { if (JSON.stringify(param) != JSON.stringify(oldParam)) { nextTick(() => { - console.log(`🚀 ~ props.isGetBiz:`, props.isGetBiz, bindProps.value.disabled, loadBiz); if (props.isGetBiz && !bindProps.value.disabled) { //非被禁用状态,查询 nextTick(() => { @@ -644,8 +643,8 @@ function uploadFn(customRequestData) { console.log("🚀 ~ uploadFn ~ fileSize:", fileSize) - if(fileSize>1024*1024*20){ - let jjj = {success:false,code:0,message:'文件大小不能超过200M,请重新上传',result:null,timestamp:new Date().getTime()} + if(fileSize>1024*1024*150){ + let jjj = {success:false,code:0,message:'文件大小不能超过1500M,请重新上传',result:null,timestamp:new Date().getTime()} setTimeout(() => { onError(jjj, jjj, file); }, 1000); diff --git a/src/components/chart/Radar.vue b/src/components/chart/Radar.vue index e4ef64c..f351775 100644 --- a/src/components/chart/Radar.vue +++ b/src/components/chart/Radar.vue @@ -29,20 +29,49 @@ const chartRef = ref(null); const { setOptions, echarts } = useECharts(chartRef as Ref); const option = reactive({ - title: { - text: '基础雷达图', - }, + // title: { + // text: '基础雷达图', + // }, legend: { - data: ['文综', '理综'], + // data: ['文综', '理综'], }, + // tooltip: { + // trigger: 'item', + // }, radar: { + name: { + //指示器文字换行 start + formatter: function(text){ + var strlength = text.length; + if(strlength % 9 != 0){ + text = text.replace(/\S{9}/g,function(match){ + console.log(match); + return match + '\n' + }) + }else{ + text = text.replace(/\S{9}/g,function(match){ + console.log(match); + return match + '\n' + }); + strlength = text.length; + text = text.substring(0,strlength - 1); + } + return text + } + //指示器文字换行 end + }, indicator: [ - { name: '历史', max: 100 }, - { name: '地理', max: 110 }, - { name: '生物', max: 120 }, - { name: '化学', max: 130 }, - { name: '物理', max: 140 }, - { name: '政治', max: 150 }, + { value: 9.9, name: '重视学生的成长引领,关心学生的学习需求,乐于与学生交流', max: 10 }, + { value: 9.9, name: '上课准备充分。课堂教学秩序良好。作业布置合理,反馈及时', max: 10 }, + { value: 9.9, name: '教学目标明确,重点突出,逻辑性强', max: 10 }, + { value: 9.9, name: '教学内容清晰易懂,体现适当的深度、广度和前沿性', max: 10 }, + { value: 9.9, name: '教学方法合理。教学媒体得当,课程资源丰富', max: 10 }, + { value: 9.9, name: '教师知识渊博,教学水平高,教学特色鲜明,教学有吸引力', max: 10 }, + { value: 9.9, name: '教学语言规范、准确,情绪饱满,热忱投入,为人师表', max: 10 }, + { value: 9.9, name: '教学中启发学生思考,引导自主学习,激发学习动力,鼓励创新探索', max: 10 }, + { value: 9.9, name: '掌握了所学课程的基础知识和基本理论,能用所学知识解决实际问题', max: 10 }, + { value: 9.9, name: '体会到本门课程学习的乐趣和挑战,理解课程内容的意义与价值', max: 10 }, + ], }, series: [ @@ -50,7 +79,7 @@ type: 'radar', data: [ { - value: [82, 70, 60, 55, 90, 66], + value: [10,10,10,10,10,10,10,10,10,10,], name: '文综', }, ], @@ -83,11 +112,13 @@ let obj = { name: type }; let chartArr = props.chartData.filter((item) => type === item.type); obj['value'] = chartArr.map((item) => item.value); + obj['label'] = {show: true,} //data数据 data.push(obj); }); option.radar.indicator = indicator; option.series[0]['data'] = data; + console.log("🚀 ~ initCharts ~ option:", option) setOptions(option); } return { chartRef }; diff --git a/src/views/kc/kcEvaluationsStat/KcEvaluationsStat.data.ts b/src/views/kc/kcEvaluationsStat/KcEvaluationsStat.data.ts index e377231..fdc1c41 100644 --- a/src/views/kc/kcEvaluationsStat/KcEvaluationsStat.data.ts +++ b/src/views/kc/kcEvaluationsStat/KcEvaluationsStat.data.ts @@ -385,6 +385,186 @@ export const columns: BasicColumn[] = [ align: "center", dataIndex: 'col76' }, + { + title: '1.坚持立德树人,秉持共育两代师表理念,积极落实有理想信念、 有道德情操、有扎实学识、有仁爱之心的“ 四有好老师 ”培养目标 要求。', + align: "center", + dataIndex: 'col78113' + }, + { + title: '2.坚持学术强师理念,全面掌握所教学科必需的专业知识与教学知 识,做学生锤炼品格、学习知识、创新思维、奉献祖国的引路人, 具备对所教课程进行高质量创新性教学设计、实施、评价、反思和 研究的能力。', + align: "center", + dataIndex: 'col79' + }, + { + title: '3.尊重学生的权利、地位和人格,注重培养学生爱国情怀、创新精 神和健康人格,促进学生全面发展、终身学习。', + align: "center", + dataIndex: 'col80' + }, + { + title: '4.把握学生身心发展规律和学习特点,了解学生学习基础,激发学 生学习动力,重视引导学生自主发展,为把学生培养成底蕴深厚、 专业扎实、教书育人能力过硬的卓越人才奠定坚实基础。', + align: "center", + dataIndex: 'col81' + }, + { + title: '5.熟悉所教学科的知识体系、历史脉络、思想方法、科际联系和发 展前沿,认识所教学科在课程体系中的地位及其与培养目标的关 系,并将课程理解有效转化为教学观念、内容和行为。', + align: "center", + dataIndex: 'col82' + }, + { + title: '6.熟悉所教课程的内容体系、教育价值、发展历程,有效融入中华 优秀文化、渗透课程思政,坚持教书和育人相统一、言传和身教 相统一、潜心问道和关注社会相统一、学术自由和学术规范相统一。', + align: "center", + dataIndex: 'col83' + }, + { + title: '7.认识课堂是教书育人、开展教学活动的专业场域,课堂活动对培 养学生理论素养、实践能力、创新精神具有独特价值,能够科学、 灵活、适切地选择和运用课堂组织形式。', + align: "center", + dataIndex: 'col84' + }, + { + title: '8.理解课堂教学是教与学活动的有机统一,了解课堂的构成要素、 组织类型、活动方式和基本特点,掌握所教课程的教学规律、教学 方法和评价手段。', + align: "center", + dataIndex: 'col85' + }, + { + title: '9.严慈相济,乐于与学生交流,关心学生身心健康,热心为学生成 长提供专业支持,促进学生自由而全面的发展。', + align: "center", + dataIndex: 'col86' + }, + { + title: '10.尊重学生个体差异,了解学生合理学习需求,关注学生思想情 感,善于发现学生的闪光点,对学生发展抱有积极期待。', + align: "center", + dataIndex: 'col87' + }, + { + title: '11.坚持正确的政治方向与价值导向,为党育人,为国育才,依法 执教,理解教师是学生学习的促进者和成长的引路人,自觉履行立 德树人使命。', + align: "center", + dataIndex: 'col88' + }, + { + title: '12.理解教学是教师的立身之本,教研是教师的强教之基,潜心教 学,发展教学学术,自觉遵守教学纪律,认真践行教学规范,保证 有质量的教学。', + align: "center", + dataIndex: 'col89' + }, + { + title: '13.重视师德师风修养,思想积极向上,热爱教育事业,为人师表, 具有正确的教育观、教师观、学生观。', + align: "center", + dataIndex: 'col90' + }, + { + title: '14.追求教学艺术境界,教学语言规范准确、富有逻辑性,教态自 然,举止文明,仪表得体,有亲和力,情绪饱满,热忱投入。', + align: "center", + dataIndex: 'col91' + }, + { + title: '15.立足创新人才培养目标,深入研究课程大纲,针对学生已有经 验和基础,确定教学目标、重难点,形成教学方案。', + align: "center", + dataIndex: 'col92' + }, + { + title: '16.合理规划教学环节和时间,恰当选择教学方法,积极推动人工 智能、智慧学习环境等新技术与学科课程融合,形成线上与线下教 学有机结合、深度融通的自主、合作、探究学习模式。', + align: "center", + dataIndex: 'col93' + }, + { + title: '17.开发和利用具有交互性、情境化的课程资源和教学案例,创设 良好的教学情境,科学选择学习评价方式,合理安排课后学习任务。', + align: "center", + dataIndex: 'col94' + }, + { + title: '18.清晰阐释课程内容,准确把握教学重难点,恰当解读学科本源 性思想和方法,适时融入课程领域发展新成果。', + align: "center", + dataIndex: 'col95' + }, + { + title: '19.创造性地生成教学过程,鼓励学生在实践探究中发现问题、提 出问题、解决问题,激发学生的好奇心、想象力与创新思维,培养 学生的创新能力。', + align: "center", + dataIndex: 'col96' + }, + { + title: '20.把握课堂教学节奏和进度,根据课堂情境和学生表现适时调整 教学方式,展现教学机智。', + align: "center", + dataIndex: 'col97' + }, + { + title: '21.落实教学评一体化,运用多种评价方式, 了解学生学习状态, 有效评估学生学习效果,及时给予反馈和有针对性的指导。', + align: "center", + dataIndex: 'col98' + }, + { + title: '22.掌握所学课程的基础知识、基本原理、基本思想等核心内容。', + align: "center", + dataIndex: 'col99' + }, + { + title: '23.理解课程的知识结构、思想体系,了解所学知识的发展脉络与 前沿动态,形成学科理解力。', + align: "center", + dataIndex: 'col100' + }, + { + title: '24.掌握所学知识的运用情境、策略和方法, 了解所学课程与其它 课程的关联,理解课程知识在当代社会发展中的意义和价值,形成 学科转化力。', + align: "center", + dataIndex: 'col101' + }, + { + title: '25.掌握所学课程的基本专业技能,运用所学知识与方法分析、解 决实际问题,在新情境中发展实践迁移力。', + align: "center", + dataIndex: 'col102' + }, + { + title: '26.具有大胆质疑、敢于创新的精神,对课程知识及其应用进行批 判性思考,形成反思研究力。', + align: "center", + dataIndex: 'col103' + }, + { + title: '27.能在观察和思考中发现学科与实践问题,基于证据和逻辑发表 自己的观点和见解,提出问题解决方案。', + align: "center", + dataIndex: 'col104' + }, + { + title: '28.具有理想信念、责任担当与家国情怀,形成服务国家、奉献社 会的专业品质。', + align: "center", + dataIndex: 'col105' + }, + { + title: '29.体会课程学习的挑战与乐趣,珍惜学习机会,规划学习过程, 养成自主学习习惯,达成课程学习的各项预设目标,发展学习力。', + align: "center", + dataIndex: 'col106' + }, + { + title: '30.凸显课程培根铸魂、启智润心的育人价值,培养德智体美劳全 面发展的高素质专业化创新型人才。改革教学方式方法,展现开拓 创新能力,体现教学创造性。', + align: "center", + dataIndex: 'col107' + }, + { + title: '31.准确把握学科本质属性,尊重学科学习规律,体现具有中国特 色、中国风格、中国气派的学科体系、学术体系和话语体系。', + align: "center", + dataIndex: 'col108' + }, + { + title: '32.吸纳学科教研新成果,融入学科相关的新理念、新知识、新技 术,关注学科交叉融合、协同创新的发展趋势。', + align: "center", + dataIndex: 'col109' + }, + { + title: '33.教学设计和教学实施渗透革新意识,积极探索新时代教育教学。', + align: "center", + dataIndex: 'col110' + }, + { + title: '34.教学理念、教学方法等呈现个性风貌,善于引导学生传承中华 师道,涵养教育情怀,成为学生为学、为事、为人的示范,体现教 书育人、言传身教相统一的教学艺术性。', + align: "center", + dataIndex: 'col111' + }, + { + title: '总分', + align: "center", + dataIndex: 'col112' + }, + { + title: '优点或建议', + align: "center", + dataIndex: 'col113' + }, ]; //查询数据 diff --git a/src/views/kc/kcEvaluationsStat/KcEvaluationsStatList.vue b/src/views/kc/kcEvaluationsStat/KcEvaluationsStatList.vue index 3cb1683..b13f30d 100644 --- a/src/views/kc/kcEvaluationsStat/KcEvaluationsStatList.vue +++ b/src/views/kc/kcEvaluationsStat/KcEvaluationsStatList.vue @@ -72,7 +72,7 @@ diff --git a/src/views/kc/kcXsktjxmydcp/components/KcXsktjxmydcpDetail2Form.vue b/src/views/kc/kcXsktjxmydcp/components/KcXsktjxmydcpDetail2Form.vue new file mode 100644 index 0000000..d1f432a --- /dev/null +++ b/src/views/kc/kcXsktjxmydcp/components/KcXsktjxmydcpDetail2Form.vue @@ -0,0 +1,227 @@ + + + + + diff --git a/src/views/kc/kcXsktjxmydcp/components/KcXsktjxmydcpDetail2Modal.vue b/src/views/kc/kcXsktjxmydcp/components/KcXsktjxmydcpDetail2Modal.vue new file mode 100644 index 0000000..414b2d3 --- /dev/null +++ b/src/views/kc/kcXsktjxmydcp/components/KcXsktjxmydcpDetail2Modal.vue @@ -0,0 +1,75 @@ + + + + + diff --git a/src/views/kc/pjxxJszbpjf/JszbpjfList.vue b/src/views/kc/pjxxJszbpjf/JszbpjfList.vue new file mode 100644 index 0000000..6ef3b14 --- /dev/null +++ b/src/views/kc/pjxxJszbpjf/JszbpjfList.vue @@ -0,0 +1,184 @@ + + + \ No newline at end of file diff --git a/src/views/kc/pjxxJszbpjf/PjxxJszbpjf.api.ts b/src/views/kc/pjxxJszbpjf/PjxxJszbpjf.api.ts new file mode 100644 index 0000000..4d05138 --- /dev/null +++ b/src/views/kc/pjxxJszbpjf/PjxxJszbpjf.api.ts @@ -0,0 +1,72 @@ +import { defHttp } from '/@/utils/http/axios'; +import { useMessage } from "/@/hooks/web/useMessage"; + +const { createConfirm } = useMessage(); + +enum Api { + list = '/pjxxJszbpjf/pjxxJszbpjf/list', + save='/pjxxJszbpjf/pjxxJszbpjf/add', + edit='/pjxxJszbpjf/pjxxJszbpjf/edit', + deleteOne = '/pjxxJszbpjf/pjxxJszbpjf/delete', + deleteBatch = '/pjxxJszbpjf/pjxxJszbpjf/deleteBatch', + importExcel = '/pjxxJszbpjf/pjxxJszbpjf/importExcel', + exportXls = '/pjxxJszbpjf/pjxxJszbpjf/exportXls', +} + +/** + * 导出api + * @param params + */ +export const getExportUrl = Api.exportXls; + +/** + * 导入api + */ +export const getImportUrl = Api.importExcel; + +/** + * 列表接口 + * @param params + */ +export const list = (params) => defHttp.get({ url: Api.list, params }); + +/** + * 删除单个 + * @param params + * @param handleSuccess + */ +export const deleteOne = (params,handleSuccess) => { + return defHttp.delete({url: Api.deleteOne, params}, {joinParamsToUrl: true}).then(() => { + handleSuccess(); + }); +} + +/** + * 批量删除 + * @param params + * @param handleSuccess + */ +export const batchDelete = (params, handleSuccess) => { + createConfirm({ + iconType: 'warning', + title: '确认删除', + content: '是否删除选中数据', + okText: '确认', + cancelText: '取消', + onOk: () => { + return defHttp.delete({url: Api.deleteBatch, data: params}, {joinParamsToUrl: true}).then(() => { + handleSuccess(); + }); + } + }); +} + +/** + * 保存或者更新 + * @param params + * @param isUpdate + */ +export const saveOrUpdate = (params, isUpdate) => { + let url = isUpdate ? Api.edit : Api.save; + return defHttp.post({ url: url, params }, { isTransformResponse: false }); +} diff --git a/src/views/kc/pjxxJszbpjf/PjxxJszbpjf.data.ts b/src/views/kc/pjxxJszbpjf/PjxxJszbpjf.data.ts new file mode 100644 index 0000000..49086e9 --- /dev/null +++ b/src/views/kc/pjxxJszbpjf/PjxxJszbpjf.data.ts @@ -0,0 +1,232 @@ +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, + }, +]; diff --git a/src/views/kc/pjxxJszbpjf/PjxxJszbpjfList.vue b/src/views/kc/pjxxJszbpjf/PjxxJszbpjfList.vue new file mode 100644 index 0000000..ee64057 --- /dev/null +++ b/src/views/kc/pjxxJszbpjf/PjxxJszbpjfList.vue @@ -0,0 +1,255 @@ + + + + + diff --git a/src/views/kc/pjxxJszbpjf/components/PjxxJszbpjfForm.vue b/src/views/kc/pjxxJszbpjf/components/PjxxJszbpjfForm.vue new file mode 100644 index 0000000..34dd031 --- /dev/null +++ b/src/views/kc/pjxxJszbpjf/components/PjxxJszbpjfForm.vue @@ -0,0 +1,247 @@ + + + + + diff --git a/src/views/kc/pjxxJszbpjf/components/PjxxJszbpjfModal.vue b/src/views/kc/pjxxJszbpjf/components/PjxxJszbpjfModal.vue new file mode 100644 index 0000000..7c265b3 --- /dev/null +++ b/src/views/kc/pjxxJszbpjf/components/PjxxJszbpjfModal.vue @@ -0,0 +1,75 @@ + + + + + diff --git a/src/views/site/common/header.vue b/src/views/site/common/header.vue index c413956..7b561c0 100644 --- a/src/views/site/common/header.vue +++ b/src/views/site/common/header.vue @@ -157,7 +157,6 @@ function toIndex(){ if(roleList){ for(var i=0;i { if (roleList) { for (var i = 0; i < roleList.length; i++) { var roleCode = roleList[i].roleCode; - console.log(`🚀 ~ onMounted ~ roleCode:`, roleCode); if (roleCode == 'admin' || roleCode == 'jwms') { sfxx.value = '1'; } diff --git a/src/views/site/ktsb/index.vue b/src/views/site/ktsb/index.vue index 6d040e0..494d998 100644 --- a/src/views/site/ktsb/index.vue +++ b/src/views/site/ktsb/index.vue @@ -2,7 +2,7 @@ 课程简介 - diff --git a/src/views/site/studentWdkc/studentZyxx.vue b/src/views/site/studentWdkc/studentZyxx.vue index e3b2e1d..ee5f102 100644 --- a/src/views/site/studentWdkc/studentZyxx.vue +++ b/src/views/site/studentWdkc/studentZyxx.vue @@ -8,7 +8,7 @@ -