将String 类型转化成想要的日期格式
?代码:
//Format Date function formatDate(value) { return new Date(value).dateFormat('Y/m/d'); }
?