// ==UserScript==
// @name 优惠购
// @namespace http://tb.newday.me/
// @version 1.1.8
// @icon http://tb.newday.me/taobao/favicon.ico
// @author 哩呵
// @description 以最优惠的价格,把宝贝抱回家。插件主要功能有:[1]淘宝全站商品列表的优惠查询 [2]淘宝、京东内部优惠券自动获取 [3]主流商城的商品历史低价与价格变动信息 [4]查看和领取最新的淘宝商家优惠券
// @match *://*.taobao.com/*
// @match *://*.tmall.com/*
// @match *://*.tmall.hk/*
// @match *://*.liangxinyao.com/*
// @match *://*.yao.95095.com/*
// @match *://item.jd.com/*
// @match *://item.jd.hk/*
// @match *://goods.kaola.com/product/*
// @match *://you.163.com/item/*
// @match *://item.yhd.com/*
// @match *://product.suning.com/*
// @match *://www.amazon.cn/dp/*
// @match *://www.amazon.cn/gp/*
// @match *://product.dangdang.com/*
// @match *://item.gome.com.cn/*
// @match *://detail.vip.com/*
// @match *://*.newday.me/*
// @connect taobao.com
// @connect tmall.com
// @connect newday.me
// @require https://cdn.staticfile.org/jquery/1.12.4/jquery.min.js
// @require https://cdn.staticfile.org/jquery.qrcode/1.0/jquery.qrcode.min.js
// @require https://cdn.staticfile.org/snap.svg/0.5.1/snap.svg-min.js
// @require https://cdn.staticfile.org/echarts/4.1.0/echarts.min.js
// @require https://cdn.staticfile.org/vue/2.6.6/vue.min.js
// @run-at document-end
// @grant GM_getValue
// @grant GM_setValue
// @grant GM_xmlhttpRequest
// @grant GM_openInTab
// @noframes
// @downloadURL none
// ==/UserScript==
(function () {
'use strict';
var container = (function () {
var obj = {
_defines: {},
_modules: {}
};
obj.define = function (name, requires, callback) {
name = obj.processName(name);
obj._defines[name] = {
requires: requires,
callback: callback
};
};
obj.require = function (name, cache) {
cache = (cache == false) ? false : true;
name = obj.processName(name);
if (cache && obj._modules.hasOwnProperty(name)) {
return obj._modules[name];
}
else if (obj._defines.hasOwnProperty(name)) {
var requires = obj._defines[name].requires;
var callback = obj._defines[name].callback;
var module = obj.use(requires, callback);
cache && obj.register(name, module);
return module;
}
};
obj.use = function (requires, callback) {
var module = {
exports: {}
};
var params = obj.buildParams(requires, module);
var result = callback.apply(this, params);
if (typeof result != "undefined") {
return result;
}
else {
return module.exports;
}
};
obj.register = function (name, module) {
name = obj.processName(name);
obj._modules[name] = module;
};
obj.buildParams = function (requires, module) {
var params = [];
requires.forEach(function (name) {
params.push(obj.require(name));
});
params.push(obj.require);
params.push(module.exports);
params.push(module);
return params;
};
obj.processName = function (name) {
return name.toLowerCase();
};
return obj;
})();
container.define("config", [], function () {
var obj = {
base: "http://api.newday.me",
url: location.href,
mode: {
addon: "addon",
script: "script"
},
browser: {
firefox: "firefox",
edge: "edge",
baidu: "baidu",
liebao: "liebao",
uc: "uc",
qq: "qq",
sogou: "sogou",
opera: "opera",
maxthon: "maxthon",
ie2345: "2345",
se360: "360",
chrome: "chrome",
other: "other"
},
site: {
taobao: "taobao",
jd: "jd",
kaola: "kaola",
guomei: "guomei",
yanxuan: "yanxuan",
yhd: "yhd",
amazon: "amazon",
suning: "suning",
dangdang: "dangdang",
vip: "vip",
newday: "newday"
},
option: {
taobao_detail: "taobao",
taobao_search: "taobao_search",
jd_detail: "jd",
kaola_detail: "kaola",
yanxuan_detail: "yanxuan",
yhd_detail: "yhd",
amazon_detail: "amazon",
suning_detail: "suning",
dangdang_detail: "dangdang",
guomei_detail: "guomei",
vip_detail: "vip"
}
};
obj.getUrl = function () {
return obj.url;
};
obj.setUrl = function (url) {
obj.url = url;
};
return obj;
});
container.define("util", ["config"], function (config) {
var obj = {};
obj.matchBrowserType = function (userAgent) {
var browser;
userAgent = userAgent.toLowerCase();
if (userAgent.match(/firefox/) != null) {
browser = config.browser.firefox;
} else if (userAgent.match(/edge/) != null) {
browser = config.browser.edge;
} else if (userAgent.match(/bidubrowser/) != null) {
browser = config.browser.baidu;
} else if (userAgent.match(/lbbrowser/) != null) {
browser = config.browser.liebao;
} else if (userAgent.match(/ubrowser/) != null) {
browser = config.browser.uc;
} else if (userAgent.match(/qqbrowse/) != null) {
browser = config.browser.qq;
} else if (userAgent.match(/metasr/) != null) {
browser = config.browser.sogou;
} else if (userAgent.match(/opr/) != null) {
browser = config.browser.opera;
} else if (userAgent.match(/maxthon/) != null) {
browser = config.browser.maxthon;
} else if (userAgent.match(/2345explorer/) != null) {
browser = config.browser.ie2345;
} else if (userAgent.match(/chrome/) != null) {
if (obj.existMime("type", "application/vnd.chromium.remoting-viewer")) {
browser = config.browser.se360;
} else {
browser = config.browser.chrome;
}
}
else {
browser = config.browser.other;
}
return browser;
};
obj.existMime = function (option, value) {
if (typeof navigator != "undefined") {
var mimeTypes = navigator.mimeTypes;
for (var mt in mimeTypes) {
if (mimeTypes[mt][option] == value) {
return true;
}
}
}
return false;
};
obj.parseUrlParam = function (url) {
if (url.indexOf("?")) {
url = url.split("?")[1];
}
var reg = /([^=&\s]+)[=\s]*([^=&\s]*)/g;
var obj = {};
while (reg.exec(url)) {
obj[RegExp.$1] = RegExp.$2;
}
return obj;
};
obj.parseJson = function (jsonStr) {
var jsonObject = {};
try {
if (jsonStr) {
jsonObject = JSON.parse(jsonStr);
}
}
catch (e) { }
return jsonObject;
};
obj.replaceVars = function (vars, value) {
Object.keys(vars).forEach(function (key) {
value = value.replace(key, vars[key]);
});
return value;
};
obj.randString = function (length) {
var possible = "abcdefghijklmnopqrstuvwxyz0123456789";
var text = "";
for (var i = 0; i < length; i++) {
text += possible.charAt(Math.floor(Math.random() * possible.length));
}
return text;
};
return obj;
});
container.define("core", ["config", "util", "$"], function (config, util, $) {
var obj = {
info: {
aid: "",
uid: "",
version: "",
latest: "",
browser: ""
},
router: {
home: "http://tb.newday.me/router/home?browser={browser}&mode={mode}",
update: "http://tb.newday.me/router/update?browser={browser}&mode={mode}",
option: "http://tb.newday.me/router/option?browser={browser}&mode={mode}"
}
};
obj.getMode = function () {
return config.mode.script;
};
obj.getInfo = function () {
return obj.info;
};
obj.getRouter = function () {
return obj.router;
};
obj.getVersion = function () {
return obj.info.version;
};
obj.getAid = function () {
return obj.info.aid;
};
obj.getUid = function () {
return obj.info.uid;
};
obj.getBrowser = function () {
return obj.info.browser;
};
obj.getConfig = function (name) {
var configJson = obj.getValue("configJson");
var configObject = util.parseJson(configJson);
if (name) {
return configObject.hasOwnProperty(name) ? configObject[name] : null;
}
else {
return configObject;
}
};
obj.setConfig = function (name, value) {
var configObject = obj.getConfig();
configObject[name] = value;
obj.setValue("configJson", JSON.stringify(configObject));
};
obj.getOption = function () {
var optionJson = obj.getValue("optionJson");
var optionObject = util.parseJson(optionJson);
var option = [];
Object.values(config.option).forEach(function (value) {
if (!(optionObject.hasOwnProperty(value) && optionObject[value] == "no")) {
option.push(value);
}
});
return option;
};
obj.setOption = function (option) {
var optionObject = {};
Object.values(config.option).forEach(function (value) {
if (option.indexOf(value) >= 0) {
optionObject[value] = "yes";
} else {
optionObject[value] = "no";
}
});
obj.setValue("optionJson", JSON.stringify(optionObject));
};
obj.getUrlParam = function (name) {
var param = util.parseUrlParam(config.getUrl());
if (name) {
return param.hasOwnProperty(name) ? param[name] : null;
}
else {
return param;
}
};
obj.isOptionActive = function (name) {
var option = obj.getOption();
return option.indexOf(name) >= 0 ? true : false;
};
obj.appendStyle = function () {
var styleText = `#tb-cool-area{border:1px solid #eee;margin:0 auto;position:relative;clear:both;display:none}
#tb-cool-area .tb-cool-area-home{position:absolute;top:5px;right:10px;z-index:10000}
#tb-cool-area .tb-cool-area-home a{color:#515858;font-size:10px;text-decoration:none}
#tb-cool-area .tb-cool-area-home a.new-version{color:#ff0036}
#tb-cool-area .tb-cool-area-benefit{width:240px;float:left}
#tb-cool-area .tb-cool-area-benefit .tb-cool-quan-qrcode{text-align:center;min-height:150px;margin-top:40px}
#tb-cool-area .tb-cool-area-benefit .tb-cool-quan-qrcode canvas,#tb-cool-area .tb-cool-area-benefit .tb-cool-quan-qrcode img{margin:0 auto}
#tb-cool-area .tb-cool-area-benefit .tb-cool-quan-title{margin-top:20px;color:#000;font-size:14px;font-weight:700;text-align:center}
#tb-cool-area .tb-cool-area-benefit .tb-cool-quan-title span{color:#ff0036;font-weight:700}
#tb-cool-area .tb-cool-area-benefit .tb-cool-quan-action{margin-top:10px;text-align:center}
#tb-cool-area .tb-cool-area-benefit .tb-cool-quan-action a{text-decoration:none}
#tb-cool-area .tb-cool-area-benefit .tb-cool-quan-action .tb-cool-quan-button{min-width:120px;padding:0 8px;line-height:35px;color:#fff;background:#ff0036;font-size:13px;font-weight:700;letter-spacing:1.5px;margin:0 auto;text-align:center;border-radius:15px;display:inline-block;cursor:pointer}
#tb-cool-area .tb-cool-area-benefit .tb-cool-quan-action .tb-cool-quan-button.quan-none{color:#000;background:#bec5c5}
#tb-cool-area .tb-cool-area-history{height:300px;overflow:hidden;position:relative}
#tb-cool-area .tb-cool-area-history #tb-cool-area-chart,#tb-cool-area .tb-cool-area-history .tb-cool-area-container{width:100%;height:100%}
#tb-cool-area .tb-cool-area-history .tb-cool-history-tip{position:absolute;margin:0;top:50%;left:50%;letter-spacing:1px;font-size:15px;transform:translateX(-50%) translateY(-50%)}
#tb-cool-area .tb-cool-area-table{margin-top:10px;position:relative;overflow:hidden}
#tb-cool-area .tb-cool-quan-tip{position:absolute;margin:0;top:50%;left:50%;letter-spacing:1px;font-size:15px;opacity:0;transform:translateX(-50%) translateY(-50%)}
#tb-cool-area .tb-cool-quan-tip a{color:#333;font-weight:400;text-decoration:none}
#tb-cool-area .tb-cool-quan-tip a:hover{color:#ff0036}
#tb-cool-area .tb-cool-area-table .tb-cool-quan-table{width:100%;font-size:14px;text-align:center}
#tb-cool-area .tb-cool-area-table .tb-cool-quan-table tr td{padding:4px;color:#1c2323;border-top:1px solid #eee;border-left:1px solid #eee}
#tb-cool-area .tb-cool-area-table .tb-cool-quan-table tr td span{color:#ff0036;font-weight:700}
#tb-cool-area .tb-cool-area-table .tb-cool-quan-table tr td:first-child{border-left:none}
#tb-cool-area .tb-cool-area-table .tb-cool-quan-table .tb-cool-quan-link{width:60px;line-height:24px;font-size:12px;background:#ff0036;text-decoration:none;display:inline-block}
#tb-cool-area .tb-cool-area-table .tb-cool-quan-table .tb-cool-quan-link-enable{cursor:pointer;color:#fff}
#tb-cool-area .tb-cool-area-table .tb-cool-quan-table .tb-cool-quan-link-disable{cursor:default;color:#000;background:#ccc}
#tb-cool-area .tb-cool-quan-empty .tb-cool-quan-tip{opacity:1}
#tb-cool-area .tb-cool-quan-empty .tb-cool-quan-table{filter:blur(3px);-webkit-filter:blur(3px);-moz-filter:blur(3px);-ms-filter:blur(3px)}
.tb-cool-box-area{position:absolute;top:10px;left:5px;z-index:9999}
.tb-cool-box-wait{cursor:pointer}
.tb-cool-box-already{position:relative}
.tb-cool-box-info{width:auto!important;height:auto!important;padding:6px 8px!important;font-size:12px;color:#fff!important;border-radius:15px;cursor:pointer;text-decoration:none!important}
.tb-cool-box-info:hover{text-decoration:none!important}
.tb-cool-box-info:visited{text-decoration:none!important}
.tb-cool-box-info-default{background:#3186fd!important}
.tb-cool-box-info-find{background:#ff0036!important}
.tb-cool-box-info-empty{color:#000!important;background:#ccc!important}
.tb-cool-box-info-translucent{opacity:.33}
.mui-zebra-module .tb-cool-box-info{font-size:10px}
.zebra-ziying-qianggou .tb-cool-box-area{right:10px;left:auto}
.import-shangou-itemcell .tb-cool-box-area{right:10px;left:auto}
.item_s_cpb .tb-cool-box-area{top:auto;bottom:10px}
.j-mdv-chaoshi .m-floor .tb-cool-box-area a{width:auto;height:auto}
.left-wider .proinfo-main{margin-bottom:40px}
.detailHd .m-info{margin-bottom:20px}`;
$("").text(styleText).appendTo($("head"));
};
obj.jumpLink = function (jumpUrl, jumpMode) {
switch (jumpMode) {
case 9:
// self
location.href = jumpUrl;
break;
case 6:
// new
window.open(jumpUrl);
break;
case 3:
// new & not active
GM_openInTab(jumpUrl, true);
break;
case 1:
// new & active
GM_openInTab(jumpUrl, false);
break;
}
};
obj.jumpCouponLink = function (jumpUrl, jumpMode) {
obj.jumpLink(jumpUrl, jumpMode);
};
obj.ajax = function (option) {
var details = {
url: option.url,
responseType: option.dataType,
onload: function (result) {
option.success && option.success(result.response);
},
onerror: function (result) {
option.error && option.error(result.error);
}
};
// 提交数据
if (option.data) {
details.method = "POST";
if (option.data instanceof FormData) {
details.data = option.data;
}
else {
var formData = new FormData();
for (var i in option.data) {
formData.append(i, option.data[i]);
}
details.data = formData;
}
}
else {
details.method = "GET";
}
// 自定义头
if (option.headers) {
details.headers = option.headers;
}
// 超时
if (option.timeout) {
details.timeout = option.timeout;
}
GM_xmlhttpRequest(details);
};
obj.printLog = function (data) {
if (typeof console != "undefined") {
if (typeof console != "undefined") {
console.log(data);
}
}
};
obj.getValue = function (name) {
return GM_getValue(name);
};
obj.setValue = function (name, value) {
GM_setValue(name, value);
};
obj.initInfo = function () {
return new Promise(function (resolve) {
obj.info.aid = GM_info.script.uuid;
obj.info.version = GM_info.script.version;
obj.info.browser = util.matchBrowserType(navigator.userAgent);
var vars = {
"{browser}": obj.getBrowser(),
"{mode}": obj.getMode()
};
obj.router.home = util.replaceVars(vars, obj.router.home);
obj.router.update = util.replaceVars(vars, obj.router.update);
obj.router.option = util.replaceVars(vars, obj.router.option);
var name = "_uid_";
var uid = obj.getValue(name);
if (uid) {
obj.info.uid = uid;
}
else {
obj.info.uid = util.randString(32);
obj.setValue(name, obj.info.uid);
}
resolve();
});
};
obj.init = function (callback) {
var promiseList = [
obj.initInfo()
];
Promise.all(promiseList).then(function () {
callback && callback();
});
};
return obj;
});
container.define("api", ["config", "core", "snap"], function (config, core, snap) {
var obj = {};
obj.itemQuery = function (url, callback) {
core.ajax({
url: config.base + "/taobao/tool/query",
dataType: "json",
data: {
item_url: url,
uid: core.getUid(),
aid: core.getAid(),
version: core.getVersion(),
browser: core.getBrowser(),
mode: core.getMode()
},
success: function (response) {
callback && callback(response);
},
error: function (error) {
callback && callback("");
}
});
};
obj.basicQuery = function (itemId, callback) {
core.ajax({
url: config.base + "/taobao/tool/basic",
dataType: "json",
data: {
item_id: itemId,
source: "taobao",
uid: core.getUid(),
aid: core.getAid(),
version: core.getVersion(),
browser: core.getBrowser(),
mode: core.getMode()
},
success: function (response) {
callback && callback(response);
},
error: function (error) {
callback && callback("");
}
});
};
obj.trendQuery = function (url, callback) {
core.ajax({
url: config.base + "/taobao/tool/trend",
dataType: "json",
data: {
item_url: url,
item_point: obj.getStrPoint(url),
uid: core.getUid(),
aid: core.getAid(),
version: core.getVersion(),
browser: core.getBrowser(),
mode: core.getMode()
},
success: function (response) {
callback && callback(response);
},
error: function (error) {
callback && callback("");
}
});
};
obj.logOption = function (option, callback) {
core.ajax({
url: config.base + "/taobao/tool/option",
dataType: "json",
data: {
option_json: JSON.stringify(option),
uid: core.getUid(),
aid: core.getAid(),
version: core.getVersion(),
browser: core.getBrowser(),
mode: core.getMode()
},
success: function (response) {
callback && callback(response);
},
error: function (error) {
callback && callback("");
}
});
};
obj.couponQueryCart = function (itemId, shopId, callback) {
var url = "https://bar.tmall.com/cueAssetMsg.htm?sellerId=" + shopId + "&itemId=" + itemId + "&bizInfo=..pc&_input_charset=UTF-8&callback=jsonp";
core.ajax({
url: url,
dataType: "text",
headers: {
"referer": "https://www.tmall.com/"
},
success: function (response) {
callback && callback(response);
},
error: function (error) {
callback && callback("");
}
});
};
obj.couponQueryShop = function (itemId, shopId, callback) {
core.ajax({
url: "https://cart.taobao.com/json/GetPriceVolume.do?sellerId=" + shopId,
dataType: "json",
success: function (response) {
callback && callback(response);
},
error: function (error) {
callback && callback("");
}
});
};
obj.getStrPoint = function (str) {
if (str.length < 2) {
return "0:0";
}
var path = "";
var current, last = str[0].charCodeAt();
var sum = last;
for (var i = 1; i < str.length; i++) {
current = str[i].charCodeAt();
if (i == 1) {
path = path + "M";
} else {
path = path + " L";
}
path = path + current + " " + last;
last = current;
sum = sum + current;
}
path = path + " Z";
var index = sum % str.length;
var data = snap.path.getPointAtLength(path, str[index].charCodeAt());
return data.m.x + ":" + data.n.y;
};
return obj;
});
container.define("app_detail", ["config", "core", "api", "echarts", "$"], function (config, core, api, echarts, $) {
var obj = {
trendData: null
};
obj.getSite = function () {
return obj.matchSite(config.getUrl());
};
obj.getItemUrl = function () {
return obj.matchItemUrl(config.getUrl());
};
obj.run = function () {
var site = obj.getSite();
switch (site) {
case config.site.taobao:
core.isOptionActive(config.option.taobao_detail) && obj.initDetailTaoBao();
break;
case config.site.jd:
core.isOptionActive(config.option.jd_detail) && obj.initDetailJd();
break;
case config.site.kaola:
core.isOptionActive(config.option.kaola_detail) && obj.initDetailKaoLa();
break;
case config.site.yanxuan:
core.isOptionActive(config.option.yanxuan_detail) && obj.initDetailYanXuan();
break;
case config.site.yhd:
core.isOptionActive(config.option.yhd_detail) && obj.initDetailYhd();
break;
case config.site.suning:
core.isOptionActive(config.option.suning_detail) && obj.initDetailSuNing();
break;
case config.site.amazon:
core.isOptionActive(config.option.amazon_detail) && obj.initDetailAmazon();
break;
case config.site.dangdang:
core.isOptionActive(config.option.dangdang_detail) && obj.initDetailDangDang();
break;
case config.site.guomei:
core.isOptionActive(config.option.guomei_detail) && obj.initDetailGuoMei();
break;
case config.site.vip:
core.isOptionActive(config.option.vip_detail) && obj.initDetailVip();
break;
default:
return false;
}
return true;
};
obj.initDetailTaoBao = function () {
if ($('#detail').length || $(".ju-wrapper").length) {
var html = obj.getAppendHtml();
if ($("#J_DetailMeta").length) {
$("#J_DetailMeta").append(html);
} else {
$("#detail").append(html + "
");
}
var onEmpty = function () {
obj.showText("打开淘宝扫一扫");
};
obj.initDetail(onEmpty);
} else {
setTimeout(function () {
obj.initDetailTaoBao();
}, 1000);
}
};
obj.initDetailJd = function () {
if ($(".product-intro").length) {
var html = obj.getAppendHtml();
$(".product-intro").append(html);
var onEmpty = function () {
obj.showText("打开京东扫一扫");
};
obj.initDetail(onEmpty);
} else {
setTimeout(function () {
obj.initDetailJd();
}, 1000);
}
};
obj.initDetailKaoLa = function () {
if ($("#j-producthead").length) {
var html = obj.getAppendHtml();
$("#j-producthead").after(html);
var onEmpty = function () {
obj.showText("打开考拉扫一扫");
};
obj.initDetail(onEmpty);
} else {
setTimeout(function () {
obj.initDetailKaoLa();
}, 1000);
}
};
obj.initDetailYanXuan = function () {
if ($(".detailHd").length) {
var html = obj.getAppendHtml();
$(".detailHd").append(html);
var onEmpty = function () {
obj.showText("打开严选扫一扫");
};
obj.initDetail(onEmpty);
} else {
setTimeout(function () {
obj.initDetailYanXuan();
}, 1000);
}
};
obj.initDetailYhd = function () {
if ($(".fm_detail_one").length) {
var html = obj.getAppendHtml();
$(".fm_detail_one").append(html);
var onEmpty = function () {
obj.showText("打开一号店扫一扫");
};
obj.initDetail(onEmpty);
} else {
setTimeout(function () {
obj.initDetailYhd();
}, 1000);
}
};
obj.initDetailSuNing = function () {
if ($(".proinfo-container").length) {
var html = obj.getAppendHtml();
$(".proinfo-container").append(html);
var onEmpty = function () {
obj.showText("打开苏宁扫一扫");
};
obj.initDetail(onEmpty);
} else {
setTimeout(function () {
obj.initDetailSuNing();
}, 1000);
}
};
obj.initDetailAmazon = function () {
if ($("#centerCol").length) {
var html = obj.getAppendHtml();
$("#centerCol").after(html);
var onEmpty = function () {
obj.showText("手机扫一扫");
};
obj.initDetail(onEmpty);
} else {
setTimeout(function () {
obj.initDetailAmazon();
}, 1000);
}
};
obj.initDetailDangDang = function () {
if ($(".product_main").length) {
var html = obj.getAppendHtml();
$(".product_main").append(html);
var onEmpty = function () {
obj.showText("打开当当扫一扫");
};
obj.initDetail(onEmpty);
} else {
setTimeout(function () {
obj.initDetailDangDang();
}, 1000);
}
};
obj.initDetailGuoMei = function () {
if ($(".gome-container").length) {
var html = obj.getAppendHtml();
$(".gome-container").append(html);
var onEmpty = function () {
obj.showText("打开国美扫一扫");
};
obj.initDetail(onEmpty);
} else {
setTimeout(function () {
obj.initDetailGuoMei();
}, 1000);
}
};
obj.initDetailVip = function () {
if ($(".FW-product").length) {
var html = obj.getAppendHtml();
$(".FW-product").append(html);
var onEmpty = function () {
obj.showText("打开唯品会扫一扫");
};
obj.initDetail(onEmpty);
} else {
setTimeout(function () {
obj.initDetailVip();
}, 1000);
}
};
obj.initDetail = function (onEmpty) {
// 版本信息
obj.showVersion(core.getMode(), core.getInfo(), core.getRouter());
// 注册事件
var site = obj.getSite();
if (site == config.site.taobao) {
obj.initCouponEvent();
} else if (site == config.site.amazon) {
obj.initResizeEvent();
}
// 商品查询
api.itemQuery(config.getUrl(), function (response) {
$("#tb-cool-area").show();
if (response && response.code == 1) {
var data = response.data;
// 二维码
obj.showQrcode(data.app_url);
// 价格趋势
obj.showChart(data.good_url);
// 隐藏优惠券
if (data.coupon_money > 0) {
obj.showCoupon(data);
}
else {
onEmpty();
}
// 优惠券列表
if (obj.getSite() == config.site.taobao) {
obj.showCouponList(data.item_id, data.shop_id);
}
}
else {
var itemUrl = obj.getItemUrl();
// 二维码
obj.showQrcode(itemUrl);
// 二维码
obj.showChart(itemUrl);
// 无优惠券
onEmpty();
}
});
};
obj.initResizeEvent = function () {
$(window).resize(function () {
obj.showChartRefresh();
});
};
obj.initCouponEvent = function () {
$(document).on("click", ".tb-cool-quan-link-enable", function () {
obj.openCouponLink($(this).attr("data-coupon"), $(this).attr("data-shop"));
});
$(document).on("click", ".tb-cool-jump", function () {
var jumpUrl = $(this).attr("data-url");
var jumpMode = parseInt($(this).attr("data-mode"));
core.jumpLink(jumpUrl, jumpMode);
});
$(document).on("click", ".tb-cool-quan-button.quan-exist", function () {
var jumpUrl = $(this).attr("data-url");
var jumpMode = parseInt($(this).attr("data-mode"));
core.jumpCouponLink(jumpUrl, jumpMode);
});
};
obj.openCouponLink = function (couponId, shopId) {
var couponLink = obj.buildCouponLink(couponId, shopId);
window.open(couponLink, "领取优惠券", "width=600,height=600,toolbar=no,menubar=no,scrollbars=auto,resizeable=no,location=no,status=no");
};
obj.showCoupon = function (data) {
var html = "
券后价 " + data.coupon_price.toFixed(2) + " 元
"; $(".tb-cool-quan-title").html(html); html = '领' + data.coupon_money + '元内部券'; $(".tb-cool-quan-action").html(html); }; obj.showQrcode = function (url) { $(".tb-cool-quan-qrcode").html(""); $(".tb-cool-quan-qrcode").qrcode({ width: 150, height: 150, text: url }); }; obj.showText = function (buttonText, infoText) { var infoTextArr = ["移动端快捷购买"]; if (!infoText) { var index = (new Date()).valueOf() % infoTextArr.length; infoText = infoTextArr[index]; } var infoHtml = "" + infoText + "
"; $(".tb-cool-quan-title").html(infoHtml); buttonText || (buttonText = "手机扫一扫"); var buttonHtml = '' + buttonText + ''; $(".tb-cool-quan-action").html(buttonHtml); }; obj.showVersion = function (mode, info, router) { var html; var version = info.version; var latest = info.latest; if (mode == config.mode.script) { html = '[ 配置 ]'; } else { if (latest && latest > version) { html = '[有新版本]'; } else { html = '[ ' + version + ' ]'; } } $(".tb-cool-area-home").html(html); }; obj.showChart = function (itemUrl) { $(".tb-cool-history-tip").html("查询历史价格中..."); api.trendQuery(itemUrl, function (response) { obj.trendData = obj.parseTrendResponse(response); obj.showChartRefresh(); }); }; obj.showChartRefresh = function () { obj.showChartData(obj.trendData); }; obj.showChartData = function (trendData) { if (trendData) { var option = obj.buildChartOption(trendData); $(".tb-cool-area-container").html(''); echarts.init(document.getElementById("tb-cool-area-chart")).setOption(option); $(".tb-cool-history-tip").html(""); } else { $(".tb-cool-history-tip").html("暂无商品历史价格信息"); } }; obj.showCouponList = function (itemId, shopId) { api.couponQueryCart(itemId, shopId, function (content) { var couponList = obj.parseCouponListCart(itemId, shopId, content, {}); if (couponList) { api.couponQueryShop(itemId, shopId, function (response) { couponList = obj.parseCouponListShop(itemId, shopId, response, couponList); obj.showCouponListLoginYes(couponList); }); } else { couponList = obj.parseCouponListPadding(); obj.showCouponListLoginNo(couponList); } }); }; obj.showCouponListLoginYes = function (couponList) { obj.buildCouponListTable(couponList); }; obj.showCouponListLoginNo = function (couponList) { obj.buildCouponListTable(couponList); var loginUrl = obj.buildLoginUrl(); $(".tb-cool-quan-tip").html('登录后可以查看店铺优惠券哦'); $(".tb-cool-area-table").addClass("tb-cool-quan-empty"); }; obj.buildCouponListTable = function (couponList) { var list = Object.values(couponList); var compare = function (a, b) { if (a.coupon_money == b.coupon_money) { if (a.coupon_money_start > b.coupon_money_start) { return 1; } else if (a.coupon_money_start == b.coupon_money_start) { return 0; } else { return -1; } } else { if (a.coupon_money > b.coupon_money) { return 1; } else if (a.coupon_money == b.coupon_money) { return 0; } else { return -1; } } }; list.sort(compare); var html = ""; list.forEach(function (item) { html += "