-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (88 loc) · 4.29 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<title>Магазин</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-12 col-xxl-5">
<div class="goods_box" id="goods">
<div class="menu">
<input type="text" placeholder="Поиск" class="search">
<button type="button" class="btn btn-success" data-bs-toggle="modal" data-bs-target="#exampleModal">✚</button>
</div>
<div class="table-responsive">
<table class="goods table mt-3" id="table1">
<thead>
<tr class="table-primary align-middle">
<th data-type="number">№</th>
<th data-type="string">Название</th>
<th data-type="number">Цена, ₽</th>
<th data-type="number">Количество</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody class="list">
</tbody>
</table>
</div>
</div>
</div>
<div class="col-xs-12 col-xxl-7">
<div class="price_box">
<div class="menu">
<div class="price_title">Итого: <span class="price_result">0 ₽</span></div>
</div>
<div class="table-responsive">
<table class="price table mt-3" id="table2">
<thead>
<tr class="table-primary align-middle">
<th data-type="number">№</th>
<th data-type="string">Название</th>
<th data-type="number">Цена/ш, ₽</th>
<th data-type="number">Количество</th>
<th>Скидка, %</th>
<th data-type="number">Цена, ₽</th>
<th></th>
</tr>
</thead>
<tbody class="cart">
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="exampleModalLabel">Добавить товар</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<Label for="good_name" class="form-label">Название товара</Label>
<input type="text" class="form-control mb-3" id="good_name" maxlength="40">
<Label for="good_price" class="form-label">Цена</Label>
<input type="text" class="form-control mb-3" id="good_price">
<Label for="good_count" class="form-label">Количество</Label>
<input type="text" class="form-control mb-3" id="good_count" min="1" value="1">
<button type="submit" class="add_new btn btn-success">Сохранить</button>
</div>
</div>
</div>
</div>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/sweetalert2.all.min.js"></script>
<script src="js/list.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>