function _do_edit(id) {
$.confirm({
boxWidth: '900px',
title: '商品编辑',
content: '<iframe src="/index.php?call=mall.spu_edit&id=' + id + '" frameborder="0" scrolling="no" id="spuform" name="spuform" style="width:95%;height:500px;"></iframe>',
buttons: {
close: {text: '关闭'},
exec: {text: '保存', btnClass: 'btn-blue', action: function () {
window.frames["spuform"].document.forms["spuform"].submit();//跨域问题解决
location.reload();
}}
}, onOpen: function () {
}
});
}