From b685865d431a4fd291403063384655b90f25a240 Mon Sep 17 00:00:00 2001
From: yangan <yangan0921@163.com>
Date: 星期一, 09 九月 2024 17:24:20 +0800
Subject: [PATCH] feat:库管首页,历史通知单修改细节

---
 pages/driver-page/appointment/appointment.vue |   39 ++++++++++++++++++++++++++++-----------
 1 files changed, 28 insertions(+), 11 deletions(-)

diff --git a/pages/driver-page/appointment/appointment.vue b/pages/driver-page/appointment/appointment.vue
index ffd69f3..e801625 100644
--- a/pages/driver-page/appointment/appointment.vue
+++ b/pages/driver-page/appointment/appointment.vue
@@ -5,7 +5,7 @@
 			*鎮ㄥ綋鍓嶇殑棰勭害鏃堕棿娈�<text>{{yuYueSection}}</text>
 		</view>
 		<combined-title
-			:title="yuYueData.length != 0 ? yuYueData[0].filedName + '鈥斺��' + yuYueData[0].sendDate : '鏆傛棤棰勭害鍒楄〃'"></combined-title>
+			:title="yuYueData.length != 0 ? yuYueData[0].filedName + '鈥斺��' + yuYueSection : '鏆傛棤棰勭害鍒楄〃'"></combined-title>
 		<view class="appointment-table">
 			<uni-table border
 				stripe
@@ -65,11 +65,14 @@
 			};
 		},
 		onLoad(params) {
+			console.log(params,'params')
 			if (params.type == '鍏ュ満鐢宠') {
 				this.isRCSQ = true;
 				this.rcsqData.originalYyId = params.yyId;
-				this.yuYueSection = params.yuYueSection
+				// this.yuYueSection = params.yuYueSection
+				this.yuYueSection = this.getNowFormatDate();
 			}
+			this.yuYueSection = this.getNowFormatDate();
 			this.yuYuePostParams.takeCoalId = params.takeCoalId;
 			this.yuYueListParams.filedId = params.filedId;
 			this.yuYueListParams.deptId = params.deptId;
@@ -127,6 +130,18 @@
 					}
 				})
 			},
+			//鑾峰彇褰撳ぉ鏃ユ湡
+			//鑾峰彇褰撳墠鏃ユ湡鍑芥暟
+				getNowFormatDate() {
+				let date = new Date(),
+					year = date.getFullYear(), //鑾峰彇瀹屾暣鐨勫勾浠�(4浣�)
+					month = date.getMonth() + 1, //鑾峰彇褰撳墠鏈堜唤(0-11,0浠h〃1鏈�)
+					strDate = date.getDate() // 鑾峰彇褰撳墠鏃�(1-31)
+				if (month < 10) month = `0${month}` // 濡傛灉鏈堜唤鏄釜浣嶆暟锛屽湪鍓嶉潰琛�0
+				if (strDate < 10) strDate = `0${strDate}` // 濡傛灉鏃ユ槸涓綅鏁帮紝鍦ㄥ墠闈㈣ˉ0
+				
+				return `${year}-${month}-${strDate}`
+				},
 			// 鏇存崲棰勭害鏃堕棿娈�
 			saveRCSQ(value) {
 				this.rcsqData.yyId = value.id;
@@ -141,18 +156,20 @@
 							})
 						}, 1500);
 						//濡傛灉鏈鍒� 鍏堢鍒板啀鐢宠
-					} else if (res.code == 3) {
-						this.$u.toast('璇峰厛绛惧埌');
-						setTimeout(() => {
-							uni.navigateTo({
-								url: `/pages/driver-page/driver-index/bill-of-lading-details/punchTheClock/punchTheClock?orderPlanId=${this.yuYuePostParams.takeCoalId}&coalStatus=${
-								this.coalStatus}&tmId=${this.tmId}&yyId=${this.rcsqData.originalYyId}&filedId=${this.yuYueListParams.filedId}&deptId=${this.yuYueListParams.deptId}&sendDate=${this.yuYueListParams.sendDate}&yuYueSection=${this.yuYueSection}`
-							})
-						}, 1500)
-						return
 					} else {
 						this.$u.toast(res.msg ? res.msg : '鏇存崲棰勭害鏃堕棿娈靛け璐ワ紝璇风◢鍚庨噸璇�');
 					}
+
+					// else if (res.code == 3) {
+					// 	this.$u.toast('璇峰厛绛惧埌');
+					// 	setTimeout(() => {
+					// 		uni.navigateTo({
+					// 			url: `/pages/driver-page/driver-index/bill-of-lading-details/punchTheClock/punchTheClock?orderPlanId=${this.yuYuePostParams.takeCoalId}&coalStatus=${
+					// 			this.coalStatus}&tmId=${this.tmId}&yyId=${this.rcsqData.originalYyId}&filedId=${this.yuYueListParams.filedId}&deptId=${this.yuYueListParams.deptId}&sendDate=${this.yuYueListParams.sendDate}&yuYueSection=${this.yuYueSection}`
+					// 		})
+					// 	}, 1500)
+					// 	return
+					// } 
 				});
 			}
 		}

--
Gitblit v1.9.1