一、上传文件
将 moment-timezone-with-data.js 和 moment-timezone-with-data.min.js 文件上传到项目的 \public\assets\libs\moment\ 文件夹中。
二、配置中引入文件
在 \public\assets\js\require-backend.js 文件中增加所引入文件的配置:
'moment-timezone-with-data': '../libs/moment/moment-timezone-with-data',
三、指定后台前端的时区
在 \public\assets\js\backend.js 中设置后台前端的表格时区:
define(['fast', 'template', 'moment', 'moment-timezone-with-data'], function (Fast, Template, Moment, momentTimezoneWithData) {// 这里设置前端为英国时区这里设置前端时区Moment.tz.setDefault("Europe/London");