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("请输入节点名称!");