...
|
...
|
@@ -297,14 +297,12 @@ common.sizeInfo.check(); |
|
|
// 埋点请求
|
|
|
function sknOperateLog(newValue, oldValue, operateType) {
|
|
|
if ((newValue && newValue.trim() != oldValue) || (oldValue != '' && newValue == '')) {
|
|
|
var jsondata = {};
|
|
|
jsondata.new = newValue;
|
|
|
jsondata.old = oldValue;
|
|
|
common.util.__ajax({
|
|
|
url:'/product/addProductOperateLog',
|
|
|
data:{
|
|
|
productSkn:window.NETSALEDATA.baseProductInfo.baseProduct.productSkn,
|
|
|
jsondata : JSON.stringify(jsondata),
|
|
|
updateBeforeValue : oldValue?oldValue:'',
|
|
|
updateAfterValue : newValue?newValue:'',
|
|
|
operateType : operateType
|
|
|
}
|
|
|
},null, true);
|
...
|
...
|
|