|
发表于 2018-1-13 09:03:43
|
显示全部楼层
Model.prototype.dataReportCustomRefresh = function(event){
var data = this.comp('dataReport');
var params = {
type.trim(this.comp("select1").val()),
typeValue:'%'+$.trim(this.comp("inputType").val())+'%',
startDate.trim(this.comp("inputStartDate").val()),
endDate.trim(this.comp("inputEndDate").val()),
comGUID:this.comGUID
};
justep.Baas.sendRequest({
"url" : "/nehoMES/deviceNet",
"action" : "sumOutput",
"async" : false,
"params" : params,
"success" : function(ret) {
data.loadData(ret);
}
});
};
需要跟后台返回结果集的列名一致 |
|