NginxFileSystem

Remove Reactors and Working Directory
AppSettings
This commit is contained in:
2024-03-18 12:59:15 -07:00
parent 127634f5ab
commit 811f45a7df
33 changed files with 499 additions and 530 deletions

View File

@ -17,8 +17,8 @@ function getUrlParameter(param) {
return false;
}
function setWafers(waferMap) {
var slots = waferMap.split("");
function setSlots(slotMap) {
var slots = slotMap.split("");
if (slots.length !== 25)
throw Error;
$('.slot').each(function (index) {
@ -36,7 +36,7 @@ function setValues(data) {
clearMap();
else {
$('#waferCount').val(data.total);
setWafers(data.waferMap);
setSlots(data.slotMap);
$('#lastDateTime').text(new Date().toLocaleString());
}
}
@ -48,7 +48,7 @@ function clearText() {
}
function clearMap() {
setWafers('0000000000000000000000000');
setSlots('0000000000000000000000000');
}
function poll() {
@ -59,7 +59,7 @@ function poll() {
}
else if (_count > -1) {
_count++;
$.get(_apiUrl + $("#toolId").val() + '/last-quantity-and-wafer-map/?area=' + $("#operation").val(), function (data) {
$.get(_apiUrl + $("#toolId").val() + '/last-quantity-and-slot-map/?area=' + $("#operation").val(), function (data) {
setValues(data);
}).fail(function () {
ShowErrorMessage("Error");
@ -68,7 +68,7 @@ function poll() {
}
function save() {
$.get(_apiUrl + $("#toolId").val() + '/last-quantity-and-wafer-map-with-text/?area=' + $("#operation").val() + '&text=' + $("#lot").val(), function (data) {
$.get(_apiUrl + $("#toolId").val() + '/last-quantity-and-slot-map-with-text/?area=' + $("#operation").val() + '&text=' + $("#lot").val(), function (data) {
setValues(data);
}).fail(function () {
ShowErrorMessage("Error");

View File

@ -6,9 +6,9 @@
<meta name="viewport" content="width=device-width" />
<title>Wafer Counter</title>
<script src="js/jquery-3.6.0.min.js?v=2024-03-09_09-00" type="text/javascript"></script>
<script src="js/wafer-counter.js?v=2024-03-09_09-00" type="text/javascript"></script>
<script src="js/common.js?v=2024-03-09_09-00" type="text/javascript"></script>
<script src="js/jquery-3.6.0.min.js?v=2024-03-13_13-22" type="text/javascript"></script>
<script src="js/wafer-counter.js?v=2024-03-13_13-22" type="text/javascript"></script>
<script src="js/common.js?v=2024-03-13_13-22" type="text/javascript"></script>
<script type="module"
src="package/dist/infineon-design-system-stencil/infineon-design-system-stencil.esm.js"></script>