(function () {
var page = {
isScroll: false,
init: function ($page) {
var html = '';
renlian.httpget(config.webapi + "/?s=api/get_contact_us", {}, function(res) {
if(res.success == true){
html += '
公司名称:'+res.data.Value+'
\
'+res.data.Descripe+'
\
\
';
$page.find('.aboutadms').html(clean_nbsp(html));
}else{
html = '您还没有配置联系我们';
$page.find('.aboutadms').html(html);
}
})
}
};
function clean_nbsp(str){
str = str.replace(/ /g,'');
return str;
}
return page;
})();