Authored by 马力

Merge branch 'dev_比价跟价0329' into gray

... ... @@ -79,6 +79,12 @@ if (window.NETSALEDATA) {
$("#tmallUrl").on('change', function() { tmallUrl = $("#tmallUrl").val(); });
$("#jdUrl").on('change', function() { jdUrl = $("#jdUrl").val(); });
$("#save-urlList").on('click', function() {
if(taobaoUrl!="")
if(taobaoUrl.indexOf("item.taobao.com")!=0 && taobaoUrl.indexOf("http:\\item.taobao.com")!=0 && taobaoUrl.indexOf("https:\\item.taobao.com")!=0) {util.__tip("淘宝URL不正确!");return false;}
if(tmallUrl!="")
if(tmallUrl.indexOf("detail.tmall.com")!=0 && tmallUrl.indexOf("http:\\detail.tmall.com")!=0 && tmallUrl.indexOf("https:\\detail.tmall.com")!=0 && tmallUrl.indexOf("item.tmall.com")!=0 && tmallUrl.indexOf("http:\\item.tmall.com")!=0 && tmallUrl.indexOf("https:\\item.tmall.com")!=0) {util.__tip("天猫URL不正确!");return false;}
if(jdUrl!="")
if(jdUrl.indexOf("item.jd.com")!=0 && jdUrl.indexOf("http:\\item.jd.com")!=0 && jdUrl.indexOf("https:\\item.jd.com")!=0) {util.__tip("京东URL不正确!");return false;}
common.util.__ajax({
url: '/netSale/saveProductUrlList',
data: {
... ...