From 3685a63ccabcd39cbcc85fcb134785f93936618a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E6=99=93=E7=90=AA?= Date: Mon, 31 Oct 2022 18:12:48 +0800 Subject: [PATCH] =?UTF-8?q?app2.0=20=E6=97=A5=E7=A8=8B=E5=AE=89=E6=8E=92?= =?UTF-8?q?=E5=8E=BB=E6=8E=89=E7=AD=9B=E9=80=89=20=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2scheme=E8=A1=A8=E5=8D=95=E5=90=8D=E4=B8=BASch?= =?UTF-8?q?edule?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../PersonnelManagement/Schedule/list.vue | 2 +- .../PersonnelManagement/Schedule/single.vue | 21 ++++++++++--------- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/PersonnelManagement/Schedule/list.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/PersonnelManagement/Schedule/list.vue index f912b10fa..ee81bd6cd 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/PersonnelManagement/Schedule/list.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/PersonnelManagement/Schedule/list.vue @@ -3,7 +3,7 @@ - {{ tips }} + {{ tips }} diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/PersonnelManagement/Schedule/single.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/PersonnelManagement/Schedule/single.vue index 7df8b50fc..803b1a083 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/PersonnelManagement/Schedule/single.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/PersonnelManagement/Schedule/single.vue @@ -2,27 +2,27 @@ @@ -86,7 +86,7 @@ export default { // 表单项数据结构 scheme: { - LR_OA_Schedule: { + Schedule: { F_StartDate: { type: 'datetime', title: '开始时间', dateformat: '1' }, F_EndDate: { type: 'datetime', title: '结束时间', dateformat: '1' }, F_Early: { type: 'text', title: '提前提醒', verify: 'NumOrNull' }, @@ -97,7 +97,7 @@ export default { // 数据源 dataSource: { - LR_OA_Schedule: { + Schedule: { }, } @@ -136,6 +136,7 @@ export default { } else { const result = await this.HTTP_GET('learun/adms/PersonnelManagement/Schedule/form', this.id) this.origin = await this.formatFormData(result) + console.log(this.origin) } this.current = this.COPY(this.origin) },