/*访问后台的代码*/ layui.define([], function(exports) { var api={ updateXzxPayRequestInfo:function(form,callback){ Lib.submitForm("/cms/xzxPayRequestInfo/edit.json",form,{},callback) }, addXzxPayRequestInfo:function(form,callback){ Lib.submitForm("/cms/xzxPayRequestInfo/add.json",form,{},callback) }, del:function(ids,callback){ Common.post("/cms/xzxPayRequestInfo/delete.json",{"ids":ids},function(){ callback(); }) } }; exports('xzxPayRequestInfoApi',api); });