(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){
html += '
'+res.data.Value+'
\
'+res.data.Descripe+'
\
\
';
$page.find('.aboutrenlian').html(html);
}else{
//renlian.layer.warning("联系我们信息出错", function () { }, '提示', '关闭');
html = '您还没有配置关于我们';
$page.find('.aboutrenlian').html(html);
}
})
}
};
return page;
})();