|
|
import $ from 'yoho-jquery';
|
|
|
|
|
|
function XianyuLinkHandle() {
|
|
|
const cookie = require('yoho-cookie');
|
|
|
|
|
|
cookie.set('aaa', '123');
|
|
|
|
|
|
$(document).delegate('a:not(.yoho-coin, .yoho-conpon, .web-share-button, .button-ok)',
|
|
|
'click',
|
|
|
event => {
|
...
|
...
|
@@ -23,7 +19,7 @@ function XianyuLinkHandle() { |
|
|
|
|
|
href = url + '?' + encodeURI(search);
|
|
|
|
|
|
if (href.indexOf('#') !== 0) {
|
|
|
if (href.indexOf('#') !== 0 && href.indexOf('void') < 0) {
|
|
|
let args = {url: href};
|
|
|
|
|
|
if (window.WindVane) {
|
...
|
...
|
|