|
本帖最后由 丿天涯 于 2017-12-4 15:27 编辑
大神帮忙看看 哪块有毛病- var me = this;
- if(zjIds.length>0){
- me.comp("popOver1").show();
- biz.Request.sendBizRequest({
- "context" : this.getContext(),
- "dataType" : "application/json",
- parameters : params,
- async : true,
- "action" : "sendEmailsToExpert",
- "callback" : function(result) {
- if (result.state) {
- me.comp("popOver1").hide();
- justep.Util.hint("邮件发送成功!", {
- type : 'success',
- position : 'top'
- })
- }else{
- me.comp("popOver1").hide();
- }
- }
- });
- }
复制代码
|
|