shish 3 years ago
parent
commit
1be7f655cc

+ 5 - 3
hdApp/src/pagesPurchase/components/gatheringList.vue

@@ -9,11 +9,12 @@
         <text class="name">采购单 {{info.orderSn}} </text>
         <text class="name">采购单 {{info.orderSn}} </text>
       </view>
       </view>
       <view class="item-row">
       <view class="item-row">
-        <view class="mark">{{ info.addTime.substr(0,16) }}</view>
+        <view class="mark">{{ info.addTime.substr(5,11) }}</view>
       </view>
       </view>
       <view class="item-row">
       <view class="item-row">
         <view class="price">¥{{ parseFloat(info.remainDebtPrice) }}</view>
         <view class="price">¥{{ parseFloat(info.remainDebtPrice) }}</view>
-        <view class="price" style="font-weight:normal;color:#3385FF;font-size:32upx;" @click.stop="goToDetai(info)">查看明细</view>
+        <view class="price" style="border:1upx solid #67a0f7;border-radius:10upx;font-weight:normal;color:#3385FF;font-size:32upx;width:180upx;height:80upx;justify-content:center;"
+         @click.stop="goToDetai(info)">查看明细</view>
       </view>
       </view>
     </view>
     </view>
   </view>
   </view>
@@ -60,6 +61,7 @@ export default {
     .iconfont {
     .iconfont {
       font-size: 40upx;
       font-size: 40upx;
       color: #dddddd;
       color: #dddddd;
+      color:#67a0f7;
     }
     }
     .iconxuanzhong {
     .iconxuanzhong {
       color: $mainColor;
       color: $mainColor;
@@ -89,13 +91,13 @@ export default {
     display: flex;
     display: flex;
     align-items: center;
     align-items: center;
     justify-content: space-between;
     justify-content: space-between;
-
     .mark {
     .mark {
       font-size: 28upx;
       font-size: 28upx;
       font-weight: 400;
       font-weight: 400;
       color: #666666;
       color: #666666;
     }
     }
     .price {
     .price {
+      z-index:auto;
       display: flex;
       display: flex;
       align-items: center;
       align-items: center;
       font-size: 28upx;
       font-size: 28upx;

+ 2 - 6
hdApp/src/pagesPurchase/gathering.vue

@@ -38,7 +38,7 @@
         </view>
         </view>
       </template>
       </template>
       <view class="btn-view" >
       <view class="btn-view" >
-        <button :class="['admin-button-com', 'blue', 'global']" @click="batchConfirm">结清</button>
+        <button class="admin-button-com blue" @click="batchConfirm">付款结清</button>
       </view>
       </view>
     </view>
     </view>
   </view>
   </view>
@@ -293,18 +293,14 @@ export default {
         display: flex;
         display: flex;
         align-items: center;
         align-items: center;
         justify-content: center;
         justify-content: center;
-        margin: 0 10upx;
         width: 200upx;
         width: 200upx;
-        height: 70upx;
+        height: 80upx;
         font-size: 32upx;
         font-size: 32upx;
       }
       }
       .cancel {
       .cancel {
         border: 1px solid #999;
         border: 1px solid #999;
         color: #666;
         color: #666;
       }
       }
-      .global {
-        width: 150upx;
-      }
     }
     }
   }
   }
 }
 }