Authored by mali

2.商品库存信息—库存详情,希望优化可以跳出二级页面。新建标签页

... ... @@ -279,7 +279,8 @@
function productPoolDetails(poolId) {
//window.self.paramObject.poolId = poolId;
//console.log(window.self.paramObject.poolId);
this.location.href = contextPath + "/html/commodityManage/commodityPoolManage/commodityPoolDetail.html?poolId=" + poolId + '&time_version=' + new Date().getTime();
window.open(contextPath + "/html/commodityManage/commodityPoolManage/commodityPoolDetail.html?poolId=" + poolId + '&time_version=' + new Date().getTime());
//this.location.href = contextPath + "/html/commodityManage/commodityPoolManage/commodityPoolDetail.html?poolId=" + poolId + '&time_version=' + new Date().getTime();
}
... ...
... ... @@ -331,11 +331,13 @@
// 跳转编辑页
function detailStorage(id, midSortId) {
this.location.href = contextPath
var hrefArr = contextPath
+ "/html/goods/storageLineShops/storageLineShopsDetail.html?productId=" + id
+ "&midSortId=" + midSortId
+ "&time_version=" + new Date().getTime()
+ "&sellerUid=" + paramSellerUid;
window.open(hrefArr);
}
}())
... ...
... ... @@ -101,7 +101,8 @@
onClick: function () {
var id = $(this).attr("dataId");
var userName=$(this).attr("dataName");
window.location.href = contextPath + "/html/merchantManage/margin/marginDetailList.html?" + id+"&"+userName+"&" + new Date().getTime();
window.open(contextPath + "/html/merchantManage/margin/marginDetailList.html?" + id+"&"+userName+"&" + new Date().getTime());
//window.location.href = contextPath + "/html/merchantManage/margin/marginDetailList.html?" + id+"&"+userName+"&" + new Date().getTime();
}
});
}
... ...