wkyy 3 éve
szülő
commit
1faf904c80

+ 4 - 2
pages/record/index.vue

@@ -108,8 +108,6 @@
 					mask: true,
 				})		
 				API.chargingRecordData({
-					pageIndex: 1,
-					pageSize: 10,
 					startDate: this.startDate,
 					endDate: this.endDate
 				}).then((res) => {
@@ -168,6 +166,10 @@
 			h4{
 				font-weight: normal;
 				font-size: 15px;
+				overflow: hidden;
+				width: 75%;
+				text-overflow: ellipsis;
+				white-space: nowrap;
 			}
 			.state1{
 				color:#8161FF;

+ 1 - 1
pages/user/car/carDet.vue

@@ -112,7 +112,7 @@
 		z-index: -1 !important;
 	}
 	/deep/.u-char-item {
-		width: 32px !important;
+		width: 30px !important;
 		height: 40px !important;
 		font-size: 18px !important;
 	}

+ 4 - 6
pages/user/finance/balance.vue

@@ -2,7 +2,7 @@
 	<view>
 		<u-navbar title="我的余额">
 			<view class="slot-wrap">
-				<span class="navBtn" @click="toRefundList">退</span>
+				<span class="navBtn" @click="toRefundList">退余额</span>
 			</view>
 		</u-navbar>
 		<view class="balance">
@@ -32,7 +32,7 @@
 				<view class="balanceMain-title">
 					<view class="title">
 						<u-icon name="todo-fill" custom-prefix="custom-icon" color="#6BC6A7" size="40"></u-icon>
-						<span>余额明细</span>
+						<span>充值明细</span>
 					</view>
 					<view class="more" @click="seeAll">
 						<span>查看全部</span>
@@ -80,7 +80,7 @@
 			if(monthN >= 1 && monthN <= 9) {
 				monthN = "0" + monthN;
 			}
-			this.dateMonth = year + '-' + monthN;
+			this.dateMonth = year + '-' + monthN + '-01';
 			
 			this.getCarPersonAccount();
 			this.getAccountRecordData();
@@ -97,9 +97,7 @@
 					mask: true,
 				})		
 				API.accountRecordData({
-					pageIndex: 1,
-					pageSize: 10,
-					month: this.dateMonth
+					queryDate: this.dateMonth
 				}).then((res) => {
 					uni.hideLoading();
 					

+ 3 - 5
pages/user/finance/rechargeList.vue

@@ -54,7 +54,7 @@
 			if(monthN >= 1 && monthN <= 9) {
 				monthN = "0" + monthN;
 			}
-			this.dateMonth = year + '-' + monthN;
+			this.dateMonth = year + '-' + monthN + '-01';
 					
 			this.getAccountRecordData();
 		},
@@ -65,9 +65,7 @@
 					mask: true,
 				})		
 				API.accountRecordData({
-					pageIndex: 1,
-					pageSize: 10,
-					month: this.dateMonth,
+					queryDate: this.dateMonth,
 				}).then((res) => {
 					uni.hideLoading();
 					
@@ -80,7 +78,7 @@
 				})
 			},
 			confirmTime(params) {
-				this.dateMonth = params.year + '-' + params.month;
+				this.dateMonth = params.year + '-' + params.month + '-01';
 				if(params.month.slice(0,1) == '0') {
 					this.month = params.month.slice(1);
 				} else {

+ 1 - 1
pages/user/index.vue

@@ -287,7 +287,7 @@
 		flex-direction: column;
 		align-items: center;
 		justify-content:space-between;
-		padding-left: 30px;
+		padding-left: 5px;
 		.userData-data{
 			font-size: 24px;
 		}