add price policy
This commit is contained in:
@@ -7,6 +7,11 @@
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
<link rel="stylesheet" href="assets/css/style.css">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
||||
<style>
|
||||
.tab-item.active {
|
||||
background: var(--primary-blue);
|
||||
color: var(--white);
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="page-wrapper">
|
||||
@@ -42,30 +47,7 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Bottom Navigation -->
|
||||
<div class="bottom-nav">
|
||||
<a href="index.html" class="nav-item">
|
||||
<i class="fas fa-home"></i>
|
||||
<span>Trang chủ</span>
|
||||
</a>
|
||||
<a href="loyalty.html" class="nav-item">
|
||||
<i class="fas fa-star"></i>
|
||||
<span>Hội viên</span>
|
||||
</a>
|
||||
<a href="promotions.html" class="nav-item">
|
||||
<i class="fas fa-tags"></i>
|
||||
<span>Khuyến mãi</span>
|
||||
</a>
|
||||
<a href="notifications.html" class="nav-item">
|
||||
<i class="fas fa-bell"></i>
|
||||
<span>Thông báo</span>
|
||||
</a>
|
||||
<a href="account.html" class="nav-item active">
|
||||
<i class="fas fa-user"></i>
|
||||
<span>Cài đặt</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
// Sample project data
|
||||
@@ -199,21 +181,20 @@
|
||||
<div class="order-content">
|
||||
<div class="d-flex justify-between align-start mb-2">
|
||||
<h4 class="order-id">#${project.id}</h4>
|
||||
<span class="order-amount">${formatCurrency(project.budget)}</span>
|
||||
<!--<span class="order-amount">${formatCurrency(project.budget)}</span>-->
|
||||
</div>
|
||||
|
||||
<div class="order-details">
|
||||
<p class="order-date">Ngày nộp: ${formatDate(project.submittedDate)}</p>
|
||||
<p class="order-customer">Khách hàng: ${project.customer}</p>
|
||||
<p class="order-customer">Tên công trình: ${project.name}</p>
|
||||
<p class="order-date">Ngày nộp: ${formatDate(project.submittedDate)}</p>
|
||||
<p class="order-customer">Diện tích: ${project.area}</p>
|
||||
<p class="order-status-text">
|
||||
<span class="status-badge ${project.status}">${getStatusText(project.status)}</span>
|
||||
${project.status === 'approved' || project.status === 'completed' ? `
|
||||
<span class="ml-2 text-xs text-gray-500">${project.progress}% hoàn thành</span>
|
||||
` : ''}
|
||||
|
||||
</p>
|
||||
<p class="order-note">${project.name} - Diện tích: ${project.area}</p>
|
||||
<!--<p class="order-note">${project.name} - Diện tích: ${project.area}</p>
|
||||
${project.description ? `
|
||||
<p class="text-xs text-gray-600 mt-1">${project.description}</p>
|
||||
<p class="text-xs text-gray-600 mt-1">${project.description}</p>-->
|
||||
` : ''}
|
||||
${project.status === 'rejected' && project.rejectionReason ? `
|
||||
<p class="text-xs text-red-600 mt-2 bg-red-50 p-2 rounded">
|
||||
|
||||
Reference in New Issue
Block a user