Merged
Merge Request #617 · created by 后端研发-苏明海


接口参数要urlencode


From dev into test

Merged by 后端研发-苏明海

1 participants

pages/cart/cart/cart.js
@@ -354,7 +354,7 @@ Page({ @@ -354,7 +354,7 @@ Page({
354 store_id:os.stoid, 354 store_id:os.stoid,
355 PickupId:list.pid, 355 PickupId:list.pid,
356 WareIds:wlist, 356 WareIds:wlist,
357 - VIPId: userInfo.erpvipid 357 + VIPId:encodeURIComponent(userInfo.erpvipid)
358 } 358 }
359 }).then(res => { 359 }).then(res => {
360 if(res.data.code==0 && res.data.data && res.data.data.length>0){ 360 if(res.data.code==0 && res.data.data && res.data.data.length>0){