Commit 9bc21183aab30b6491b9a47a9d55ae69fe9bc00a
1 parent
686e1217
OA单的优化
Showing
12 changed files
with
81 additions
and
42 deletions
packageA/pages/myGift/myGift.js
@@ -16,6 +16,7 @@ Page({ | @@ -16,6 +16,7 @@ Page({ | ||
16 | isLoading: false, // 检测是否已经发送请求,防止重复发送请求 | 16 | isLoading: false, // 检测是否已经发送请求,防止重复发送请求 |
17 | noMore: false, // 检测是否有更多数据,true为没有更多数据,false为还有数据 | 17 | noMore: false, // 检测是否有更多数据,true为没有更多数据,false为还有数据 |
18 | pageNum: 1, // 当前页数 | 18 | pageNum: 1, // 当前页数 |
19 | + iurl: os.imghost, //图片前缀网址 | ||
19 | }, | 20 | }, |
20 | 21 | ||
21 | clickTab(e) { | 22 | clickTab(e) { |
@@ -40,7 +41,8 @@ Page({ | @@ -40,7 +41,8 @@ Page({ | ||
40 | url = '/api/weshop/libao/libaoFormvip/page'; | 41 | url = '/api/weshop/libao/libaoFormvip/page'; |
41 | }; | 42 | }; |
42 | 43 | ||
43 | - this.getData(true, url, data); | 44 | + this.getData(true, url, data); |
45 | + | ||
44 | }, | 46 | }, |
45 | 47 | ||
46 | /** | 48 | /** |
@@ -56,6 +58,23 @@ Page({ | @@ -56,6 +58,23 @@ Page({ | ||
56 | userInfo: data, | 58 | userInfo: data, |
57 | }); | 59 | }); |
58 | }); | 60 | }); |
61 | + | ||
62 | + getApp().request.promiseGet("/api/weshop/ad/page?pid=901&store_id=" + os.stoid, { | ||
63 | + data: { | ||
64 | + enabled: 1 | ||
65 | + } | ||
66 | + }).then(res => { | ||
67 | + if (res.data.code == 0 && res.data.data && res.data.data.pageData && res.data.data.pageData.length > 0) { | ||
68 | + var a = res.data.data.pageData; | ||
69 | + var tt = { | ||
70 | + 'ad_code': os.imghost + a[0].ad_code, | ||
71 | + 'media_link': '', | ||
72 | + 'ad_weapplink': a[0].ad_weapplink, | ||
73 | + 'bgcolor': a[0].bgcolor, | ||
74 | + }; | ||
75 | + self.setData({ ad_data: tt }); | ||
76 | + } | ||
77 | + }) | ||
59 | }, | 78 | }, |
60 | 79 | ||
61 | /** | 80 | /** |
packageA/pages/myGift/myGift.wxml
1 | <wxs module="filter" src="../../../utils/filter.wxs"></wxs> | 1 | <wxs module="filter" src="../../../utils/filter.wxs"></wxs> |
2 | <view> | 2 | <view> |
3 | + | ||
4 | + <block wx:if="{{ad_data}}"> | ||
5 | + <view class="top_img"> | ||
6 | + <image mode="widthFix" src="{{ad_data.ad_code}}" lazy-load="true" | ||
7 | + binderror="bind_bnerr2" data-errorimg="wareCard[{{index}}].lbUrl"></image> | ||
8 | + </view> | ||
9 | + </block> | ||
10 | + <block wx:else> | ||
11 | + <view class="top_img"> | ||
12 | + <!-- <image src="{{$GetInfo.imgHttp+'/miniapp/images/giftbag/gift00.jpg'}}"></image> --> | ||
13 | + <image src="{{iurl+'/miniapp/images/giftbag/gift00.jpg?v=2019'}}" lazy-load="true"></image> | ||
14 | + </view> | ||
15 | + </block> | ||
16 | + | ||
17 | + | ||
3 | <view class="tab-title" bindtap="clickTab"> | 18 | <view class="tab-title" bindtap="clickTab"> |
4 | <view class="tab-title-item {{currentIndex == index ? 'active':''}}" wx:for="{{tabArr}}" data-index="{{index}}">{{item}}</view> | 19 | <view class="tab-title-item {{currentIndex == index ? 'active':''}}" wx:for="{{tabArr}}" data-index="{{index}}">{{item}}</view> |
5 | </view> | 20 | </view> |
@@ -31,7 +46,7 @@ | @@ -31,7 +46,7 @@ | ||
31 | </block> | 46 | </block> |
32 | </block> | 47 | </block> |
33 | </view> | 48 | </view> |
34 | - <view class="fs22 c-a4 line-through mgl10">零售价{{filter.toFix(item.oldprice,2)}}</view> | 49 | +<!-- <view class="fs22 c-a4 line-through mgl10">零售价{{filter.toFix(item.oldprice,2)}}</view>--> |
35 | </view> | 50 | </view> |
36 | <view class="fs24 c-a4">已售{{item.salenum+item.virtualsales}}件</view> | 51 | <view class="fs24 c-a4">已售{{item.salenum+item.virtualsales}}件</view> |
37 | </view> | 52 | </view> |
packageA/pages/myGift/myGift.wxss
packageA/pages/myGiftDetails/myGiftDetails.wxml
@@ -36,7 +36,7 @@ | @@ -36,7 +36,7 @@ | ||
36 | </block> | 36 | </block> |
37 | 37 | ||
38 | </view> | 38 | </view> |
39 | - <view class="fs22 c-a4 line-through mgl10">零售价{{filter.toFix(details.oldprice,2)}}</view> | 39 | +<!-- <view class="fs22 c-a4 line-through mgl10">零售价{{filter.toFix(details.oldprice,2)}}</view>--> |
40 | </view> | 40 | </view> |
41 | <view class="fs24 c-a4" wx:if="{{!is_not_start}}">已售{{details.salenum+details.virtualsales}}件</view> | 41 | <view class="fs24 c-a4" wx:if="{{!is_not_start}}">已售{{details.salenum+details.virtualsales}}件</view> |
42 | </view> | 42 | </view> |
packageB/pages/user/collect_list/collect_list.wxml
@@ -49,10 +49,10 @@ | @@ -49,10 +49,10 @@ | ||
49 | <view class="fs40">{{item.prom_price?item.prom_price:item.final_price}}</view> | 49 | <view class="fs40">{{item.prom_price?item.prom_price:item.final_price}}</view> |
50 | </view> | 50 | </view> |
51 | <!-- 原价 --> | 51 | <!-- 原价 --> |
52 | - <view class="flex fs24 line through xc-ash"> | ||
53 | - <view>零售价:</view> | ||
54 | - <view>¥{{item.market_price}}</view> | ||
55 | - </view> | 52 | +<!-- <view class="flex fs24 line through xc-ash">--> |
53 | +<!-- <view>零售价:</view>--> | ||
54 | +<!-- <view>¥{{item.market_price}}</view>--> | ||
55 | +<!-- </view>--> | ||
56 | </view> | 56 | </view> |
57 | 57 | ||
58 | <view class="money_right flex line" wx:if="{{!editEd}}"> | 58 | <view class="money_right flex line" wx:if="{{!editEd}}"> |
packageB/pages/zuhegou/index/index.js
@@ -1099,6 +1099,7 @@ Page({ | @@ -1099,6 +1099,7 @@ Page({ | ||
1099 | goods_price: newd.goods_price, | 1099 | goods_price: newd.goods_price, |
1100 | member_goods_price: newd.goods_price, | 1100 | member_goods_price: newd.goods_price, |
1101 | store_id: os.stoid, | 1101 | store_id: os.stoid, |
1102 | + state:0 | ||
1102 | }; | 1103 | }; |
1103 | if (th.data.s_cart_num) { | 1104 | if (th.data.s_cart_num) { |
1104 | updata.goods_num = th.data.s_cart_num; | 1105 | updata.goods_num = th.data.s_cart_num; |
@@ -1889,6 +1890,7 @@ Page({ | @@ -1889,6 +1890,7 @@ Page({ | ||
1889 | goods_price: cur_price, | 1890 | goods_price: cur_price, |
1890 | prom_id: th.data.act.id, | 1891 | prom_id: th.data.act.id, |
1891 | store_id: os.stoid, | 1892 | store_id: os.stoid, |
1893 | + state:0 | ||
1892 | }; | 1894 | }; |
1893 | if (getApp().globalData.guide_id) { | 1895 | if (getApp().globalData.guide_id) { |
1894 | updata['guide_id'] = getApp().globalData.guide_id; | 1896 | updata['guide_id'] = getApp().globalData.guide_id; |
pages/giftpack/buygiftpack/giftpackbuy.wxml
@@ -47,9 +47,9 @@ | @@ -47,9 +47,9 @@ | ||
47 | </view> | 47 | </view> |
48 | </block> | 48 | </block> |
49 | </view> | 49 | </view> |
50 | - <view class="content_ware_price"> | ||
51 | - <text class="ellipsis-1">{{"零售价:¥"+items.giftPosPrice}}</text> | ||
52 | - </view> | 50 | +<!-- <view class="content_ware_price">--> |
51 | +<!-- <text class="ellipsis-1">{{"零售价:¥"+items.giftPosPrice}}</text>--> | ||
52 | +<!-- </view>--> | ||
53 | <view wx:if="{{items.is_show && now < items.starTime1 }}" class="content_ware_time"> | 53 | <view wx:if="{{items.is_show && now < items.starTime1 }}" class="content_ware_time"> |
54 | <text class="ellipsis-1">{{"活动开始时间:"+items.starTime}}</text> | 54 | <text class="ellipsis-1">{{"活动开始时间:"+items.starTime}}</text> |
55 | </view> | 55 | </view> |
pages/giftpack/giftpacklist/giftpacklist.wxml
@@ -48,9 +48,9 @@ | @@ -48,9 +48,9 @@ | ||
48 | </block> | 48 | </block> |
49 | </view> | 49 | </view> |
50 | <view class="top_foot data-v-3a5b7e36"> | 50 | <view class="top_foot data-v-3a5b7e36"> |
51 | - <view class="top_foot_price data-v-3a5b7e36"> | ||
52 | - <text class="data-v-3a5b7e36">{{"零售价:"+giftPosPrice+"元"}}</text> | ||
53 | - </view> | 51 | +<!-- <view class="top_foot_price data-v-3a5b7e36">--> |
52 | +<!-- <text class="data-v-3a5b7e36">{{"零售价:"+giftPosPrice+"元"}}</text>--> | ||
53 | +<!-- </view>--> | ||
54 | <view class="top_foot_qty data-v-3a5b7e36"> | 54 | <view class="top_foot_qty data-v-3a5b7e36"> |
55 | <text class="data-v-3a5b7e36" wx:if="{{!flag}}">{{"已售:"+giftQty+"件"}}</text> | 55 | <text class="data-v-3a5b7e36" wx:if="{{!flag}}">{{"已售:"+giftQty+"件"}}</text> |
56 | <text class="data-v-3a5b7e36" wx:elif="{{flag == 1 && giftQty > 0}}">{{"数量:"+giftQty+"件"}}</text> | 56 | <text class="data-v-3a5b7e36" wx:elif="{{flag == 1 && giftQty > 0}}">{{"数量:"+giftQty+"件"}}</text> |
pages/giftpack/mygiftpack/mygiftpack.wxml
1 | <view class="top_img" style="background-color: {{ad_data?ad_data.bgcolor:'rgb(250, 120, 88)'}};"> | 1 | <view class="top_img" style="background-color: {{ad_data?ad_data.bgcolor:'rgb(250, 120, 88)'}};"> |
2 | <block wx:if="{{ad_data}}"> | 2 | <block wx:if="{{ad_data}}"> |
3 | <view class="top_img"> | 3 | <view class="top_img"> |
4 | - <image src="{{ad_data.ad_code}}" lazy-load="true" binderror="bind_bnerr2" data-errorimg="wareCard[{{index}}].lbUrl"></image> | 4 | + <image mode="widthFix" src="{{ad_data.ad_code}}" lazy-load="true" binderror="bind_bnerr2" data-errorimg="wareCard[{{index}}].lbUrl"></image> |
5 | </view> | 5 | </view> |
6 | </block> | 6 | </block> |
7 | <block wx:else> | 7 | <block wx:else> |
8 | <view class="top_img"> | 8 | <view class="top_img"> |
9 | <!-- <image src="{{$GetInfo.imgHttp+'/miniapp/images/giftbag/gift00.jpg'}}"></image> --> | 9 | <!-- <image src="{{$GetInfo.imgHttp+'/miniapp/images/giftbag/gift00.jpg'}}"></image> --> |
10 | - <image src="{{iurl+'/miniapp/images/giftbag/gift00.jpg?v=2019'}}" lazy-load="true"></image> | 10 | + <image mode="widthFix" src="{{iurl+'/miniapp/images/giftbag/gift00.jpg?v=2019'}}" lazy-load="true"></image> |
11 | </view> | 11 | </view> |
12 | </block> | 12 | </block> |
13 | 13 | ||
@@ -78,9 +78,9 @@ | @@ -78,9 +78,9 @@ | ||
78 | <text>{{item.actTitle}}</text> | 78 | <text>{{item.actTitle}}</text> |
79 | </block> | 79 | </block> |
80 | </view> | 80 | </view> |
81 | - <view class="content_ware_price"> | ||
82 | - <text>{{"零售价:¥"+item.giftPosPrice}}</text> | ||
83 | - </view> | 81 | +<!-- <view class="content_ware_price">--> |
82 | +<!-- <text>{{"零售价:¥"+item.giftPosPrice}}</text>--> | ||
83 | +<!-- </view>--> | ||
84 | 84 | ||
85 | <view class="content_ware_time" wx:if="{{item.iswarelbtype==1}}"> | 85 | <view class="content_ware_time" wx:if="{{item.iswarelbtype==1}}"> |
86 | <block wx:if="{{getDate>item.endTime}}"> | 86 | <block wx:if="{{getDate>item.endTime}}"> |
pages/goods/categoryList/categoryList.wxml
@@ -546,7 +546,7 @@ | @@ -546,7 +546,7 @@ | ||
546 | <text wx:if="{{item.prom_integral && item.prom_price}}">+</text> | 546 | <text wx:if="{{item.prom_integral && item.prom_price}}">+</text> |
547 | <text wx:if="{{item.prom_price}}" class="rmb">{{item.prom_price}}</text> | 547 | <text wx:if="{{item.prom_price}}" class="rmb">{{item.prom_price}}</text> |
548 | </view> | 548 | </view> |
549 | - <view class="word-line xc-ash rmb mgl10 fs24">{{item.market_price}}</view> | 549 | +<!-- <view class="word-line xc-ash rmb mgl10 fs24">{{item.market_price}}</view>--> |
550 | </view> | 550 | </view> |
551 | 551 | ||
552 | <view class="comment"> | 552 | <view class="comment"> |
@@ -575,7 +575,7 @@ | @@ -575,7 +575,7 @@ | ||
575 | </view> | 575 | </view> |
576 | </view> | 576 | </view> |
577 | <view class="comment flex jc_sb"> | 577 | <view class="comment flex jc_sb"> |
578 | - <view class="word-line xc-ash rmb fs24">{{item.market_price}}</view> | 578 | +<!-- <view class="word-line xc-ash rmb fs24">{{item.market_price}}</view>--> |
579 | <view class="fs22 pdt10 t-r"> | 579 | <view class="fs22 pdt10 t-r"> |
580 | <span>评论{{item.comment_count}}</span> | 580 | <span>评论{{item.comment_count}}</span> |
581 | <span class="pdl30">已售{{item.sales_sum}}</span> | 581 | <span class="pdl30">已售{{item.sales_sum}}</span> |
@@ -585,7 +585,7 @@ | @@ -585,7 +585,7 @@ | ||
585 | <block wx:else> | 585 | <block wx:else> |
586 | <view class="flex ai-center"> | 586 | <view class="flex ai-center"> |
587 | <view class="price rmb">{{item.shop_price}}</view> | 587 | <view class="price rmb">{{item.shop_price}}</view> |
588 | - <view class="word-line xc-ash rmb fs24 mgl10">{{item.market_price}}</view> | 588 | +<!-- <view class="word-line xc-ash rmb fs24 mgl10">{{item.market_price}}</view>--> |
589 | </view> | 589 | </view> |
590 | 590 | ||
591 | <view class="comment"> | 591 | <view class="comment"> |
@@ -601,7 +601,7 @@ | @@ -601,7 +601,7 @@ | ||
601 | <block wx:if="{{g_filter.get_card_price(item,card_list,0)}}"> | 601 | <block wx:if="{{g_filter.get_card_price(item,card_list,0)}}"> |
602 | <view class="flex ai-center"> | 602 | <view class="flex ai-center"> |
603 | <view class="price rmb">{{item.shop_price}}</view> | 603 | <view class="price rmb">{{item.shop_price}}</view> |
604 | - <view class="word-line xc-ash mk_price rmb fs24 mgl10">{{item.market_price}}</view> | 604 | +<!-- <view class="word-line xc-ash mk_price rmb fs24 mgl10">{{item.market_price}}</view>--> |
605 | </view> | 605 | </view> |
606 | <view class="comment"> | 606 | <view class="comment"> |
607 | <view class="flex ai-center"> | 607 | <view class="flex ai-center"> |
@@ -623,7 +623,7 @@ | @@ -623,7 +623,7 @@ | ||
623 | <block wx:else> | 623 | <block wx:else> |
624 | <view class="flex ai-center"> | 624 | <view class="flex ai-center"> |
625 | <view class="price rmb">{{item.shop_price}}</view> | 625 | <view class="price rmb">{{item.shop_price}}</view> |
626 | - <view class="word-line xc-ash rmb fs24 mgl10">{{item.market_price}}</view> | 626 | +<!-- <view class="word-line xc-ash rmb fs24 mgl10">{{item.market_price}}</view>--> |
627 | </view> | 627 | </view> |
628 | <!-- <view class="price">¥{{item.shop_price}}</view> --> | 628 | <!-- <view class="price">¥{{item.shop_price}}</view> --> |
629 | <view class="comment"> | 629 | <view class="comment"> |
@@ -639,7 +639,7 @@ | @@ -639,7 +639,7 @@ | ||
639 | <block wx:else> | 639 | <block wx:else> |
640 | <view class="flex ai-center"> | 640 | <view class="flex ai-center"> |
641 | <view class="price rmb">{{item.shop_price}}</view> | 641 | <view class="price rmb">{{item.shop_price}}</view> |
642 | - <view class="word-line xc-ash rmb fs24 mgl10">{{item.market_price}}</view> | 642 | +<!-- <view class="word-line xc-ash rmb fs24 mgl10">{{item.market_price}}</view>--> |
643 | </view> | 643 | </view> |
644 | <!-- <view class="price">¥{{item.shop_price}}</view> --> | 644 | <!-- <view class="price">¥{{item.shop_price}}</view> --> |
645 | <view class="comment"> | 645 | <view class="comment"> |
pages/goods/goodsList/goodsList.wxml
@@ -74,7 +74,7 @@ | @@ -74,7 +74,7 @@ | ||
74 | <text wx:if="{{item.prom_integral && item.prom_price}}">+</text> | 74 | <text wx:if="{{item.prom_integral && item.prom_price}}">+</text> |
75 | <text wx:if="{{item.prom_price}}" class="rmb">{{item.prom_price}}</text> | 75 | <text wx:if="{{item.prom_price}}" class="rmb">{{item.prom_price}}</text> |
76 | </view> | 76 | </view> |
77 | - <view class="word-line xc-ash mgl10 rmb fs24">{{item.market_price}}</view> | 77 | +<!-- <view class="word-line xc-ash mgl10 rmb fs24">{{item.market_price}}</view>--> |
78 | </view> | 78 | </view> |
79 | 79 | ||
80 | 80 | ||
@@ -101,7 +101,7 @@ | @@ -101,7 +101,7 @@ | ||
101 | </view> | 101 | </view> |
102 | </view> | 102 | </view> |
103 | <view class="comment"> | 103 | <view class="comment"> |
104 | - <view class="word-line xc-ash rmb">{{item.market_price}}</view> | 104 | +<!-- <view class="word-line xc-ash rmb">{{item.market_price}}</view>--> |
105 | <view class="fs24 t-r"> | 105 | <view class="fs24 t-r"> |
106 | <span>评论{{item.comment_count}}</span> | 106 | <span>评论{{item.comment_count}}</span> |
107 | <span class="pdl30">已售{{item.sales_sum}}</span> | 107 | <span class="pdl30">已售{{item.sales_sum}}</span> |
@@ -111,7 +111,7 @@ | @@ -111,7 +111,7 @@ | ||
111 | <block wx:else> | 111 | <block wx:else> |
112 | <view class="price rmb">{{item.shop_price}}</view> | 112 | <view class="price rmb">{{item.shop_price}}</view> |
113 | <view class="comment"> | 113 | <view class="comment"> |
114 | - <view class="word-line xc-ash rmb">{{item.market_price}}</view> | 114 | +<!-- <view class="word-line xc-ash rmb">{{item.market_price}}</view>--> |
115 | <view class="fs24 t-r"> | 115 | <view class="fs24 t-r"> |
116 | <span>评论{{item.comment_count}}</span> | 116 | <span>评论{{item.comment_count}}</span> |
117 | <span class="pdl30">已售{{item.sales_sum}}</span> | 117 | <span class="pdl30">已售{{item.sales_sum}}</span> |
@@ -123,7 +123,7 @@ | @@ -123,7 +123,7 @@ | ||
123 | <view wx:if="{{g_filter.get_card_price(item,card_list,0) && is_no_plus}}"> | 123 | <view wx:if="{{g_filter.get_card_price(item,card_list,0) && is_no_plus}}"> |
124 | <view class="flex ai-center"> | 124 | <view class="flex ai-center"> |
125 | <view class="price rmb">{{item.shop_price}}</view> | 125 | <view class="price rmb">{{item.shop_price}}</view> |
126 | - <view class="word-line xc-ash mk_price rmb">{{item.market_price}}</view> | 126 | +<!-- <view class="word-line xc-ash mk_price rmb">{{item.market_price}}</view>--> |
127 | </view> | 127 | </view> |
128 | <view class="comment"> | 128 | <view class="comment"> |
129 | <view class="flex ai-center"> | 129 | <view class="flex ai-center"> |
@@ -142,7 +142,7 @@ | @@ -142,7 +142,7 @@ | ||
142 | <block wx:else> | 142 | <block wx:else> |
143 | <view> | 143 | <view> |
144 | <view class="price rmb">{{item.shop_price}}</view> | 144 | <view class="price rmb">{{item.shop_price}}</view> |
145 | - <view class="word-line xc-ash rmb">{{item.market_price}}</view> | 145 | +<!-- <view class="word-line xc-ash rmb">{{item.market_price}}</view>--> |
146 | </view> | 146 | </view> |
147 | <!-- <view class="price">¥{{item.shop_price}}</view> --> | 147 | <!-- <view class="price">¥{{item.shop_price}}</view> --> |
148 | <view class="comment pdt10"> | 148 | <view class="comment pdt10"> |
@@ -157,7 +157,7 @@ | @@ -157,7 +157,7 @@ | ||
157 | <view wx:else> | 157 | <view wx:else> |
158 | <view class="flex ai-center"> | 158 | <view class="flex ai-center"> |
159 | <view class="price rmb">{{item.shop_price}}</view> | 159 | <view class="price rmb">{{item.shop_price}}</view> |
160 | - <view class="word-line xc-ash rmb fs24 mgl10">{{item.market_price}}</view> | 160 | +<!-- <view class="word-line xc-ash rmb fs24 mgl10">{{item.market_price}}</view>--> |
161 | </view> | 161 | </view> |
162 | 162 | ||
163 | <view class="comment pdt10"> | 163 | <view class="comment pdt10"> |
@@ -189,7 +189,7 @@ | @@ -189,7 +189,7 @@ | ||
189 | <text wx:if="{{item.prom_integral && item.prom_price}}">+</text> | 189 | <text wx:if="{{item.prom_integral && item.prom_price}}">+</text> |
190 | <text wx:if="{{item.prom_price}}" class="rmb">{{item.prom_price}}</text> | 190 | <text wx:if="{{item.prom_price}}" class="rmb">{{item.prom_price}}</text> |
191 | </view> | 191 | </view> |
192 | - <view class="word-line xc-ash mgl10 rmb fs24">{{item.market_price}}</view> | 192 | +<!-- <view class="word-line xc-ash mgl10 rmb fs24">{{item.market_price}}</view>--> |
193 | </view> | 193 | </view> |
194 | 194 | ||
195 | 195 | ||
@@ -216,7 +216,7 @@ | @@ -216,7 +216,7 @@ | ||
216 | </view> | 216 | </view> |
217 | </view> | 217 | </view> |
218 | <view class="comment"> | 218 | <view class="comment"> |
219 | - <view class="word-line xc-ash rmb">{{item.market_price}}</view> | 219 | +<!-- <view class="word-line xc-ash rmb">{{item.market_price}}</view>--> |
220 | <view class="fs24 t-r"> | 220 | <view class="fs24 t-r"> |
221 | <span>评论{{item.comment_count}}</span> | 221 | <span>评论{{item.comment_count}}</span> |
222 | <span class="pdl30">已售{{item.sales_sum}}</span> | 222 | <span class="pdl30">已售{{item.sales_sum}}</span> |
@@ -226,7 +226,7 @@ | @@ -226,7 +226,7 @@ | ||
226 | <block wx:else> | 226 | <block wx:else> |
227 | <view class="price rmb">{{item.shop_price}}</view> | 227 | <view class="price rmb">{{item.shop_price}}</view> |
228 | <view class="comment"> | 228 | <view class="comment"> |
229 | - <view class="word-line xc-ash rmb">{{item.market_price}}</view> | 229 | +<!-- <view class="word-line xc-ash rmb">{{item.market_price}}</view>--> |
230 | <view class="fs24 t-r"> | 230 | <view class="fs24 t-r"> |
231 | <span>评论{{item.comment_count}}</span> | 231 | <span>评论{{item.comment_count}}</span> |
232 | <span class="pdl30">已售{{item.sales_sum}}</span> | 232 | <span class="pdl30">已售{{item.sales_sum}}</span> |
@@ -238,7 +238,7 @@ | @@ -238,7 +238,7 @@ | ||
238 | <view wx:if="{{g_filter.get_card_price(item,card_list,0) && is_no_plus}}"> | 238 | <view wx:if="{{g_filter.get_card_price(item,card_list,0) && is_no_plus}}"> |
239 | <view class="flex ai-center"> | 239 | <view class="flex ai-center"> |
240 | <view class="price rmb">{{item.shop_price}}</view> | 240 | <view class="price rmb">{{item.shop_price}}</view> |
241 | - <view class="word-line xc-ash mk_price rmb">{{item.market_price}}</view> | 241 | +<!-- <view class="word-line xc-ash mk_price rmb">{{item.market_price}}</view>--> |
242 | </view> | 242 | </view> |
243 | <view class="comment"> | 243 | <view class="comment"> |
244 | <view class="flex ai-center"> | 244 | <view class="flex ai-center"> |
@@ -257,7 +257,7 @@ | @@ -257,7 +257,7 @@ | ||
257 | <block wx:else> | 257 | <block wx:else> |
258 | <view> | 258 | <view> |
259 | <view class="price rmb">{{item.shop_price}}</view> | 259 | <view class="price rmb">{{item.shop_price}}</view> |
260 | - <view class="word-line xc-ash rmb">{{item.market_price}}</view> | 260 | +<!-- <view class="word-line xc-ash rmb">{{item.market_price}}</view>--> |
261 | </view> | 261 | </view> |
262 | <!-- <view class="price">¥{{item.shop_price}}</view> --> | 262 | <!-- <view class="price">¥{{item.shop_price}}</view> --> |
263 | <view class="comment pdt10"> | 263 | <view class="comment pdt10"> |
@@ -272,7 +272,7 @@ | @@ -272,7 +272,7 @@ | ||
272 | <view wx:else> | 272 | <view wx:else> |
273 | <view class=""> | 273 | <view class=""> |
274 | <view class="price rmb">{{item.shop_price}}</view> | 274 | <view class="price rmb">{{item.shop_price}}</view> |
275 | - <view class="word-line xc-ash rmb fs24 mgl10">{{item.market_price}}</view> | 275 | +<!-- <view class="word-line xc-ash rmb fs24 mgl10">{{item.market_price}}</view>--> |
276 | </view> | 276 | </view> |
277 | 277 | ||
278 | <view class="comment pdt10"> | 278 | <view class="comment pdt10"> |
pages/goods/search/search.wxml
@@ -91,7 +91,7 @@ | @@ -91,7 +91,7 @@ | ||
91 | <text wx:if="{{item.prom_price}}">¥{{item.prom_price}}</text> | 91 | <text wx:if="{{item.prom_price}}">¥{{item.prom_price}}</text> |
92 | </view> | 92 | </view> |
93 | <view class="comment flex jc_sb"> | 93 | <view class="comment flex jc_sb"> |
94 | - <view class="word-line xc-ash">¥{{item.market_price}}</view> | 94 | +<!-- <view class="word-line xc-ash">¥{{item.market_price}}</view>--> |
95 | <view>评论{{item.comment_count}} 已售{{item.sales_sum}}</view> | 95 | <view>评论{{item.comment_count}} 已售{{item.sales_sum}}</view> |
96 | </view> | 96 | </view> |
97 | </block> | 97 | </block> |
@@ -111,14 +111,14 @@ | @@ -111,14 +111,14 @@ | ||
111 | </view> | 111 | </view> |
112 | </view> | 112 | </view> |
113 | <view class="comment flex jc_sb"> | 113 | <view class="comment flex jc_sb"> |
114 | - <view class="word-line xc-ash">¥{{item.market_price}}</view> | 114 | +<!-- <view class="word-line xc-ash">¥{{item.market_price}}</view>--> |
115 | <view>评论{{item.comment_count}} 已售{{item.sales_sum}}</view> | 115 | <view>评论{{item.comment_count}} 已售{{item.sales_sum}}</view> |
116 | </view> | 116 | </view> |
117 | </block> | 117 | </block> |
118 | <block wx:else> | 118 | <block wx:else> |
119 | <view class="price">¥{{item.shop_price}}</view> | 119 | <view class="price">¥{{item.shop_price}}</view> |
120 | <view class="comment flex jc_sb"> | 120 | <view class="comment flex jc_sb"> |
121 | - <view class="word-line xc-ash">¥{{item.market_price}}</view> | 121 | +<!-- <view class="word-line xc-ash">¥{{item.market_price}}</view>--> |
122 | <view>评论{{item.comment_count}} 已售{{item.sales_sum}}</view> | 122 | <view>评论{{item.comment_count}} 已售{{item.sales_sum}}</view> |
123 | </view> | 123 | </view> |
124 | </block> | 124 | </block> |
@@ -127,7 +127,7 @@ | @@ -127,7 +127,7 @@ | ||
127 | <block wx:if="{{g_filter.get_card_price(item,card_list,0) && is_no_plus}}"> | 127 | <block wx:if="{{g_filter.get_card_price(item,card_list,0) && is_no_plus}}"> |
128 | <view class="flex ai-center"> | 128 | <view class="flex ai-center"> |
129 | <view class="price">¥{{item.shop_price}}</view> | 129 | <view class="price">¥{{item.shop_price}}</view> |
130 | - <view class="word-line xc-ash mk_price">¥{{item.market_price}}</view> | 130 | +<!-- <view class="word-line xc-ash mk_price">¥{{item.market_price}}</view>--> |
131 | </view> | 131 | </view> |
132 | <view class="comment flex jc_sb"> | 132 | <view class="comment flex jc_sb"> |
133 | <view class="flex ai_center"> | 133 | <view class="flex ai_center"> |
@@ -145,7 +145,7 @@ | @@ -145,7 +145,7 @@ | ||
145 | <block wx:else> | 145 | <block wx:else> |
146 | <view class="price">¥{{item.shop_price}}</view> | 146 | <view class="price">¥{{item.shop_price}}</view> |
147 | <view class="comment flex jc_sb"> | 147 | <view class="comment flex jc_sb"> |
148 | - <view class="word-line xc-ash">¥{{item.market_price}}</view> | 148 | +<!-- <view class="word-line xc-ash">¥{{item.market_price}}</view>--> |
149 | <view>评论{{item.comment_count}} 已售{{item.sales_sum}}</view> | 149 | <view>评论{{item.comment_count}} 已售{{item.sales_sum}}</view> |
150 | </view> | 150 | </view> |
151 | </block> | 151 | </block> |
@@ -154,7 +154,7 @@ | @@ -154,7 +154,7 @@ | ||
154 | <block wx:else> | 154 | <block wx:else> |
155 | <view class="price">¥{{item.shop_price}}</view> | 155 | <view class="price">¥{{item.shop_price}}</view> |
156 | <view class="comment flex jc_sb"> | 156 | <view class="comment flex jc_sb"> |
157 | - <view class="word-line xc-ash">¥{{item.market_price}}</view> | 157 | +<!-- <view class="word-line xc-ash">¥{{item.market_price}}</view>--> |
158 | <view>评论{{item.comment_count}} 已售{{item.sales_sum}}</view> | 158 | <view>评论{{item.comment_count}} 已售{{item.sales_sum}}</view> |
159 | </view> | 159 | </view> |
160 | </block> | 160 | </block> |