Commit 809a4e5aea4643939f3198f624da33cca76d8002
1 parent
cad38287
fix去除多余数字
Showing
1 changed file
with
3 additions
and
2 deletions
pages/cart/cart/cart.js
... | ... | @@ -1082,6 +1082,7 @@ Page({ |
1082 | 1082 | goods_id: e.service_id, |
1083 | 1083 | id: e.id, |
1084 | 1084 | store_id: oo.stoid, |
1085 | + is_pd_normal: a.is_pd_normal | |
1085 | 1086 | }; |
1086 | 1087 | if(e.prom_type) { |
1087 | 1088 | s.prom_type = e.prom_type; |
... | ... | @@ -1113,7 +1114,7 @@ Page({ |
1113 | 1114 | id: a.id, |
1114 | 1115 | goods_id: a.service_id, |
1115 | 1116 | store_id: oo.stoid, |
1116 | - is_pd_normal: a. is_pd_normal | |
1117 | + is_pd_normal: a.is_pd_normal | |
1117 | 1118 | }; |
1118 | 1119 | if(a.prom_type) { |
1119 | 1120 | e.prom_type = a.prom_type; |
... | ... | @@ -1153,7 +1154,7 @@ Page({ |
1153 | 1154 | id: a.id, |
1154 | 1155 | goods_id: a.service_id, |
1155 | 1156 | store_id: oo.stoid, |
1156 | - is_pd_normal: a. is_pd_normal | |
1157 | + is_pd_normal: a.is_pd_normal | |
1157 | 1158 | }; |
1158 | 1159 | |
1159 | 1160 | this.postCardList_ser(e, t.currentTarget.dataset.item, t.currentTarget.dataset.pitems); | ... | ... |