|
|
$(function () {
|
|
AutoSetSubmitUrl(); //自动设置提交页面(默认为../business)
|
setTimeout(LoadData, 0); //立即获取数据
|
|
});
|
|
|
|
/*
|
加载数据方法
|
*/
|
function LoadData() {
|
//获取Json数据
|
GetJson({ '0': 'T0T' }, function (data, textStatus) {
|
try {
|
|
if (data) {
|
window.NoneData = eval('[' + data + ']')[0];
|
ShowData();
|
} else {
|
global.NoneDataOperate(); return;
|
}
|
|
|
} catch (ex) {
|
global.DealDataException(ex); return
|
}
|
});
|
|
|
}
|
/*
|
显示信息
|
*/
|
function ShowData() {
|
window.NoneData.PrintTypeName = window.NoneData.PrintType.PrintName;
|
window.NoneData.MemberName = window.NoneData.MemberBasic.Name;
|
document.getElementById('link_QQ').href = 'http://wpa.qq.com/msgrd?V=1&Uin=' + window.NoneData.QQ + '&Site=ioshenmue&Menu=yes';
|
$("#spnMemberName").attr("value_id", window.NoneData.SellerId + "");
|
window.SetJsonToDom(window.NoneData, 'spn', "innerHTML");
|
|
|
}
|