-
Notifications
You must be signed in to change notification settings - Fork 0
/
goods.html
84 lines (63 loc) · 2.2 KB
/
goods.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
<!DOCTYPE html>
<html lang="ru">
@@include('head.html')
<body>
@@include('header.html')
<main>
@@include('sidebar.html', {
"create-item-class": "",
"tasks-item-class": "",
"invoice-item-class": "",
"goods-item-class": "sidebar__item--active",
"clients-item-class": "",
"shops-item-class": "",
"trade-reps-item-class": ""
})
<section class="content">
@@include('breadcrumbs.html')
<section class="select">
<label for="select-city"><span>Город</span></label>
@@include('select-city.html')
<label for="select-warehouse"><span>Склад</span></label>
@@include('select-warehouse.html')
</section>
<section class="data">
<table id="table-goods" class="data-table data-table--goods">
<thead>
<tr>
<td class="hd-num">№</td>
<td class="hd-sku">SKU</td>
<td class="hd-title">Название</td>
<td class="hd-category">Категория</td>
<td class="hd-brand">Бренд</td>
<td class="hd-mrc">МРЦ</td>
<td class="hd-photo">Фото</td>
</tr>
</thead>
<tbody>
<tr>
<td class="col-num">1</td>
<td class="col-sku">4604575748</td>
<td class="col-title">Сок J7 яблочный 1л</td>
<td class="col-category">Соки</td>
<td class="col-brand">J7</td>
<td class="col-mrc">75</td>
<td class="col-photo"><a href="" class="btn btn--table btn--load">Загрузить</a></td>
</tr>
<tr>
<td class="col-num">1</td>
<td class="col-sku">4604575748</td>
<td class="col-title">Кофе Jakobs 400г</td>
<td class="col-category">Кофе</td>
<td class="col-brand">Jakobs</td>
<td class="col-mrc">450</td>
<td class="col-photo"><a href="" class="btn btn--table btn--photo"></a></td>
</tr>
</tbody>
</table>
</section>
</section>
</main>
@@include('footer.html')
</body>
</html>