From 964a904cc1e426aad51e1d386056bf1f6795a6c9 Mon Sep 17 00:00:00 2001 From: haha Date: Thu, 2 Jan 2025 23:34:45 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=90=8E=E5=8F=B0=E9=87=8C?= =?UTF-8?q?=E7=A8=8B=E7=A2=91=E7=AE=A1=E7=90=86=E4=BF=9D=E5=AD=98=E7=9A=84?= =?UTF-8?q?=E6=97=B6=E5=80=99=E5=A6=82=E6=9E=9C=E5=AE=9E=E9=99=85=E7=BB=93?= =?UTF-8?q?=E6=9D=9F=E6=97=A5=E6=9C=9F=E6=B2=A1=E6=9C=89=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E4=BF=9D=E5=AD=98=E7=9A=84=E6=97=B6=E5=80=99=E4=BC=9A=E8=87=AA?= =?UTF-8?q?=E5=8A=A8=E5=A1=AB=E5=85=85=E6=95=B0=E6=8D=AE=EF=BC=8C=E9=9C=80?= =?UTF-8?q?=E8=A6=81=E6=94=B9=E6=88=90=E4=B8=8D=E5=A1=AB=E5=85=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/mapper/manage/ProMilestoneMapper.xml | 2 +- yanzhu-ui-vue3/src/views/manage/milestone/index.vue | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/yanzhu-common/yanzhu-common-mapper/src/main/resources/mapper/manage/ProMilestoneMapper.xml b/yanzhu-common/yanzhu-common-mapper/src/main/resources/mapper/manage/ProMilestoneMapper.xml index f4512124..906f084f 100644 --- a/yanzhu-common/yanzhu-common-mapper/src/main/resources/mapper/manage/ProMilestoneMapper.xml +++ b/yanzhu-common/yanzhu-common-mapper/src/main/resources/mapper/manage/ProMilestoneMapper.xml @@ -107,7 +107,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" scheduled_end = #{scheduledEnd}, actual_start = #{actualStart}, actual_end = #{actualEnd}, - days = #{days}, + days = #{days}, explain_info = #{explainInfo}, is_del = #{isDel}, remark = #{remark}, diff --git a/yanzhu-ui-vue3/src/views/manage/milestone/index.vue b/yanzhu-ui-vue3/src/views/manage/milestone/index.vue index 8cbc1bf0..c553b080 100644 --- a/yanzhu-ui-vue3/src/views/manage/milestone/index.vue +++ b/yanzhu-ui-vue3/src/views/manage/milestone/index.vue @@ -136,6 +136,10 @@ function handleUpdate(row) { objs.forEach(it => { it.comId = userStore.currentComId; it.projectId = userStore.currentPrjId; + it.actualEnd=it.actualEnd?proxy.$dt(it.actualEnd).format("YYYY-MM-DD"):''; + it.actualStart=it.actualStart?proxy.$dt(it.actualStart).format("YYYY-MM-DD"):''; + it.scheduledEnd=it.scheduledEnd?proxy.$dt(it.scheduledEnd).format("YYYY-MM-DD"):''; + it.scheduledStart=it.scheduledStart?proxy.$dt(it.scheduledStart).format("YYYY-MM-DD"):''; }) if (objs.length == 0) { proxy.$modal.msgError("请输入节点名称!");