289 lines
12 KiB
PHP
Executable File
289 lines
12 KiB
PHP
Executable File
<!doctype html>
|
|
<html lang="<?= config('language_code') ?>">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
|
<meta name="theme-color" content="#35A768">
|
|
<meta name="google" content="notranslate">
|
|
|
|
<meta property="og:title" content="<?= lang('page_title') . ' ' . vars('company_name') ?> | TFE Group" />
|
|
<meta property="og:url" content="<?= base_url() ?>">
|
|
<meta property="og:image" content="<?= base_url('assets/img/social-card.png') ?>" />
|
|
<meta property="og:type" content="website">
|
|
|
|
<?php slot('meta'); ?>
|
|
|
|
<title><?= lang('page_title') . ' ' . vars('company_name') ?> | TFE Group</title>
|
|
|
|
<link rel="icon" type="image/x-icon" href="<?= asset_url('assets/img/favicon.ico') ?>">
|
|
<link rel="icon" sizes="192x192" href="<?= asset_url('assets/img/logo.png') ?>">
|
|
|
|
<link rel="stylesheet" type="text/css" href="<?= asset_url('assets/vendor/cookieconsent/cookieconsent.min.css') ?>">
|
|
<link rel="stylesheet" type="text/css" href="<?= asset_url('assets/vendor/flatpickr/flatpickr.min.css') ?>">
|
|
<link rel="stylesheet" type="text/css" href="<?= asset_url('assets/vendor/flatpickr/material_green.min.css') ?>">
|
|
<link rel="stylesheet" type="text/css" href="<?= asset_url('assets/css/themes/' . vars('theme') . '.css') ?>">
|
|
<link rel="stylesheet" type="text/css" href="<?= asset_url('assets/css/general.css') ?>">
|
|
<link rel="stylesheet" type="text/css" href="<?= asset_url('assets/css/layouts/booking_layout.css') ?>">
|
|
|
|
<?php component('company_color_style', ['company_color' => vars('company_color')]); ?>
|
|
|
|
<?php slot('styles'); ?>
|
|
|
|
<style>
|
|
.search-container-wrapper {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
min-height: 589px;
|
|
}
|
|
|
|
.search-container-title {
|
|
color: #666666;
|
|
}
|
|
|
|
.search-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
width: 100%;
|
|
max-width: 400px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.search-container input {
|
|
width: 100%;
|
|
padding: 10px;
|
|
margin-bottom: 10px;
|
|
border-radius: 5px;
|
|
border: 1px solid #ccc;
|
|
}
|
|
|
|
.search-container button {
|
|
padding: 10px 20px;
|
|
background-color: #429a82;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
width: 100%;
|
|
}
|
|
|
|
.appointments-container {
|
|
display: none;
|
|
width: 100%;
|
|
max-width: 600px;
|
|
margin-top: 20px;
|
|
padding: 0 12px;
|
|
}
|
|
|
|
.no-appointments {
|
|
display: none;
|
|
color: red;
|
|
margin-top: 20px;
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="main" class="container">
|
|
<div class="row wrapper">
|
|
<div id="book-appointment-wizard" class="col-12 col-lg-10 col-xl-8 col-xxl-7">
|
|
<?php component('home_header', [
|
|
'company_name' => vars('company_name'),
|
|
'company_logo' => vars('company_logo'),
|
|
]); ?>
|
|
<div class="search-container-wrapper">
|
|
<h2 class="frame-title mt-md-5">查詢預約信息</h2>
|
|
<div class="search-container">
|
|
<input type="text" id="phoneNumber" placeholder="請輸入預約時的電話號">
|
|
<button id="searchButton">查 詢</button>
|
|
</div>
|
|
<div class="appointments-container" id="appointmentsContainer">
|
|
<h3>已預約資訊</h3>
|
|
<ul id="appointmentsList"></ul>
|
|
</div>
|
|
<div class="no-appointments" id="noAppointmentsMessage">
|
|
暫未檢索到預約資訊。
|
|
</div>
|
|
</div>
|
|
<?php component('booking_footer', ['display_login_button' => vars('display_login_button')]); ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php if (vars('display_cookie_notice') === '1'): ?>
|
|
<?php component('cookie_notice_modal', ['cookie_notice_content' => vars('cookie_notice_content')]); ?>
|
|
<?php endif; ?>
|
|
|
|
<?php if (vars('display_terms_and_conditions') === '1'): ?>
|
|
<?php component('terms_and_conditions_modal', [
|
|
'terms_and_conditions_content' => vars('terms_and_conditions_content'),
|
|
]); ?>
|
|
<?php endif; ?>
|
|
|
|
<?php if (vars('display_privacy_policy') === '1'): ?>
|
|
<?php component('privacy_policy_modal', ['privacy_policy_content' => vars('privacy_policy_content')]); ?>
|
|
<?php endif; ?>
|
|
|
|
<script src="<?= asset_url('assets/vendor/jquery/jquery.min.js') ?>"></script>
|
|
<script src="<?= asset_url('assets/vendor/cookieconsent/cookieconsent.min.js') ?>"></script>
|
|
<script src="<?= asset_url('assets/vendor/@popperjs-core/popper.min.js') ?>"></script>
|
|
<script src="<?= asset_url('assets/vendor/bootstrap/bootstrap.min.js') ?>"></script>
|
|
<script src="<?= asset_url('assets/vendor/moment/moment.min.js') ?>"></script>
|
|
<script src="<?= asset_url('assets/vendor/moment-timezone/moment-timezone-with-data.min.js') ?>"></script>
|
|
<script src="<?= asset_url('assets/vendor/@fortawesome-fontawesome-free/fontawesome.min.js') ?>"></script>
|
|
<script src="<?= asset_url('assets/vendor/@fortawesome-fontawesome-free/solid.min.js') ?>"></script>
|
|
<script src="<?= asset_url('assets/vendor/tippy.js/tippy-bundle.umd.min.js') ?>"></script>
|
|
<script src="<?= asset_url('assets/vendor/flatpickr/flatpickr.min.js') ?>"></script>
|
|
|
|
<script src="<?= asset_url('assets/js/app.js') ?>"></script>
|
|
<script src="<?= asset_url('assets/js/utils/date.js') ?>"></script>
|
|
<script src="<?= asset_url('assets/js/utils/file.js') ?>"></script>
|
|
<script src="<?= asset_url('assets/js/utils/http.js') ?>"></script>
|
|
<script src="<?= asset_url('assets/js/utils/lang.js') ?>"></script>
|
|
<script src="<?= asset_url('assets/js/utils/message.js') ?>"></script>
|
|
<script src="<?= asset_url('assets/js/utils/string.js') ?>"></script>
|
|
<script src="<?= asset_url('assets/js/utils/url.js') ?>"></script>
|
|
<script src="<?= asset_url('assets/js/utils/validation.js') ?>"></script>
|
|
<script src="<?= asset_url('assets/js/http/localization_http_client.js') ?>"></script>
|
|
|
|
|
|
<script>
|
|
function doSearch() {
|
|
var phoneNumber = document.getElementById('phoneNumber').value;
|
|
|
|
if (phoneNumber.trim() === '') {
|
|
alert('请输入有效的手机号');
|
|
return;
|
|
}
|
|
|
|
const url = App.Utils.Url.siteUrl('customers/search_by_phone');
|
|
|
|
const data = {
|
|
csrf_token: vars('csrf_token'),
|
|
phone_number: phoneNumber,
|
|
};
|
|
|
|
$.post(url, data).done((response) => {
|
|
// console.log('data',typeof(data));
|
|
const data = JSON.parse(response);
|
|
|
|
if (data.success && data.appointments.length > 0) {
|
|
displayAppointments(data.appointments);
|
|
} else {
|
|
showNoAppointmentsMessage();
|
|
}
|
|
});
|
|
}
|
|
|
|
document.getElementById('searchButton').addEventListener('click', function() {
|
|
|
|
doSearch();
|
|
});
|
|
|
|
function displayAppointments(appointments) {
|
|
var appointmentsContainer = document.getElementById('appointmentsContainer');
|
|
var appointmentsList = document.getElementById('appointmentsList');
|
|
|
|
appointmentsList.innerHTML = '';
|
|
appointments.forEach(function(appointment) {
|
|
var listItem = document.createElement('li');
|
|
|
|
// 创建服务名称和提供者姓名的 div
|
|
var serviceDiv = document.createElement('div');
|
|
serviceDiv.textContent = `${appointment.service.name} - ${appointment.provider.last_name}${appointment.provider.first_name}`;
|
|
|
|
// 创建预约客户 div
|
|
// var nameDiv = document.createElement('div');
|
|
// nameDiv.textContent = `預約人:${appointment.customer.last_name}${appointment.customer.first_name}`;
|
|
|
|
// 创建预约时间的 div
|
|
var timeDiv = document.createElement('div');
|
|
timeDiv.textContent = `開始時間:${appointment.start}`;
|
|
|
|
// 创建结束时间的 div
|
|
var endDiv = document.createElement('div');
|
|
endDiv.textContent = `結束時間:${appointment.end}`;
|
|
|
|
// 创建状态的 div
|
|
var statusDiv = document.createElement('div');
|
|
statusDiv.textContent = `狀態:${appointment.status}`;
|
|
|
|
// 将每个 div 添加到 li 中
|
|
listItem.appendChild(serviceDiv);
|
|
// listItem.appendChild(nameDiv);
|
|
listItem.appendChild(timeDiv);
|
|
listItem.appendChild(endDiv);
|
|
listItem.appendChild(statusDiv);
|
|
|
|
// 如果状态是“已预约”,添加取消预约按钮
|
|
if (appointment.status === '已預約') {
|
|
var cancelButton = document.createElement('button');
|
|
cancelButton.textContent = '取消預約';
|
|
cancelButton.className = 'btn btn-danger'; // 添加一些样式类名
|
|
cancelButton.addEventListener('click', function() {
|
|
// 确认对话框
|
|
var confirmCancel = confirm('您確定要取消這個預約嗎?');
|
|
|
|
if (confirmCancel) {
|
|
// 添加取消预约的逻辑
|
|
// 例如,发起一个请求到服务器取消预约
|
|
console.log(`取消預約:${appointment.id}`);
|
|
// 这里可以添加实际的请求代码
|
|
const url = App.Utils.Url.siteUrl('customers/cancel');
|
|
|
|
const data = {
|
|
csrf_token: vars('csrf_token'),
|
|
appointmentId: appointment.id,
|
|
};
|
|
|
|
$.post(url, data).done((data) => {
|
|
// console.log('data',response);
|
|
if (data.success) {
|
|
//重新加载
|
|
doSearch();
|
|
alert('取消預約成功。');
|
|
} else {
|
|
alert('取消預約失敗。');
|
|
}
|
|
});
|
|
}
|
|
});
|
|
listItem.appendChild(cancelButton);
|
|
}
|
|
|
|
var br = document.createElement('hr');
|
|
listItem.appendChild(br);
|
|
|
|
// 将 li 添加到 ul 或 ol 列表中
|
|
appointmentsList.appendChild(listItem);
|
|
});
|
|
|
|
appointmentsContainer.style.display = 'block';
|
|
document.getElementById('noAppointmentsMessage').style.display = 'none';
|
|
}
|
|
|
|
function showNoAppointmentsMessage() {
|
|
document.getElementById('appointmentsContainer').style.display = 'none';
|
|
document.getElementById('noAppointmentsMessage').style.display = 'block';
|
|
}
|
|
</script>
|
|
|
|
<?php component('js_vars_script'); ?>
|
|
<?php component('js_lang_script'); ?>
|
|
|
|
<?php component('google_analytics_script', ['google_analytics_code' => vars('google_analytics_code')]); ?>
|
|
<?php component('matomo_analytics_script', [
|
|
'matomo_analytics_url' => vars('matomo_analytics_url'),
|
|
'matomo_analytics_site_id' => vars('matomo_analytics_site_id'),
|
|
]); ?>
|
|
|
|
<?php slot('scripts'); ?>
|
|
|
|
</body>
|
|
|
|
</html>
|