From 2df906a447195f9786dd468512ea895d6cc18532 Mon Sep 17 00:00:00 2001
From: YYC <1833023622@qq.com>
Date: 星期四, 15 五月 2025 14:53:54 +0800
Subject: [PATCH] APP3.5开发

---
 igds-app/js/admin/work-record.js |   75 ++++++++++---------------------------
 1 files changed, 20 insertions(+), 55 deletions(-)

diff --git a/igds-app/js/admin/work-record.js b/igds-app/js/admin/work-record.js
index 958753a..5136efd 100644
--- a/igds-app/js/admin/work-record.js
+++ b/igds-app/js/admin/work-record.js
@@ -1,5 +1,6 @@
 var url = null;
 var recordList = null;
+var dateTime;
 //鐢宠璁板綍
 var data = {
 	"interfaceId": "5702",
@@ -13,11 +14,28 @@
 
 function init() {
 	var user = JSON.parse(localStorage.getItem('user'));
-	url = user.url + "/api-phone/v35/gateway";
+	url = user.url + "/api/phone/v35/gateway";
 	data.tokenAuth = user.tokenAuth;
 	data.data.userName = user.username;
 	console.log(JSON.stringify(data.data),"work-record")
+	dateTime = getDate(new Date());
 	getRecordList();
+}
+//鏃ユ湡鏍煎紡鍖杫yyy-MM-dd HH:mm
+function getDate(date) {
+	var year = date.getFullYear();
+	var month, day,hour,minute;
+	month = date.getMonth() + 1;
+	if (month > 0 && month <= 9) {
+		month = "0" + month;
+	}
+	day = date.getDate()
+	if (day > 0 && day <= 9) {
+		day = "0" + day
+	}
+	hour = date.getHours();
+	minute = date.getMinutes();
+	return year + "-" + month + "-" + day + " "+ hour + ":" + minute
 }
 
 //鑾峰彇鐢宠璁板綍鍒楄〃
@@ -43,57 +61,6 @@
 			mui.alert('绯荤粺绻佸繖,璇烽噸鏂扮櫥褰曞皾璇曪紒', '鎻愮ず', ["纭畾"], function() {}, "div");
 		}
 	})
-	// recordList = [{
-	// 		"id": "59",
-	// 		"deptName": "1鍙蜂粨",
-	// 		"status": "10",
-	// 		"applyUserName": "閮濆啗",
-	// 		"type": "exercitation reprehenderit sint",
-	// 		"startTime": "1974-07-05 21:56",
-	// 		"endTime": "2013-08-19 05:43",
-	// 		"info": "sed adipisicing quis irure",
-	// 		"depotId": "90",
-	// 		"depotName": "鍗充紶鐘舵柊浜旈檯"
-	// 	},
-	// 	{
-	// 		"id": "39",
-	// 		"deptName": "1鍙蜂粨",
-	// 		"status": "20",
-	// 		"applyUserName": "琚佸己",
-	// 		"type": "sed et sit irure eu",
-	// 		"startTime": "2015-10-25 12:30",
-	// 		"endTime": "1971-04-18 19:34",
-	// 		"info": "reprehenderit qui quis pariatur anim",
-	// 		"depotId": "89",
-	// 		"depotName": "褰撳叆鐗╄繕绠�"
-	// 	},
-	// 	{
-	// 		"id": "55",
-	// 		"deptName": "3鍙蜂粨",
-	// 		"status": "20",
-	// 		"applyUserName": "瀹嬩附",
-	// 		"type": "in",
-	// 		"startTime": "1994-10-12 18:25",
-	// 		"endTime": "2008-01-19 00:26",
-	// 		"info": "ex ullamco id dolor",
-	// 		"depotId": "42",
-	// 		"depotName": "鏂板父鎶�浣嶄腑"
-	// 	},
-	// 	{
-	// 		"id": "50",
-	// 		"deptName": "2鍙蜂粨",
-	// 		"status": "10",
-	// 		"applyUserName": "榛勮秴",
-	// 		"type": "nostrud elit",
-	// 		"startTime": "2018-07-07 10:25",
-	// 		"endTime": "2000-11-07 10:02",
-	// 		"info": "et minim",
-	// 		"depotId": "53",
-	// 		"depotName": "浜虹瀹冨啗棰�"
-	// 	}
-	// ]
-	
-	
 }
 
 function renderRecordList() {
@@ -124,9 +91,7 @@
 		html += '<div class="tit">涓氬姟绫诲瀷:</div><div class="name">--</div></a></li>';
 		html += '<li><a href="" class="con"style="background-image: url(images/icons/a-bg13.png);">';
 		html += '<div class="tit">鍏宠仈浠撳簱:</div><div class="name">--</div></a></li></ul>';
-		html += '<div class="time"><p>鏈夋晥寮�濮嬫椂闂�: <span>2023-01-01</span></p><p>鏈夋晥缁撴潫鏃堕棿: <span>2023-01-01</span></p></div>';
-		// html +=
-		// 	'<li><div class="con"><div style="text-align: center;font-size: 20px;color:#dd524d;padding-top: 18px;">鏆傛棤鐢宠璁板綍淇℃伅</div></div></li>';
+		html += '<div class="time"><p>鏈夋晥寮�濮嬫椂闂�: <span>' + dateTime + '</span></p><p>鏈夋晥缁撴潫鏃堕棿: <span>' + dateTime + '</span></p></div>';
 	}
 	$("#handleList").html(html);
 }

--
Gitblit v1.9.3