Authored by 陈峰

算价调价下架等接口增加attributes字段

... ... @@ -113,7 +113,8 @@ export default {
new_price: price,
old_price: this.skc.price,
num: this.skc.storageNum,
skupType: this.skc.isAdvance === 'Y' ? 4 : 1
skupType: this.skc.isAdvance === 'Y' ? 4 : 1,
attributes: this.skc.attributes
});
if (result && result.code === 200) {
... ...
... ... @@ -69,7 +69,8 @@ export default {
methods: {
onNoSale() {
this.$emit('on-no-sale', Object.assign({
isAdvance: this.value.isAdvance
isAdvance: this.value.isAdvance,
attributes: this.value.attributes
}, this.value.goodsInfo));
this.$root.reportApp('', 'BUSINESS_UFO_SELL_CHANGE', {
... ... @@ -78,7 +79,8 @@ export default {
},
onChgPrice() {
this.$emit('on-change-price', Object.assign({
isAdvance: this.value.isAdvance
isAdvance: this.value.isAdvance,
attributes: this.value.attributes
}, this.value.goodsInfo));
this.$root.reportApp('', 'BUSINESS_UFO_SELL_CHANGE', {
... ...
... ... @@ -171,7 +171,8 @@ export default {
new_price: price,
old_price: skc.price,
num: skc.storageNum,
skupType: skc.isAdvance === 'Y' ? 4 : 1
skupType: skc.isAdvance === 'Y' ? 4 : 1,
attributes: skc.attributes
});
if (result && result.code === 200) {
... ... @@ -194,7 +195,8 @@ export default {
storage_id: skc.storageId,
old_price: skc.price,
num: num,
skupType: skc.isAdvance === 'Y' ? 4 : 1
skupType: skc.isAdvance === 'Y' ? 4 : 1,
attributes: skc.attributes
});
if (result.code === 200) {
... ...