iwebshop头像插件调用方法
1、后安装好插件并开启插件。
2、修改前台模板 ucenter 里面的 index.html、info.html 模板文档,将里面的头像上传JS换成下面的JS。
//选择头像
function select_ico(){
art.dialog.open('{url:/plugin/photo}',{
'id':'user_ico',
'title':'设置头像',
'ok':function(iframeWin, topWin){
iframeWin.document.forms[0].submit();
return false;
}
});
}
//头像上传回调函数
function callback_user_ico(content){
var content = eval(content);
if(content.isError == true){
alert(content.message);
}else{
$('#user_ico_img').prop('src',content.data);
}
art.dialog({id:'user_ico'}).close();
window.location.reload();
}
3、该插件必须需要 iwebshop 开启伪静态功能。