浏览代码

update: 调整赔款订单显示,消息图标变为圆形

yll 4 年之前
父节点
当前提交
05e42f1f78

+ 1 - 1
view/xcx/components/navbar/index.wxss

@@ -13,7 +13,7 @@
 .navbar .navbarH .navbarCon .name.on{color:#fff;}
 .navbar .navbarH .navbarCon .icon-xiangzuo{color:#000;font-weight:bold;position:absolute;font-size:40rpx;left:16rpx;width:100rpx;height:56rpx;line-height:54rpx;top:50%;transform:translateY(-50%);}
 .navbar .navbarH .navbarCon .icon-xiangzuo.on{color:#fff;}
-.navbar .navbarH .navbarCon .logo{width:127rpx;height:45rpx;position:absolute;left:30rpx;top:50%;transform:translateY(-50%);}
+.navbar .navbarH .navbarCon .logo{width:116rpx;height:45rpx;position:absolute;left:30rpx;top:50%;transform:translateY(-50%);}
 .navbar .navbarH .navbarCon .logo image{width:100%;height:100%;display:block;}
 .navbar .navbarH .navbarCon .search{width:360rpx;height:64rpx;background-color:#f7f7f7;border-radius:50rpx;padding:0 28rpx;box-sizing:border-box;font-size:28rpx;color:#bbb;margin-right:26rpx;}
 .navbar .navbarH .navbarCon .search .icon-xiazai5{font-size:34rpx;margin-right:16rpx;}

+ 1 - 1
view/xcx/components/orderGoods/index.wxml

@@ -8,7 +8,7 @@
         </view>
         <view class='text'>
            <view class='acea-row row-between-wrapper'>
-             <view class='name line1'>{{item.productInfo.store_name}}</view>
+             <view class='name line1 {{ item.reparation && "font-color"}}'>{{item.productInfo.store_name + (item.reparation && " -- 已赔付") }}</view>
              <view class='num'>x {{item.cart_num}}</view>
            </view>
            <view class='attr line1' wx:if="{{item.productInfo.attrInfo}}">{{item.productInfo.attrInfo.suk}}</view>

+ 1 - 1
view/xcx/pages/message/index.wxss

@@ -5,7 +5,7 @@
 .message .list { margin: auto; }
 .message .list .item { background-color: #fff; height: 148rpx; margin-bottom: 12rpx; display: flex; padding-top: 22rpx; width: 100%; padding-left: 20rpx; }
 .message .list .item .icon { width: 104rpx; height: 104rpx; }
-.message .list .item .icon image { width: 100%; height: 100%; }
+.message .list .item .icon image { width: 100%; height: 100%; border-radius: 50%;}
 .message .list .item .content { margin-left: 20rpx; width: 82%; }
 .message .list .item .content .header {display: flex; margin: 20rpx 0;}
 .message .list .item .content .title { font-size: 32rpx; width: 50%; text-align: left; }

+ 2 - 2
view/xcx/pages/order_list/index.wxml

@@ -54,8 +54,8 @@
           <view class='pictrue'>
             <image src='{{item.productInfo.image}}'></image>
           </view>
-          <view class='text acea-row row-between'>
-            <view class='name line2'>{{item.productInfo.store_name}}</view>
+          <view class='text acea-row row-between {{ item.reparation && "font-color" }}'>
+            <view class='name {{ item.reparation ? "font-color" : "line2" }}'>{{item.productInfo.store_name + (item.reparation && " -- 已赔付") }}</view>
             <view class='money'>
               <view wx:if="{{item.productInfo.attrInfo}}">¥{{item.productInfo.attrInfo.price}}</view>
               <view wx:else>¥{{item.productInfo.price}}</view>