[问题求助] 界面设计,如何让新数据的日期栏位自动带出当天日期? |
问答
紧急程度
最佳答案1.在日期字段上新增一个赋默认值的规则
参考图1
2.在触发条件填入以下javascript,其中create_date请自行替换为您要作用的日期字段。
(() => {
if (data.create_date == null) {
let currentDate = new Date();
let year = currentDate.getFullYear();
let month = (currentDate.getMonth() + 1).toString().padStart(2, '0');
let day = currentDate.getDate().toString().padStart(2, '0');
let formattedDate = year + '-' + ...
| |