这个是不是你想要的。https://help.fanruan.com/finereport/doc-view-925.html
var start = this.options.form.getWidgetByName("year").getValue();
var end = this.options.form.getWidgetByName("month").getValue();
var wllb = this.options.form.getWidgetByName("WLLB").getValue();
var REPORT_URL = '${servletURL}?viewlet=factory/QJWLBLFXYB.frm&op=export&format=excel' + "&wllb=" + wllb + "&year=" + start + "&month=" + end;
alert(start);
alert(end);
alert(REPORT_URL);
window.location = encodeURI(REPORT_URL);
