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