Files
admin_hura_8/template/product/spec_group_add.html

77 lines
3.8 KiB
HTML
Raw Normal View History

2025-12-10 19:20:39 +07:00
<div class="w-full mb-[50px]">
2024-03-04 13:26:05 +07:00
2025-12-10 19:20:39 +07:00
<div class="text-sm breadcrumbs">
2024-03-04 13:26:05 +07:00
<ul>
<li><a href="/admin/product/spec-group">Nhóm thông số kỹ thuật</a></li>
<li><a href="/admin/product/spec-group-info">Thông tin nhóm thông số kỹ thuật</a></li>
2025-12-10 19:20:39 +07:00
<li class="text-active">Form thông số kỹ thuật</li>
2024-03-04 13:26:05 +07:00
</ul>
</div>
2025-12-10 19:20:39 +07:00
<div class="w-7xl mx-auto">
<div class="bg-white p-3 rounded-sm shadow mt-5">
2024-03-04 13:26:05 +07:00
<div>
2025-12-10 19:20:39 +07:00
<h1 class="text-xl font-bold">Cập nhật thông số kỹ thuật</h1>
<span class="text-gray-500">Thông tin chung</span>
2024-03-04 13:26:05 +07:00
</div>
</div>
2025-12-10 19:20:39 +07:00
<div class="grid grid-cols-4 mt-5 gap-5">
<div class="left">
2024-03-04 13:26:05 +07:00
<div class="list-tab">
<a href="javascript:void(0)"
2025-12-10 19:20:39 +07:00
class="item block w-full text-white bg-[#0041E8] rounded-sm text-[13px] p-2">Nội
2024-03-04 13:26:05 +07:00
dung</a>
</div>
</div>
2025-12-10 19:20:39 +07:00
<div class="right col-span-3">
<div class="bg-white p-3 rounded-sm shadow">
2024-03-04 13:26:05 +07:00
2025-12-10 19:20:39 +07:00
<div class="form-control mt-5">
<label class="font-bold text-base">Header</label>
2024-03-04 13:26:05 +07:00
<input type="text" size="60" name="info[title]" id="title" value="{{page.item_info.title}}"
2025-12-10 19:20:39 +07:00
placeholder="Thông tin chung" class="w-full input rounded-sm shadow mt-3" />
2024-03-04 13:26:05 +07:00
</div>
2025-12-10 19:20:39 +07:00
<div class="form-control mt-5">
<label class="font-bold text-base">Tên thông số (*)</label>
2024-03-04 13:26:05 +07:00
<input type="text" size="60" name="" placeholder="Hãng sản xuất"
2025-12-10 19:20:39 +07:00
class="w-full input rounded-sm shadow mt-3" />
2024-03-04 13:26:05 +07:00
</div>
2025-12-10 19:20:39 +07:00
<div class="form-control mt-5">
<label class="font-bold text-base">Diễn dải</label>
2024-03-04 13:26:05 +07:00
<textarea type="text" size="60" name="" placeholder="Diễn dải"
2025-12-10 19:20:39 +07:00
class="w-full textarea rounded-sm shadow mt-3"></textarea>
2024-03-04 13:26:05 +07:00
</div>
2025-12-10 19:20:39 +07:00
<div class="form-control mt-5 flex items-center gap-3">
<label class="font-bold text-base">Thứ tự hiển thị</label>
2024-03-04 13:26:05 +07:00
<input type="text" size="60" name="" placeholder="Thứ tự hiển thị"
2025-12-10 19:20:39 +07:00
class="w-[30%] input rounded-sm shadow" />
2024-03-04 13:26:05 +07:00
</div>
2025-12-10 19:20:39 +07:00
<div class="mt-5 flex items-center gap-5">
<label class="font-bold text-base">Bắt buộc nhập cho sp</label>
<div class="flex items-center gap-3">
<label class="check-form cursor-pointer flex items-center gap-2">
<input type="radio" class="radio radio-active radio-sm" name="info[scope]" value="0"
checked="">
<div for="" class="label-text text-[#6B7280]">Bắt buộc</div>
</label>
<label class="check-form cursor-pointer flex items-center gap-2">
<input type="radio" class="radio radio-active radio-sm" name="info[scope]" value="1">
<div for="" class="label-text text-[#6B7280]">Không bắt buộc</div>
</label>
2024-03-04 13:26:05 +07:00
</div>
</div>
</div>
2025-12-10 19:20:39 +07:00
<div class="bg-white p-3 shadow rounded-sm mt-5">
<input class="btn btn-active" id="submit-collection-btn" name="commit" type="submit"
value="Cập nhật" />
2024-03-04 13:26:05 +07:00
</div>
</div>
</div>
</div>
</div>