(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){
if(res.data.Descripe==''){
html = '
暂无配置
';
}else{
html += '公司名称:'+res.data.Value+'
\
'+res.data.Descripe+'
\
\
';
}
$page.find('.aboutadms').html(clean_nbsp(html));
}else{
renlian.layer.warning(res.message, function () { }, '提示', '关闭');
}
})
}
};
function clean_nbsp(str){
str = str.replace(/ /g,'');
return str;
}
return page;
})();