Commit e30db7c2d7d5b33070db5808a5f61dcd1efa8e7b

Authored by yvan.ni
1 parent e1e61b18

提示的优化

components/add_purchase/add_purchase.js
... ... @@ -3060,7 +3060,7 @@ Component({
3060 3060 wx.hideLoading();
3061 3061 wx.showModal({
3062 3062 title: '温馨提示',
3063   - content: '当前商品已在购物车,是否替换参与该活动?',
  3063 + content: '当前商品已在购物车,是否替换参与该活动?',
3064 3064 success(res) {
3065 3065 if (res.confirm) {
3066 3066 wx.showLoading();
... ...
packageB/pages/zuhegou/index/index.js
... ... @@ -2537,7 +2537,7 @@ Page({
2537 2537  
2538 2538 wx.showModal({
2539 2539 title: '温馨提示',
2540   - content: '当前商品已在购物车,是否替换参与该活动?',
  2540 + content: '当前商品已在购物车,是否替换参与该活动?',
2541 2541 success(res) {
2542 2542 if (res.confirm) {
2543 2543 th.check_is_in_cart_next(item);
... ...
packageG/pages/user/order_detail/order_detail.js
... ... @@ -2300,7 +2300,7 @@ Page({
2300 2300  
2301 2301 //如果购物车中商品zh_prom_id不一致的话,要进行提示
2302 2302 if(is_has.zh_prom_id>0 && is_has.zh_prom_id!= newd['zh_prom_id'] ){
2303   - zh_prom_id_err.push(newd.goods_name+ '已在购物车\n');
  2303 + zh_prom_id_err.push(newd.goods_name+ '已在购物车\n');
2304 2304 zh_prom_id_err_goods.push(updata);
2305 2305 continue;
2306 2306 }
... ...
pages/goods/goodsInfo/goodsInfo.js
... ... @@ -2243,7 +2243,7 @@ Page({
2243 2243 wx.hideLoading();
2244 2244 wx.showModal({
2245 2245 title: '温馨提示',
2246   - content: '当前商品已在购物车,是否替换参与该活动?',
  2246 + content: '当前商品已在购物车,是否替换参与该活动?',
2247 2247 success(res) {
2248 2248 if (res.confirm) {
2249 2249 wx.showLoading();
... ...
pages/user/order_list/order_list.js
... ... @@ -2627,7 +2627,7 @@ Page({
2627 2627  
2628 2628 //如果购物车中商品zh_prom_id不一致的话,要进行提示
2629 2629 if(is_has.zh_prom_id>0 && is_has.zh_prom_id!= newd['zh_prom_id'] ){
2630   - zh_prom_id_err.push(newd.goods_name+ '已在购物车\n');
  2630 + zh_prom_id_err.push(newd.goods_name+ '已在购物车\n');
2631 2631 zh_prom_id_err_goods.push(updata);
2632 2632 continue;
2633 2633 }
... ...