лаба3 готовая
This commit is contained in:
parent
42ad3e725e
commit
44ff5af2d8
@ -269,7 +269,7 @@ orders .container-products {
|
||||
margin-bottom: 3%;
|
||||
}
|
||||
.container-products img {
|
||||
width: 30%;
|
||||
width: 50px;
|
||||
padding: 2%;
|
||||
}
|
||||
cart .card,
|
||||
|
@ -48,7 +48,7 @@
|
||||
<label for="password">Пароль</label>
|
||||
<input type="password" name="password" required />
|
||||
</div>
|
||||
<a href="page4.html" class="btn">Войти</a>
|
||||
<a href="page-edit.html" class="btn">Войти</a>
|
||||
</form>
|
||||
</div>
|
||||
<div class="col">
|
||||
|
@ -34,28 +34,28 @@
|
||||
</header>
|
||||
<cart>
|
||||
<p class="title">КОРЗИНА</p>
|
||||
<div class="row row-cols-1 row-cols-md-2 row-col-lg-2 g-10">
|
||||
<div class="col">
|
||||
<div class="row">
|
||||
<div class="col-sm-8">
|
||||
<div class="container-products">
|
||||
<img src="images/sofa3.png" />
|
||||
<img src="images/sofa3.png" width="30%" />
|
||||
<p class="title-product">Диван 3</p>
|
||||
<p class="articul">Артикул 2352788</p>
|
||||
<p class="price">14 999 руб.</p>
|
||||
<a class="navbar-brand p-0" href="#">
|
||||
<img src="images/iconDelete.png" alt="Удалить" width="100" />
|
||||
<img src="images/iconDelete.png" alt="Удалить" width="25" />
|
||||
</a>
|
||||
</div>
|
||||
<div class="container-products">
|
||||
<img src="images/chair3.png" />
|
||||
<img src="images/chair3.png" width="30%" />
|
||||
<div class="title-product">Кресло</div>
|
||||
<div class="articul">Артикул 6488268</div>
|
||||
<div class="price">7 999 руб.</div>
|
||||
<a class="navbar-brand p-0" href="#">
|
||||
<img src="images/iconDelete.png" alt="Удалить" width="100" />
|
||||
<img src="images/iconDelete.png" alt="Удалить" width="25" />
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col">
|
||||
<div class="col-sm-4">
|
||||
<div class="card">
|
||||
<div class="row">
|
||||
<u>Ваша корзина</u>
|
||||
|
@ -108,7 +108,7 @@
|
||||
type="number"
|
||||
value="0"
|
||||
min="1000"
|
||||
step="100"
|
||||
step="1"
|
||||
required
|
||||
/>
|
||||
</div>
|
||||
|
File diff suppressed because one or more lines are too long
@ -340,7 +340,7 @@ export async function linesPageForm() {
|
||||
drawItemsSelect();
|
||||
|
||||
// func1 = (id) => {} аналогично function func1(id) {}
|
||||
const goBack = () => location.assign("/page4.html");
|
||||
const goBack = () => location.assign("/page-edit.html");
|
||||
|
||||
// Вызов функции обновления превью изображения при возникновении
|
||||
// события onchange в тэге input с id image
|
||||
@ -371,7 +371,7 @@ export async function linesPageForm() {
|
||||
// иначе устанавливается заглушка, адрес которой указан в imagePlaceholder
|
||||
cntrls.imagePreview.src = line.image ? line.image : imagePlaceholder;
|
||||
} catch {
|
||||
// в случае ошибки происходит возврат к page4
|
||||
// в случае ошибки происходит возврат к page-edit
|
||||
goBack();
|
||||
}
|
||||
}
|
||||
@ -432,7 +432,7 @@ export async function linesPageForm() {
|
||||
imageBase64
|
||||
);
|
||||
}
|
||||
// возврат к странице page4
|
||||
// возврат к странице page-edit
|
||||
goBack();
|
||||
});
|
||||
}
|
||||
|
@ -42,13 +42,13 @@
|
||||
<table id="items-table" class="table table-light table-striped">
|
||||
<thead>
|
||||
<th scope="col">№</th>
|
||||
<th scope="col" class="w-25">Категория</th>
|
||||
<th scope="col" class="w-25">Название</th>
|
||||
<th scope="col" class="w-25">Цена</th>
|
||||
<th scope="col" class="w-25">Количество</th>
|
||||
<th scope="col" class="w-25">Цвет</th>
|
||||
<th scope="col" class="w-25">Размеры</th>
|
||||
<th scope="col"></th>
|
||||
<th scope="col" class="w-10">Категория</th>
|
||||
<th scope="col" class="w-30">Название</th>
|
||||
<th scope="col" class="w-20">Цена</th>
|
||||
<th scope="col" class="w-10">Количество</th>
|
||||
<th scope="col" class="w-10">Цвет</th>
|
||||
<th scope="col" class="w-30">Размеры</th>
|
||||
<th scope="col" class="w-20">Общая цена</th>
|
||||
<th scope="col"></th>
|
||||
<th scope="col"></th>
|
||||
</thead>
|
||||
@ -114,7 +114,7 @@
|
||||
type="number"
|
||||
value="0"
|
||||
min="1000"
|
||||
step="100"
|
||||
step="1"
|
||||
required
|
||||
/>
|
||||
</div>
|
Loading…
Reference in New Issue
Block a user