diff --git a/pages/order/components/order-item.vue b/pages/order/components/order-item.vue
index 4e25a80..067d2da 100644
--- a/pages/order/components/order-item.vue
+++ b/pages/order/components/order-item.vue
@@ -29,6 +29,7 @@
{{
item.skuName
}}
+ 备注:{{item.remark}}
-->
- 商品兑换券 {{ returnSelNumber(0) }}
+ 商品兑换券
- 折扣优惠券{{ returnSelNumber(1) }}
+ 折扣优惠券
- 备注:
+ 备注:{{item.cartListinfo.remark||''}}
@@ -120,6 +120,7 @@
import goodsPrice from "@/components/goods-price.vue";
import * as orderUtils from "@/utils/order-utils.js";
import model from './modal.vue'
+ import _ from 'lodash'
const modelData = reactive({
show: false,
item: {
@@ -131,7 +132,7 @@
function editRemark(item) {
console.log('editRemark', item)
- modelData.item = item
+ modelData.item = _.cloneDeep(item)
modelData.show = true
}
diff --git a/pages/product/index.vue b/pages/product/index.vue
index 86b51b7..2cc6f57 100644
--- a/pages/product/index.vue
+++ b/pages/product/index.vue
@@ -1154,7 +1154,7 @@
return;
}
let res = await shoppingcart();
-
+
if ((specifications.item.type == 'package' && allConditionsSatisfied.value) || (specifications.item.type ==
'sku' && canSubmit.value)) {
// 是否是套餐 有就传
@@ -1181,7 +1181,7 @@
memberPrice: specifications.item.memberPrice,
is_print: 1,
product_type: specifications.item.type,
- is_time_discount: specifications.item.is_time_discount
+ is_time_discount: specifications.item.is_time_discount,
});
// 清空套餐选中
selectedGroupSnap.value = [];
@@ -1201,7 +1201,7 @@
memberPrice: specifications.item.memberPrice,
is_print: 1,
product_type: specifications.item.type,
- is_time_discount: specifications.item.is_time_discount
+ is_time_discount: specifications.item.is_time_discount,
});
showShopsku.value = false;