update 15:15

This commit is contained in:
2024-01-26 15:17:05 +07:00
parent 6d8b69c2b7
commit d2188f2742
5 changed files with 17 additions and 7 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1,5 +1,8 @@
<script> <script>
$(document).ready(function () { $(document).ready(function () {
// Popup
Fancybox.bind("[data-fancybox]", {});
// Sự kiện click để hiển thị menu // Sự kiện click để hiển thị menu
$('#js-show-menu').click(function () { $('#js-show-menu').click(function () {
capNhatTrangThaiMenu(false); capNhatTrangThaiMenu(false);

View File

@@ -206,7 +206,7 @@
> >
<input type="button" value="Quay lại" <input type="button" value="Quay lại"
class="bg-[#9e9e9e] cursor-pointer font-[500] h-[32px] p-[0_15px] rounded-[4px] text-[#fff]" class="bg-[#ECECEC] cursor-pointer font-[500] h-[32px] p-[0_12px] rounded-[4px] text-[#9E9E9E]"
onclick="$('#js-payment-status-holder').hide()" onclick="$('#js-payment-status-holder').hide()"
> >
</div> </div>
@@ -237,7 +237,7 @@
> >
<input type="button" value="Quay lại" <input type="button" value="Quay lại"
class="bg-[#9e9e9e] cursor-pointer font-[500] h-[32px] p-[0_15px] rounded-[4px] text-[#fff]" class="bg-[#ECECEC] cursor-pointer font-[500] h-[32px] p-[0_12px] rounded-[4px] text-[#9E9E9E]"
onclick="$('#js-fulfillment-status-holder').hide()" onclick="$('#js-fulfillment-status-holder').hide()"
> >
</div> </div>
@@ -256,12 +256,12 @@
<div> <div>
<textarea placeholder="Ghi chú" id="js-order-comment" class="m-[10px_0] block w-[100%] min-h-[76px] max-h-[120px] border border-[#D8D8D8] rounded-[4px] p-[8px]"></textarea> <textarea placeholder="Ghi chú" id="js-order-comment" class="m-[10px_0] block w-[100%] min-h-[76px] max-h-[120px] border border-[#D8D8D8] rounded-[4px] p-[8px]"></textarea>
</div> </div>
<div style="margin-top: 5px;">
<div style="margin-top: 5px;">
<select id="js-order-status-select" class="m-[10px_0] block w-[100%] h-[30px] border border-[#D8D8D8] rounded-[4px]"> <select id="js-order-status-select" class="m-[10px_0] block w-[100%] h-[30px] border border-[#D8D8D8] rounded-[4px]">
<option value="">--Chọn trạng thái--</option> <option value="">--Chọn trạng thái--</option>
<option value="new">Mới</option> <option value="new">Mới</option>
<option value="processing" selected="">Đang xử lý</option> <option value="processing">Đang xử lý</option>
<option value="success">Thành công</option> <option value="success">Thành công</option>
<option value="closed">Đóng lại</option> <option value="closed">Đóng lại</option>
<option value="canceled">Hủy</option> <option value="canceled">Hủy</option>
@@ -272,7 +272,7 @@
> >
<input type="button" value="Quay lại" <input type="button" value="Quay lại"
class="bg-[#9e9e9e] cursor-pointer font-[500] h-[32px] p-[0_15px] rounded-[4px] text-[#fff]" class="bg-[#ECECEC] cursor-pointer font-[500] h-[32px] p-[0_12px] rounded-[4px] text-[#9E9E9E]"
onclick="$('#js-order-status-holder').hide()" onclick="$('#js-order-status-holder').hide()"
> >
</div> </div>

View File

@@ -14,9 +14,11 @@
<link href="https://cdn.jsdelivr.net/npm/daisyui@4.6.0/dist/full.min.css" rel="stylesheet" type="text/css" /> <link href="https://cdn.jsdelivr.net/npm/daisyui@4.6.0/dist/full.min.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
<link rel="stylesheet" media="screen" href="{{ 'fancybox.css' | asset_url }}" />
<link rel="stylesheet" media="screen" href="{{ 'pc_style.css' | asset_url }}" /> <link rel="stylesheet" media="screen" href="{{ 'pc_style.css' | asset_url }}" />
<script src="{{ 'tailwindcss.js' | asset_url }}"></script> <script src="{{ 'tailwindcss.js' | asset_url }}"></script>
<script src="{{ 'fancybox.js' | asset_url }}"></script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.3.1/dist/jquery.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/jquery@3.3.1/dist/jquery.min.js"></script>
</head> </head>