联系客服在线投稿
文映学术 · 发表无忧
Wenying Academic · Publish Worry-Free
One-Stop Service
筛选条件
正在加载...

正在加载报纸资源...

// 弹窗“投稿”按钮:根据已选档位跳转投稿页 $(document).on('click', '#np-action-submit', function() { var newspaperId = $(this).attr('data-id'); var newspaperName = $(this).attr('data-name') || ''; var target = __submissionBase + '?newspaper_id=' + encodeURIComponent(newspaperId) + '&newspaper_name=' + encodeURIComponent(newspaperName); var t = $(this).data('tier'); if (t && typeof t.price !== 'undefined') { target += '&selected_tier_min=' + encodeURIComponent(t.min) + '&selected_tier_max=' + encodeURIComponent(t.max) + '&selected_tier_price=' + encodeURIComponent(t.price); } if (!__isLoggedIn) { alert('请先登录后再投稿'); window.location.href = __loginBase + '?redirect_to=' + encodeURIComponent(target); return; } window.location.href = target; });