41 lines
1.6 KiB
HTML
41 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; connect-src https://autoatend.linco.work">
|
|
<title>Tela de Atendimento</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<script src="res/js/jquery/jquery.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="list-view">
|
|
<h1>Fila</h1>
|
|
<h3><span id="queue-number"></span></h3>
|
|
<ul id="item-list">
|
|
<!-- Itens serão carregados aqui -->
|
|
</ul>
|
|
<button id="next-button" disabled><span id="counter-start"></span> Iniciar atendimento</button>
|
|
<!-- <button id="sendto-button" disabled>Encaminhar</button> -->
|
|
<button id="logout-button">Trocar Colaborador</button>
|
|
|
|
</div>
|
|
|
|
<div id="obs-view" style="display: none;">
|
|
<h1>Observações</h1>
|
|
<p>Atendendo: <span id="selected-item-name"></span></p>
|
|
<input type="hidden" name="idAtend" id="idAtend">
|
|
<textarea id="observation-text" rows="10" cols="50" placeholder="Digite suas observações..."></textarea>
|
|
<button id="save-button">Finalizar atendimento</button>
|
|
</div>
|
|
|
|
<div id="encaminhar-view" style="display: none;">
|
|
<h1>Observações</h1>
|
|
<p>Atendendo: <span id="selected-item-name"></span></p>
|
|
<textarea id="enc-observation-text" rows="10" cols="50" placeholder="Digite suas observações..."></textarea>
|
|
<button id="save-button">Salvar</button>
|
|
</div>
|
|
|
|
<script src="renderer.js"></script>
|
|
|
|
</body>
|
|
</html> |