$(".nc_stylecentermessbox").on("click",".jssharebtn",function(){
var id = dsf.url.queryString('id');
var qrPath = dsf.url.getWebPath('nc/mobile/dist/webmobile/index.html/#/shareChannel/id'+id);
qrPath = encodeURIComponent(qrPath);
var qrCodeUrl = dsf.url.getWebPath('nc/ncqrcode/buildQrCode') + '?rexdirect=' + qrPath;//固定写法
layer.open({
type: 1,
title: false,
closeBtn: 0,
shade : [ 0.1, '#fff' ],
shadeClose: true,
content:"<div><img src='" + qrCodeUrl + "' alt=''></div>"
});
})