wangzizhong 2 lat temu
rodzic
commit
236c168b62

+ 4 - 12
pages/heatingPage/pay.vue

@@ -59,10 +59,10 @@
 				  <view class="popup-content-box">
 				  		  <view class="popup-content">
 				  			  <view class="popup-type">
-				  			  	  <view>开票抬头:</view><input type="text" v-model="invoiceName" />
+				  			  	  <view>开票抬头:</view><input class="card input" style="width: 75%;" type="text" v-model="invoiceName" />
 				  			  </view>
 				  			  <view class="popup-type">
-				  			  	  <view>备注:</view><input type="text" v-model="invoiceRemark" />
+				  			  	  <view>备注:</view><input  class="card input" style="width: 75%;" type="text" v-model="invoiceRemark" />
 				  			  </view>
 				  		  </view>
 				  </view>
@@ -103,7 +103,6 @@ export default {
 		this.getPayDetail(this.pay_code);
 	},
     getPayDetail(payId) {
-     
 	  let url = getApp().makeApiUrl("user",'user','get_order_info');
       let postData = {
         code:payId,
@@ -154,13 +153,13 @@ export default {
 		{
 			let value = this.payInfo.part_fee - this.payInfo.reduction;
 			value = Math.round(value * 100) / 100;
-			this.payInfo.real_fee = value;
+			this.payInfo.real_fee = value.toFixed(2);
 		}
 		else
 		{
 			let value = this.payInfo.total_fee - this.payInfo.reduction;
 			value = Math.round(value * 100) / 100;
-			this.payInfo.real_fee = value;
+			this.payInfo.real_fee = value.toFixed(2);
 		}
 		this.payInfo.type = e.detail.value;
 	},
@@ -377,13 +376,6 @@ export default {
 		view {
 			width: 30%; 
 		}
-		input {
-			border: 1px solid #d7d7d7;
-			width: 60%;
-			border-radius: 5rpx;
-			padding-left: 10rpx;
-			height: 56rpx;
-		}
   }
   .popup-footer {
 	  display: flex;

+ 11 - 1
pages/heatingPage/reportFix.vue

@@ -63,7 +63,6 @@ export default {
         phone : "",
         content : "",
       },
-	  
       uploadList: [],
       imgIdList: [],
 	  pic_id : 0,
@@ -121,6 +120,7 @@ export default {
               icon: "none",
               duration: 2000,
             });
+            this.paramRefresh();
 			setTimeout(function() {
 				uni.navigateTo({
 				  url: "/pages/selfCenter/my_fix",
@@ -140,6 +140,16 @@ export default {
         },
       });
     },
+	paramRefresh(){
+		this.supplyInfo =  {
+		  name : "",
+		  phone : "",
+		  content : "",
+		}
+		this.uploadList = []
+		this.imgIdList = []
+		this.pic_id = 0
+	},
     bindPickerChange(e) {
       this.index = e.detail.value;
     },

+ 1 - 1
pages/selfCenter/index.vue

@@ -34,7 +34,7 @@
         <view class="img-box">
           <img :src="item.icoin" alt="" class="options-item-img" />
         </view>
-        <view class="options-item-name":class="{ fontGrey: idx == list.length - 1 }">
+        <view class="options-item-name">
           {{ item.name }}
         </view>
       </view>

+ 5 - 4
pages/selfCenter/with_house.vue

@@ -3,7 +3,7 @@
     <view class="supplyInfo">
 	  <view class="tel flex">
 		<label>小区名称:</label>
-		<view class="picker">
+		<view class="picker card input">
 <!-- 		  <picker
 		    @change="hoodChange"
 		    :value="hoodIndex"
@@ -26,7 +26,7 @@
 	  </view>
 	  <view class="tel flex"  style="margin-top:30rpx;">
 	    <label style="text-align: center;">楼栋:</label>
-	    <view class="picker">
+	    <view class="picker card input">
 	      <picker
 	        @change="buildingChange"
 	        :value="buildIndex"
@@ -47,7 +47,7 @@
 	  </view>
 	  <view class="tel flex">
 	    <label   style="text-align: center;">单元:</label>
-	    <view class="picker">
+	    <view class="picker card input">
 	      <picker
 	        @change="unitChange"
 	        :value="unitIndex"
@@ -68,7 +68,7 @@
 	  </view>
 	  <view class="tel flex">
 			<label   style="text-align: center;">房号:</label>
-			<view class="picker">
+			<view class="picker card input">
 			  <picker
 				@change="numChange"
 				:value="numIndex"
@@ -502,6 +502,7 @@ export default {
     display: inline-block;
     width: 80%;
     height: 70rpx;
+	line-height: 70rpx;
   }
   .supplyInfo {
     border-radius: 40rpx;