阅读:1156
回复:2
|
审批意见框中的今天改成日期
如图所示,怎么能把 今天 改成 日期。
|
1楼#
发布于:2019-05-06 18:09
修改FormComment.js中此处逻辑即可,没测试,你可以试一下。 if (modifyData.getYear() == today.getYear() && modifyData.getMonth() == today.getMonth() && modifyData.getDate() == today.getDate()) { dateStr = "今天 " + this.formatDate(modifyData.getHours()) + ":" + this.formatDate(modifyData.getMinutes()); } else { dateStr = modifiedTime; } |
|
2楼#
发布于:2019-05-08 08:00
|
|