From 0be64e25ead776f9234d6f9b4e61d215a18f9323 Mon Sep 17 00:00:00 2001 From: ndbs Date: Tue, 28 Jun 2022 14:11:56 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=8C=E4=B8=8A=E8=AF=84=E6=95=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../LearunApp-2.2.0/pages.json | 4 ++-- .../EvaluationTeach/list.vue | 0 .../EvaluationTeach/single.vue | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) rename Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/{EducationalAdministration => }/EvaluationTeach/list.vue (100%) rename Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/{EducationalAdministration => }/EvaluationTeach/single.vue (94%) diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages.json b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages.json index a83644ca5..b97438479 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages.json +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages.json @@ -601,13 +601,13 @@ }, //掌上评教 { - "path": "pages/EducationalAdministration/EvaluationTeach/list", + "path": "pages/EvaluationTeach/list", "style": { "navigationBarTitleText": "课程列表" } }, { - "path": "pages/EducationalAdministration/EvaluationTeach/single", + "path": "pages/EvaluationTeach/single", "style": { "navigationBarTitleText": "评教" } diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/EvaluationTeach/list.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EvaluationTeach/list.vue similarity index 100% rename from Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/EvaluationTeach/list.vue rename to Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EvaluationTeach/list.vue diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/EvaluationTeach/single.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EvaluationTeach/single.vue similarity index 94% rename from Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/EvaluationTeach/single.vue rename to Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EvaluationTeach/single.vue index b0163ef76..8a7100218 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/EvaluationTeach/single.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EvaluationTeach/single.vue @@ -88,10 +88,10 @@ export default { // 表单项数据结构 scheme: { JournalSend: { - JTitle: { type: 'text', title: '日志主题' }, - JTypeId: { type: 'select', title: '日志类型', dataSource: '0' }, - JReceiveId: { type: 'organize', title: '接收人', dataType: 'user' }, - JContent: { type: 'textarea', title: '日志内容' }, + JTitle: { type: 'text' }, + JTypeId: { type: 'select' }, + JReceiveId: { type: 'organize'}, + JContent: { type: 'textarea' }, }, }, @@ -137,8 +137,8 @@ export default { this.origin = await this.getDefaultForm() } else { const result = await this.HTTP_GET('learun/adms/eval/paper', {VID:this.id}) -console.log(result); this.origin = await this.formatFormData(result) + console.log(result,"result") } this.current = this.COPY(this.origin) },