From 7dfe56dd844e01a6ce60134a9c0b436626fd7bb5 Mon Sep 17 00:00:00 2001 From: mayiming <1627832236@qq.com> Date: Fri, 31 Oct 2025 16:46:26 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=95=99=E5=AD=A6=E6=A1=88?= =?UTF-8?q?=E4=BE=8B=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../teachingcase/teachingCaseView.vue | 707 +++++++++++++++++- 1 file changed, 703 insertions(+), 4 deletions(-) diff --git a/management/src/views/caseresource/teachingcase/teachingCaseView.vue b/management/src/views/caseresource/teachingcase/teachingCaseView.vue index 1e193c10..4cd02760 100644 --- a/management/src/views/caseresource/teachingcase/teachingCaseView.vue +++ b/management/src/views/caseresource/teachingcase/teachingCaseView.vue @@ -1,7 +1,706 @@ - - + + + + 教学案例管理列表 + 新增案例 + + + + + + 搜索 + + + + + + + + + 无封面 + + + + + + + {{ scope.row.title }} + + + + + + + {{ scope.row.student_names.length > 15 ? `${scope.row.student_names.slice(0,15)}...` : scope.row.student_names }} + + + + + + + + + {{ stripHtml(scope.row.content).length > 100 ? `${stripHtml(scope.row.content).slice(0, 100)}...` : stripHtml(scope.row.content) }} + + 查看详情 + + + + + + 编辑 + 删除 + + + + + + + + 标题: {{ currentCase.title }} + + 导师:{{ currentCase.tutor_name }} {{ currentCase.tutor_title || '' }} + 参与学生:{{ currentCase.student_names }} + 创建时间:{{ currentCase.create_time }} + 最后更新:{{ currentCase.update_time }} + + + + + + + + + + + + + + + + 案例标题 + + + + + 案例封面 + + + + + 支持JPG、PNG格式,大小不超过5MB + + + + + 导师姓名 + + + + 导师头衔 + + + + + + 学生姓名 + + + + + 排序 + + + + + 案例内容 + + + + + + + 取消 + + {{ form.id ? '更新案例' : '新增案例' }} + + + + + + - \ No newline at end of file + + + + \ No newline at end of file
支持JPG、PNG格式,大小不超过5MB