|
@@ -2159,7 +2159,7 @@ function setEntServiceInfo (res) {
|
|
|
} else {
|
|
|
if(res.data.status == '1'){
|
|
|
// 需要留资 留资提示即刻获得一次查看原文机会
|
|
|
- let url_ = '/weixin/frontPage/bigmember/free/perfect_info?source=wx_article_original_one&signId='+encodeURIComponent(id)
|
|
|
+ let url_ = '/weixin/frontPage/bigmember/free/perfect_info?source=wx_article_original_one&signId='+encodeURIComponent(id) + '&article='+ extractString_(location.href)
|
|
|
location.href = url_
|
|
|
|
|
|
} else if(res.data.status == '2'){
|
|
@@ -2219,6 +2219,11 @@ function setEntServiceInfo (res) {
|
|
|
});
|
|
|
|
|
|
}
|
|
|
+ function extractString_(str){
|
|
|
+ const regex = /\/article\/(.*?)\//;
|
|
|
+ const match = str.match(regex);
|
|
|
+ return match ? match[1] : null;
|
|
|
+ }
|
|
|
// 大会员引流文案
|
|
|
function getDrainInfo () {
|
|
|
$.ajax({
|