add vehicle service profile settings

This commit is contained in:
VPN SaaS Dev
2026-05-12 04:52:42 +09:00
parent b5012ec6e7
commit e75697f83e
10 changed files with 496 additions and 5 deletions

View File

@@ -11,13 +11,14 @@
<link rel="stylesheet" href="/static/styles.css" />
<script src="https://telegram.org/js/telegram-web-app.js"></script>
</head>
<body>
<body class="auth-required">
<div class="auth-overlay" id="authOverlay">
<div class="auth-panel">
<p class="eyebrow">Drivers</p>
<h1>Гараж</h1>
<p>Войди через Telegram, чтобы привязать гараж к твоему chat_id.</p>
<div id="telegramLoginSlot" class="telegram-login-slot"></div>
<a id="telegramLoginLink" class="telegram-login-link hidden" href="#" target="_blank" rel="noreferrer">Войти через Telegram</a>
</div>
</div>
<main class="shell">
@@ -216,6 +217,7 @@
<button class="icon-btn" id="closeMenuBtn" aria-label="Закрыть">×</button>
</div>
<button class="menu-row" id="openCarFormBtn">Добавить автомобиль</button>
<button class="menu-row" id="openCarProfileBtn">Параметры автомобиля</button>
<button class="menu-row" id="openSettingsBtn">Локаль и валюта</button>
<button class="menu-row" id="openNotificationsBtn">Уведомления</button>
<button class="menu-row" id="openScanBtn">Сканировать чек</button>
@@ -291,6 +293,64 @@
<button type="submit">Добавить авто</button>
</form>
</section>
<section class="drawer-section hidden" id="carProfileSection">
<h2>Параметры авто</h2>
<div class="tip-card" id="carProfileHint">Выбери автомобиль, чтобы настроить жидкости, расход и сервисные нормы.</div>
<form id="carProfileForm" class="grid-form drawer-form">
<label>
Тип топлива
<select name="fuel_type">
<option value="">Не задано</option>
<option value="gasoline">Бензин</option>
<option value="diesel">Дизель</option>
<option value="hybrid">Гибрид</option>
<option value="electric">Электро</option>
</select>
</label>
<label>
Нормальный расход, л/100 км
<input name="target_consumption_l_per_100km" type="number" min="0" step="0.01" placeholder="8.50" />
</label>
<label>
Бак, л
<input name="fuel_tank_volume_l" type="number" min="0" step="0.01" placeholder="60" />
</label>
<label>
Моторное масло
<input name="engine_oil_type" placeholder="5W-30 API SP" />
</label>
<label>
Объем масла, л
<input name="engine_oil_volume_l" type="number" min="0" step="0.01" placeholder="4.50" />
</label>
<label>
Трансмиссионная жидкость
<input name="transmission_fluid_type" placeholder="ATF WS / DCTF / CVT" />
</label>
<label>
Объем трансмиссии, л
<input name="transmission_fluid_volume_l" type="number" min="0" step="0.01" placeholder="7.20" />
</label>
<label>
Антифриз
<input name="coolant_type" placeholder="G12+ / LLC" />
</label>
<label>
Тормозная жидкость
<input name="brake_fluid_type" placeholder="DOT 4" />
</label>
<label>
Давление перед, bar
<input name="tire_pressure_front_bar" type="number" min="0" step="0.01" placeholder="2.30" />
</label>
<label>
Давление зад, bar
<input name="tire_pressure_rear_bar" type="number" min="0" step="0.01" placeholder="2.20" />
</label>
<button type="submit">Сохранить параметры</button>
</form>
</section>
</div>
</div>