第十七届广东种业博览会地展品种报名流程
1、打开广东种业博览会官网(http://www.gd1212.com/),点击黄色字体“我要参展”。如官网打不开,就改用http://183.62.35.18:8082/loginIndex.action这个网址;
$('#addToCart').click(function () {
var ispresent = "1";
var amount = $('#chargeAmount').val();
var loading = showLoading();
$.post('/m-WeiXin/Donation/Charge', { pluginId: 'Agriz.Plugin.Payment.WeiXinPay_H5', amount: amount, ispresent: ispresent },
function (data) {
loading.close();
if (data.success == true) {
//$('#rechargePay').hide();
//$('#choosePay').removeClass('active');
//$("#J_assets_layer").removeClass();
//通过A链接模拟跳转
//jumpUrl在weixin中为一段js脚本,直接调用jsapi
if ($('#payJumpUrl').length > 0) {
$('#payJumpUrl').attr('href', data.href);
}
else {
$('body').append(' ');
}
document.getElementById("payJumpUrl").click();
} else
$.dialog.errorTips(data.msg);
}).error(function (data) {
loading.close();
$.dialog.errorTips('操作失败,请稍候尝试.');
});
});