Commit e029a990ffd26ac92b194bfdd9bbca5f567adadd

Authored by 前端开发-罗建龙
1 parent 80148dd2

oa优化

pages/activity/pind_list/pind_list.wxml
... ... @@ -69,7 +69,7 @@
69 69 <view class="fs40 flex xc-top15 {{type==1?'red-co ai-bas':'blue_c xc-lihe42 ai-bas'}}">
70 70 <text class="fs28 {{type==0?'martop13':''}}">¥</text>
71 71 <text style="margin-left:-5rpx">{{item.price}}</text>
72   - <text wx:if="{{is_retail_price}}" class="underline {{type==0?'martop18':''}} no_line_x">¥{{item.shop_price}}</text>
  72 + <text wx:if="{{is_retail_price}}" class="underline {{type==0?'martop18':''}} no_line_x">¥{{item.shop_price || item.market_price}}</text>
73 73 </view>
74 74  
75 75 </view>
... ...
pages/giftpack/buygiftpack/giftpackbuy.wxml
... ... @@ -48,7 +48,7 @@
48 48 </block>
49 49 </view>
50 50 <view class="content_ware_price no_line_c">
51   - <text class="ellipsis-1">{{"¥"+items.giftPosPrice}}</text>
  51 + <text class="ellipsis-1">{{"零售价:¥"+items.giftPosPrice}}</text>
52 52 </view>
53 53 <view wx:if="{{items.is_show && now < items.starTime1 }}" class="content_ware_time">
54 54 <text class="ellipsis-1">{{"活动开始时间:"+items.starTime}}</text>
... ...
pages/giftpack/mygiftpack/mygiftpack.wxml
... ... @@ -79,10 +79,10 @@
79 79 </block>
80 80 </view>
81 81 <view class="content_ware_price no_line_c">
82   - <text >{{"¥"+item.giftPosPrice}}</text>
  82 + <text >{{"零售价:¥"+item.giftPosPrice}}</text>
83 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 86 <block wx:if="{{getDate>item.endTime}}">
87 87 <text>{{"兑换截至日期:"+item.endTime}}</text>
88 88 </block>
... ...
pages/giftpack/mygiftpack/mygiftpack.wxss
... ... @@ -163,7 +163,7 @@
163 163 }
164 164  
165 165 .content_ware_time {
166   - font-size: 25rpx;
  166 + font-size: 24rpx;
167 167 color: #c61a34;
168 168 margin-top: 20rpx;
169 169 position: absolute;
... ...
pages/goods/goodsInfo/goodsInfo.js
... ... @@ -6247,7 +6247,9 @@ Page({
6247 6247 //---文字---
6248 6248 context.setFontSize(22 * unit)
6249 6249 context.setFillStyle("black")
  6250 + if(th.data.is_share_text){
6250 6251 context.fillText("特惠好物,限时秒杀", 40 * unit, 807 * unit);
  6252 + }
6251 6253 context.fillText("长按识别二维码,立即开始抢购", 40 * unit, 844 * unit);
6252 6254  
6253 6255  
... ...
pages/goods/goodsInfo/goodsInfo.wxml
... ... @@ -96,10 +96,10 @@
96 96 </view>
97 97 <!-- --显示团购价 -->
98 98 <view class="prom_show rel" wx:if="{{prom_type==2}}">
99   -
  99 +
100 100 <view class="abs flex" style="align-items:flex-end;color: #fff; margin-top: 34rpx; margin-left: 10rpx; height: 60rpx">¥{{prom_price}}
101 101  
102   - <view wx:if="{{is_retail_price}}" class="word-line fs24 no_line_x" style="position: relative;top: -6rpx">零售价:¥{{filters.toFix(data.market_price,2)}}</view>
  102 + <view wx:if="{{is_retail_price}}" class="word-line fs24 no_line_c" style="position: relative;top: -6rpx">零售价:¥{{filters.toFix(data.market_price,2)}}</view>
103 103 <view wx:else class="word-line no_line_x fs24" style="position: relative;top: -6rpx">¥{{filters.toFix(data.shop_price,2)}}</view>
104 104 </view>
105 105  
... ...
pages/team/team_ping/team_ping.wxml
... ... @@ -33,7 +33,7 @@
33 33 <view class="flex">
34 34 <text class='fs24 xc-wc {{item.pt_status==1?"xc-rmbs":"xc-rmb"}}'>¥</text>
35 35 <view class='pd-jg xc-wc'>{{item.order_goods[0].goods_price}}</view>
36   - <view class="flex word-line xc-ash {{item.pt_status==1?'xc-rmbs':'xc-rmb'}}"><text class="fs24 xc-black"></text><text class="fs24 xc-wc">¥</text><text class="fs26 xc-wc">{{item.order_goods[0].shop_price}}</text> </view>
  36 + <view class="flex no_line_c word-line xc-ash {{item.pt_status==1?'xc-rmbs':'xc-rmb'}}"><text class="fs24 xc-black"></text><text class="fs24 xc-wc">¥</text><text class="fs26 xc-wc">{{item.order_goods[0].shop_price || item.order_goods[0].market_price}}</text> </view>
37 37 </view>
38 38  
39 39 <view class="xc-img-frame" wx:if="{{item.pt_status==2 || item.pt_status==4 || item.pt_status==5 || item.pt_status==6}}">
... ...