Commit 7504b26558ec272d1bf55306df8f1020ea44ef88

Authored by yvan.ni
1 parent c20afac6

商品详情页,

app.wxss
... ... @@ -1344,5 +1344,5 @@ checkbox .wx-checkbox-input {
1344 1344 margin-right: 16rpx;
1345 1345 }
1346 1346  
1347   -.gray{ background-color:gainsboro !important; }
  1347 +
1348 1348  
... ...
packageA/pages/goodsInfo/goodsInfo.wxss
... ... @@ -2993,3 +2993,6 @@ button.custom-service::after{
2993 2993 padding-left: 30rpx;
2994 2994 }
2995 2995  
  2996 +/*按钮变灰色的优化*/
  2997 +.spec-cart-btn.gray{ background-color:gainsboro !important; }
  2998 +
... ...
packageA/pages/jfbuy/jfbuy.wxml
... ... @@ -66,7 +66,7 @@
66 66 <view class="red">
67 67 <text>{{item.integral}}积分 + ¥{{item.addmoney}}</text>
68 68 </view>
69   - <view class="pdt14 fs22 flex jc_sb">
  69 + <view class="pdt14 fs22 gray flex jc_sb">
70 70 <view>¥{{item.shop_price}}</view>
71 71 <view>销量:{{item.buy_num+item.virtual}}</view>
72 72 </view>
... ...
packageC/pages/luckyGo/luckyGo_goodsInfo/luckyGo_goodsInfo.wxss
... ... @@ -3151,3 +3151,6 @@ button.custom-service::after{
3151 3151 color: #d60021;
3152 3152 font-size: 26rpx;
3153 3153 }
  3154 +
  3155 +/*按钮变灰色的优化*/
  3156 +.spec-cart-btn.gray{ background-color:gainsboro !important; }
... ...
pages/goods/goodsInfo/goodsInfo.wxss
... ... @@ -4043,4 +4043,7 @@ button.custom-service::after {
4043 4043 border-radius: 30rpx;
4044 4044 border: 2rpx solid rgb(238, 238, 238);
4045 4045 padding-left: 30rpx;
4046   -}
4047 4046 \ No newline at end of file
  4047 +}
  4048 +
  4049 +/*按钮变灰色的优化*/
  4050 +.spec-cart-btn.gray{ background-color:gainsboro !important; }
4048 4051 \ No newline at end of file
... ...