(function () { var page = { isScroll: false, init: function ($page) { var html = ''; renlian.httpget(config.webapi + "/?s=api/get_about_us", {}, function(res) { //console.log(res); if(res.success == true){ if(res.data.Descripe==''){ html = '
暂无配置
'; }else{ html += '
'+res.data.Value+'
\
      '+res.data.Descripe+'
\ \ '; } $page.find('.aboutrenlian').html(html); }else{ renlian.layer.warning(res.message, function () { }, '提示', '关闭'); } }) } }; return page; })();