2024-10-01 02:34:26 +08:00
@{
ViewData["Title"] = "Yuntech_in_car";
Layout = "~/Views/Shared/_Layout_Engineering.cshtml";
}
2024-11-18 16:41:34 +08:00
<h1>查詢進出車輛</h1>
2024-10-01 02:34:26 +08:00
<div class="size2">
2024-11-18 16:41:34 +08:00
起始日期時間 : <input type="datetime-local" id="start_date_id">
結束日期時間 : <input type="datetime-local" id="end_date_id">
2024-10-01 02:34:26 +08:00
<button style="height:30px; " class="btn btn-outline-secondary" onclick="serch_date_click()">搜尋</button>
2024-11-18 16:41:34 +08:00
<div style="float:right; display: flex; align-items: center;">
<!--下載時間段進入車輛-->
下載時間段內進入車輛 :
<th>
<button class="btn btn-outline-info" onclick="export_excel_1()" style="position: relative; width: 50px; height: 30px; padding: 0;">
<img class="img-profile rounded-circle" style="width:20%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);" src="~/image/icon/724933.png">
<span style="visibility: hidden;">下載</span>
</button>
</th>
<!--下載總進入車輛-->
下載總進入車輛 :
<th>
<button class="btn btn-outline-info" onclick="export_excel_1()" style="position: relative; width: 50px; height: 30px; padding: 0;">
<img class="img-profile rounded-circle" style="width:20%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);" src="~/image/icon/724933.png">
<span style="visibility: hidden;">下載</span>
</button>
</th>
</div>
2024-10-01 02:34:26 +08:00
2024-11-18 16:41:34 +08:00
<br />
選擇進入區域 :
2024-10-01 02:34:26 +08:00
<select style="width:10%" id="location_select_id" onchange="location_select()"></select>
2024-11-18 16:41:34 +08:00
<div style="float:right; display: flex; align-items: center;">
<input type="text" style="margin-right: 5px;" placeholder="請輸入車牌 ex:ABC4321" id="serch_text_id" />
<button style="height:30px;" class="btn btn-outline-secondary" onclick="serch_click()">搜尋</button>
</div>
<!--<th>
離開區域選擇:
<select style="width:10%" id="out_location_select_id" onchange="out_location_select()"></select>
</th>-->
2024-10-01 02:34:26 +08:00
<table class="table">
<thead>
<tr>
<th>
2024-11-18 16:41:34 +08:00
進入區域
2024-10-01 02:34:26 +08:00
</th>
<th>
車牌號碼
</th>
<!--<th>
進入圖片
</th>
<th>
違規圖片
</th>-->
<th>
時間
</th>
2024-11-18 16:41:34 +08:00
<th>
出去區域
</th>
<th>
出去時間
</th>
2024-10-01 02:34:26 +08:00
<th></th>
</tr>
</thead>
<tbody id="demo">
</tbody>
</table>
<div class="row">
<div class="col-xl-1 col-lg-1">
<div>
<button id="lastPageButton" class="btn btn-outline-secondary" onclick="fetchData_Up()">上一頁</button>
</div>
2024-11-18 16:41:34 +08:00
2024-10-01 02:34:26 +08:00
</div>
<div class="col-xl-10 col-lg-10">
</div>
<div class="col-xl-1 col-lg-1">
<div>
<button id="nextPageButton" class="btn btn-outline-secondary" onclick="fetchData_Down()">下一頁</button>
</div>
</div>
</div>
</div>
<!--車輛詳細-彈跳視窗-->
<div>
<dialog id="detail_car_data_view" style="width:100%;">
<table class="table">
<button class="btn btn-danger" style="float:right" onclick="detail_car_data_view.close();"> 關閉 </button>
2024-11-18 16:41:34 +08:00
2024-10-01 02:34:26 +08:00
<p></p>
<thead>
<tr>
<th>
區域
</th>
<th>
車牌號碼
</th>
<th>
進入圖片
</th>
2024-11-18 16:41:34 +08:00
<th>
2024-10-01 02:34:26 +08:00
<th>
時間
</th>
</tr>
</thead>
<tbody id="detail_car_data">
</tbody>
</table>
<button class="btn btn-outline-success" style="float:left" onclick="previous_detail_data()"> Previous</button>
<button class="btn btn-outline-success" style="float:right" onclick="next_detail_data()"> Next </button>
</dialog>
</div>
<!--獲取資料-->
<script>
var All_Model
var serial_number = 0
var car_table_num = 0
function get_data() {
var name = "大門口"
2024-11-18 16:41:34 +08:00
2024-10-01 02:34:26 +08:00
$.ajax({
type: "GET",
2024-11-18 16:41:34 +08:00
url: "http://localhost:7700/api/Yuntech_in_car_table/Amount-" + car_table_num,
2024-10-01 02:34:26 +08:00
data: {},
headers: {
'Authorization': token
},
contentType: "application/json",
headers: {
'Authorization': token
},
success: function (Model) {
2024-11-18 16:41:34 +08:00
All_Model = Model
2024-10-01 02:34:26 +08:00
set_data(Model)
}
});
/*
// 監聽捲動事件
window.addEventListener("scroll", function () {
// 判斷是否捲動到底部
if (window.innerHeight + window.scrollY >= document.body.offsetHeight) {
// 執行抓取資料的函式
fetchData();
}
});
*/
2024-11-18 16:41:34 +08:00
// 載入 out_location_name 下拉選單資料
var outLocationSelect = document.getElementById("out_location_select_id");
$.ajax({
type: "GET",
url: "http://localhost:7700/api/Yuntech_in_car_table/out_location_name",
data: {},
headers: {
'Authorization': token
},
contentType: "application/json",
success: function (Model) {
console.log(Model);
outLocationSelect.innerHTML = "";
Model.forEach(function (item) {
var option = document.createElement('option');
option.text = item.out_location_name;
outLocationSelect.add(option);
});
},
error: function (xhr, status, error) {
console.error("獲取 out_location_name 資料失敗:", error);
}
});
2024-10-01 02:34:26 +08:00
var select = document.getElementById("location_select_id")
$.ajax({
type: "GET",
2024-11-18 16:41:34 +08:00
url: "http://localhost:7700/api/Yuntech_in_car_table/location_name",
2024-10-01 02:34:26 +08:00
data: {},
headers: {
'Authorization': token
},
contentType: "application/json",
headers: {
'Authorization': token
},
success: function (Model) {
console.log(Model)
2024-11-18 16:41:34 +08:00
2024-10-01 02:34:26 +08:00
select.innerHTML = "";
2024-11-18 16:41:34 +08:00
2024-10-01 02:34:26 +08:00
Model.forEach(function (item) {
var option = document.createElement('option');
option.text = item.location_name;
select.add(option);
});
}
});
}
// 定義抓取資料的函式
function fetchData_Up() {
2024-11-18 16:41:34 +08:00
car_table_num = car_table_num - 100
2024-10-01 02:34:26 +08:00
if (car_table_num < 0) {
window.alert('無上一筆資料')
car_table_num = 0
return
}
var name = "大門口"
2024-11-18 16:41:34 +08:00
2024-10-01 02:34:26 +08:00
$.ajax({
type: "GET",
2024-11-18 16:41:34 +08:00
url: "http://localhost:7700/api/Yuntech_in_car_table/Amount-" + car_table_num,
2024-10-01 02:34:26 +08:00
data: {},
headers: {
'Authorization': token
},
contentType: "application/json",
headers: {
'Authorization': token
},
success: function (Model) {
2024-11-18 16:41:34 +08:00
2024-10-01 02:34:26 +08:00
All_Model = Model
set_data(Model)
}
});
}
function fetchData_Down() {
car_table_num = car_table_num + 100
var name = "大門口"
2024-11-18 16:41:34 +08:00
2024-10-01 02:34:26 +08:00
$.ajax({
type: "GET",
2024-11-18 16:41:34 +08:00
url: "http://localhost:7700/api/Yuntech_in_car_table/Amount-" + car_table_num,
2024-10-01 02:34:26 +08:00
data: {},
headers: {
'Authorization': token
},
contentType: "application/json",
headers: {
'Authorization': token
},
success: function (Model) {
2024-11-18 16:41:34 +08:00
2024-10-01 02:34:26 +08:00
All_Model = Model
set_data(Model)
}
});
}
</script>
<!--放置資料-->
<script>
function set_data(Model) {
2024-11-18 16:41:34 +08:00
document.getElementById("demo").innerHTML = '';
var table = "<table>";
console.log(Model.length);
2024-10-01 02:34:26 +08:00
if (Model.length > 0) {
for (var i = 0; i < Model.length; i++) {
if (Model[i].location != null) {
2024-11-18 16:41:34 +08:00
table += "<tr>";
2024-10-01 02:34:26 +08:00
2024-11-18 16:41:34 +08:00
// 顯示地點、車牌號碼等
table += "<td>" + Model[i].location + "</td>";
table += "<td>" + Model[i].license_plate_number + "</td>";
// 進入時間
if (Model[i].in_time) {
var timestampDtIn = new Date(Model[i].in_time);
var options = { year: 'numeric', month: '2-digit', day: '2-digit', hour: '2-digit', minute: '2-digit', second: '2-digit' };
var formattedInDate = timestampDtIn.toLocaleDateString('en-US', options);
table += "<td>" + formattedInDate + "</td>";
} else {
table += "<td>沒有資料</td>";
}
// 出去地點
if (Model[i].out_location) {
table += "<td>" + Model[i].out_location + "</td>";
} else {
table += "<td>沒有資料</td>";
}
// 離開時間
if (Model[i].out_time) {
var timestampDtOut = new Date(Model[i].out_time);
var formattedOutDate = timestampDtOut.toLocaleDateString('en-US', options);
table += "<td>" + formattedOutDate + "</td>";
} else {
table += "<td>沒有資料</td>";
}
// 詳細按鈕
table += "<td><button class='btn btn-outline-success' onclick=\"detail_data('" + Model[i].location + "','" + i + "','" + Model[i].in_time + "')\">詳細</button></td>";
table += "</tr>";
}
2024-10-01 02:34:26 +08:00
}
2024-11-18 16:41:34 +08:00
} else {
table += "<tr><td colspan='6'>No data available</td></tr>";
2024-10-01 02:34:26 +08:00
}
2024-11-18 16:41:34 +08:00
table += "</table>";
2024-10-01 02:34:26 +08:00
document.getElementById("demo").innerHTML = table
// 移動到最上面
window.scrollTo(0, 0);
}
function set_data_license_plate_and_date(Model) {
2024-11-18 16:41:34 +08:00
var table = "<tr>";
2024-10-01 02:34:26 +08:00
console.log(Model.length)
if (Model.length > 0) {
for (var i = 0; i < Model.length; i++) {
if (Model[i].location != null) {
2024-11-18 16:41:34 +08:00
table += "<td>" + Model[i].location + "</td>";
table += "<td>" + Model[i].license_plate_number + "</td>";
2024-10-01 02:34:26 +08:00
var timestampDt = new Date(Model[i].in_time);
var options = { year: 'numeric', month: '2-digit', day: '2-digit', hour: '2-digit', minute: '2-digit', second: '2-digit' };
var formattedDate = timestampDt.toLocaleDateString('en-US', options);
2024-11-18 16:41:34 +08:00
table += "<td>" + formattedDate + "</td>";
2024-10-01 02:34:26 +08:00
2024-11-18 16:41:34 +08:00
if (Model[i].out_location && Model[i].out_time) {
table += "<td>" + Model[i].out_location + "</td>";
var outTimestampDt = new Date(Model[i].out_time);
var outFormattedDate = outTimestampDt.toLocaleDateString('en-US', options);
table += "<td>" + outFormattedDate + "</td>";
} else {
table += "<td>沒有資料</td>";
table += "<td>沒有資料</td>";
}
2024-10-01 02:34:26 +08:00
2024-11-18 16:41:34 +08:00
table += "<td><button class='btn btn-outline-success' onclick=\"detail_data('" + Model[i].location + "','" + i + "','" + Model[i].in_time + "')\">詳細</button></td>";
}
table += "</tr>";
table += "<tr>";
2024-10-01 02:34:26 +08:00
}
}
2024-11-18 16:41:34 +08:00
document.getElementById("demo").innerHTML = table;
2024-10-01 02:34:26 +08:00
}
2024-11-18 16:41:34 +08:00
2024-10-01 02:34:26 +08:00
</script>
<!--下一筆資料-->
<script>
function next_detail_data() {
serial_number = Number(serial_number) + 1
if (serial_number >= All_Model.length) {
window.alert('無下一筆資料')
serial_number = All_Model.length - 1
return
}
//console.log(serial_number)
//console.log(All_Model[serial_number])
detail_data(All_Model[serial_number]['location'], serial_number, All_Model[serial_number]['in_time'])
}
</script>
<!--上一筆資料-->
<script>
function previous_detail_data() {
serial_number = Number(serial_number) - 1
if (serial_number < 0) {
window.alert('無上一筆資料')
serial_number = 0
return
}
// console.log(serial_number)
//console.log(All_Model[serial_number])
detail_data(All_Model[serial_number]['location'], serial_number, All_Model[serial_number]['in_time'])
}
</script>
<!--車輛詳細-->
<script>
2024-11-18 16:41:34 +08:00
function detail_data(location_name, car_serial_number, time, out_location_name) {
2024-10-01 02:34:26 +08:00
// 設定車輛序列號
serial_number = car_serial_number
// 發送AJAX GET請求
$.ajax({
type: "GET",
2024-11-18 16:41:34 +08:00
url: "http://localhost:7700/api/Yuntech_in_car_table/location_name-" + location_name + "-time-" + time,
2024-10-01 02:34:26 +08:00
data: {},
contentType: "application/json",
headers: {
'Authorization': token
},
success: function (Model) {
2024-11-18 16:41:34 +08:00
2024-10-01 02:34:26 +08:00
console.log(Model)
// 設定固定車輛圖片
//let fixed_car_img = "<img style='width:100%' src='~/bootstrap_1/img/Yuntech.png'>";
// 檢查是否有離開時間
if (Model.out_time == null) {
// 如果沒有離開時間,顯示進入時間和車輛圖像
table = "<tr>";
2024-11-18 16:41:34 +08:00
table += "<td>進入區域 " + "<br>" + Model.location + "</td>";
2024-10-01 02:34:26 +08:00
table += "<td>" + '<input type="text" id="license_plate_number_text_id" value="' + Model.license_plate_number + '"/>' + "</td>";
// 添加固定車輛圖片
2024-11-18 16:41:34 +08:00
if (Model.car_img == null || Model.car_img == "") {
2024-10-01 02:34:26 +08:00
table += "<td>" + "<img src='" + "/bootstrap_1/img/maxresdefault.jpg" + "' style='width:80%' />" + "</td>";
} else {
table += "<td>" + "<img src='" + Model.car_img + "' style='width:80%' />" + "</td>";
}
2024-11-18 16:41:34 +08:00
var options = { year: 'numeric', month: '2-digit', day: '2-digit', hour: '2-digit', minute: '2-digit', second: '2-digit' };
2024-10-01 02:34:26 +08:00
2024-11-18 16:41:34 +08:00
// 格式化進入時間
var timestampDtIn = new Date(Model.in_time);
var formattedInDate = timestampDtIn.toLocaleDateString('en-US', options);
// 建立表格內容
table += "<td id='create_data_time_id'>" +
"進入時間: " + formattedInDate + "<br/><br/>" + "</td>";
2024-10-01 02:34:26 +08:00
document.getElementById("detail_car_data").innerHTML = table;
} else {
// 如果有離開時間,顯示進入和離開時間以及車輛圖像
table = "<tr>";
2024-11-18 16:41:34 +08:00
table += "<td>進入區域 " + Model.location + " <br>" + "<br>出去區域 " + (Model.out_location ? Model.out_location : '沒有資料') + "</td>";
2024-10-01 02:34:26 +08:00
table += "<td>" + '<input type="text" id="license_plate_number_text_id" value="' + Model.license_plate_number + '"/>' + "</td>";
// 添加固定車輛圖片
if (Model.out_car_img == null || Model.out_car_img == "") {
if (Model.car_img == null || Model.car_img == "") {
table += "<td>" + "<img src='" + "/bootstrap_1/img/maxresdefault.jpg" + "' style='width:40%' />" + "<img src='" + "/bootstrap_1/img/maxresdefault.jpg" + "' style='width:40%' />" + "</td>";
}
else {
table += "<td>" + "<img src='" + Model.car_img + "' style='width:40%' />" + "<img src='" + "/bootstrap_1/img/maxresdefault.jpg" + "' style='width:40%' />" + "</td>";
}
2024-11-18 16:41:34 +08:00
2024-10-01 02:34:26 +08:00
} else {
table += "<td>" + "<img src='" + Model.car_img + "' style='width:40%' />" + "<img src='" + Model.out_car_img + "' style='width:40%' />" + "</td>";
}
2024-11-18 16:41:34 +08:00
var options = { year: 'numeric', month: '2-digit', day: '2-digit', hour: '2-digit', minute: '2-digit', second: '2-digit' };
// 格式化進入時間
var timestampDtIn = new Date(Model.in_time);
var formattedInDate = timestampDtIn.toLocaleDateString('en-US', options);
// 格式化出去時間
var timestampDtOut = new Date(Model.out_time);
var formattedOutDate = timestampDtOut.toLocaleDateString('en-US', options);
// 建立表格內容
table += "<td id='create_data_time_id'>" +
"進入時間: " + formattedInDate + "<br/><br/>" +
"出去時間: " + (Model.out_time ? formattedOutDate : '沒有資料') +
"</td>";
2024-10-01 02:34:26 +08:00
document.getElementById("detail_car_data").innerHTML = table;
}
}
});
detail_car_data_view.showModal();
}
</script>
<!--透過車牌號碼搜尋-->
<script>
function serch_click() {
var license_plate_number = document.getElementById("serch_text_id").value
if (license_plate_number == "") {
get_data()
}
$.ajax({
type: "GET",
2024-11-18 16:41:34 +08:00
url: "http://localhost:7700/api/Yuntech_in_car_table/license_plate_number-" + license_plate_number,
2024-10-01 02:34:26 +08:00
data: {},
headers: {
'Authorization': token
},
contentType: "application/json",
headers: {
'Authorization': token
},
success: function (Model) {
console.log(Model)
All_Model = Model
2024-11-18 16:41:34 +08:00
2024-10-01 02:34:26 +08:00
set_data_license_plate_and_date(Model)
}
});
}
</script>
<!--透過日期搜尋紀錄-->
<script>
function serch_date_click() {
var name = document.getElementById("location_select_id").value
var start_date = document.getElementById("start_date_id").value
var end_date = document.getElementById("end_date_id").value
console.log(start_date)
// 隱藏上一頁按鈕
document.getElementById("lastPageButton").style.display = "none"
// 隱藏下一頁按鈕
document.getElementById("nextPageButton").style.display = "none"
$.ajax({
type: "GET",
2024-11-18 16:41:34 +08:00
url: "http://localhost:7700/api/Yuntech_in_car_table/location_name_1_-" + name + "-start_time-" + start_date + "-end_time-" + end_date,
2024-10-01 02:34:26 +08:00
data: {},
headers: {
'Authorization': token
},
contentType: "application/json",
headers: {
'Authorization': token
},
success: function (Model) {
console.log(Model)
All_Model = Model
set_data_license_plate_and_date(Model)
}
});
2024-11-18 16:41:34 +08:00
2024-10-01 02:34:26 +08:00
}
</script>
<!--透過進入位置搜尋-->
<script>
function location_select() {
var select_location = document.getElementById("location_select_id").value
console.log(select_location)
$.ajax({
type: "GET",
2024-11-18 16:41:34 +08:00
url: "http://localhost:7700/api/Yuntech_in_car_table/location-" + select_location,
2024-10-01 02:34:26 +08:00
data: {},
headers: {
'Authorization': token
},
contentType: "application/json",
headers: {
'Authorization': token
},
success: function (Model) {
//console.log(Model)
All_Model = Model
set_data(Model)
}
});
}
</script>
2024-11-18 16:41:34 +08:00
<!--輸出時間EXCEL-->
2024-10-01 02:34:26 +08:00
<script>
function export_excel_1() {
var name = document.getElementById("location_select_id").value;
var start_date = document.getElementById("start_date_id").value;
var end_date = document.getElementById("end_date_id").value;
2024-11-18 16:41:34 +08:00
if (!start_date || !end_date) {
alert("請選擇起始日期和結束日期");
return;
}
2024-10-01 02:34:26 +08:00
var start_time = new Date(start_date).toISOString();
var end_time = new Date(end_date).toISOString();
2024-11-18 16:41:34 +08:00
var sanitizedStartDate = start_date.replace(/[^\x20-\x7E]/g, "_");
var sanitizedEndDate = end_date.replace(/[^\x20-\x7E]/g, "_");
var url = `http://localhost:7700/api/Yuntech_in_car_table/location_name_2_-${name}-start_time-${sanitizedStartDate}-end_time-${sanitizedEndDate}-export_excel`;
2024-10-01 02:34:26 +08:00
fetch(url, {
method: 'GET',
headers: {
'Authorization': token
}
})
.then(response => {
2024-11-18 16:41:34 +08:00
2024-10-01 02:34:26 +08:00
if (!response.ok) {
throw new Error('Network response was not ok');
}
return response.blob();
})
.then(blob => {
2024-11-18 16:41:34 +08:00
const blobUrl = window.URL.createObjectURL(blob);
const currentTime = new Date();
const options = {
year: 'numeric',
month: '2-digit',
day: '2-digit',
hour: '2-digit',
minute: '2-digit',
hour12: false
};
const formattedTime = currentTime.toLocaleString('en-US', options)
.replace(/\//g, '-')
.replace(',', '')
.replace(/\s+/g, '_')
.replace(/:/g, '-');
const filename = `時間段內進入車輛-${encodeURIComponent(formattedTime)}.xlsx`;
2024-10-01 02:34:26 +08:00
const a = document.createElement('a');
2024-11-18 16:41:34 +08:00
a.href = blobUrl;
a.download = filename;
2024-10-01 02:34:26 +08:00
a.click();
2024-11-18 16:41:34 +08:00
window.URL.revokeObjectURL(blobUrl);
2024-10-01 02:34:26 +08:00
})
.catch(error => {
console.error('There was a problem with your fetch operation:', error);
});
}
2024-11-18 16:41:34 +08:00
</script>
2024-10-01 02:34:26 +08:00
<!--輸出總EXCEL-->
<script>
function export_excel() {
2024-11-18 16:41:34 +08:00
fetch('http://localhost:7700/api/Yuntech_in_car_table/export-all_excel', {
2024-10-01 02:34:26 +08:00
method: 'GET',
headers: {
'Authorization': token
}
})
.then(response => {
2024-11-18 16:41:34 +08:00
2024-10-01 02:34:26 +08:00
if (!response.ok) {
throw new Error('Network response was not ok');
}
2024-11-18 16:41:34 +08:00
2024-10-01 02:34:26 +08:00
return response.blob();
})
.then(blob => {
2024-11-18 16:41:34 +08:00
2024-10-01 02:34:26 +08:00
const url = window.URL.createObjectURL(blob);
2024-11-18 16:41:34 +08:00
2024-10-01 02:34:26 +08:00
const currentTime = new Date().toISOString().replace(/[-:]/g, "").replace(/\.\d{3}/g, "");
2024-11-18 16:41:34 +08:00
2024-10-01 02:34:26 +08:00
const filename = `總進入車輛-${currentTime}.xlsx`;
2024-11-18 16:41:34 +08:00
2024-10-01 02:34:26 +08:00
const a = document.createElement('a');
a.href = url;
2024-11-18 16:41:34 +08:00
a.download = filename;
2024-10-01 02:34:26 +08:00
a.click();
2024-11-18 16:41:34 +08:00
2024-10-01 02:34:26 +08:00
window.URL.revokeObjectURL(url);
})
.catch(error => {
console.error('There was a problem with your fetch operation:', error);
});
}
</script>
<!--檢查token-->
<script>
var token
function token_check() {
2024-11-18 16:41:34 +08:00
2024-10-01 02:34:26 +08:00
token = localStorage.getItem('token_park_space');
console.log(token)
$.ajax({
type: "GET",
2024-11-18 16:41:34 +08:00
url: 'http://localhost:7700/Users/token_check',
2024-10-01 02:34:26 +08:00
headers: {
'Authorization': token
},
success: function (response) {
console.log(response)
token_check = "true"
from_token_import_id()
},
error: function (xhr) {
token_check = "false"
window.location.href = '/';
2024-11-18 16:41:34 +08:00
2024-10-01 02:34:26 +08:00
//window.location.href = 'https://example.com/unauthorized_page';
}
});
}
function from_token_import_id() {
var token = localStorage.getItem('token_park_space');
$.ajax({
type: "GET",
2024-11-18 16:41:34 +08:00
url: 'http://localhost:7700/Users/token-' + token,
2024-10-01 02:34:26 +08:00
headers: {
'Authorization': token
},
success: function (response) {
console.log(response)
from_id_import_user_data(response)
}
});
}
function from_id_import_user_data(id) {
var token = localStorage.getItem('token_park_space');
$.ajax({
type: "GET",
2024-11-18 16:41:34 +08:00
url: 'http://localhost:7700/Users/user_id-' + id,
2024-10-01 02:34:26 +08:00
headers: {
'Authorization': token
},
success: function (model) {
model = model.result
position = model.lastname
console.log(position)
if (position == "engineer") {
get_data()
}
else {
window.location.href = '/';
}
}
});
}
</script>
<!--開機自啟-->
<script>
window.onload = token_check;
</script>