|
Model.prototype.moreBtnClick = function(event){
if ($(this.comp("screeningPopOver").$domNode).css("display") == "block") {
this.comp("screeningPopOver").hide();
} else {
this.comp("screeningPopOver").show();
}
};
点击显示popover,里面有个按钮, 点击 提交数据,返回成功 提示消息 关闭popover 找不到这个function
justep.Baas.sendRequest({
"url" : _url+"/wapi/Poc_Sos_action",
"action" : "baidLocation",
"async" : false,
"params" : {
"R_ID":justep.UUID.createUUID(),
"R_USER_ID":this.R_USER_ID,
"R_TASK_ID":this.R_TASK_ID,
"R_LAT":this.R_LAT,
"R_LON":this.R_LON,
"R_DATE" : justep.Date.toString(new Date(), justep.Date.DEFAULT_FORMAT)
},
"success" : function(data) {
justep.Util.hint("任务开始成功!",{
"type":"success",
"position":"middle"
});
this.comp("screeningPopOver").hide();//这句出错
} |
|