first commit
This commit is contained in:
10
resources/views/activitiesParticipant.blade.php
Normal file
10
resources/views/activitiesParticipant.blade.php
Normal file
@ -0,0 +1,10 @@
|
||||
@extends('layouts.activitiesParticipant')
|
||||
|
||||
@section('content-page')
|
||||
|
||||
|
||||
<h3 style="font-weight: 700; text-align:center;">請選擇上方的項目瀏覽</h3>
|
||||
|
||||
|
||||
|
||||
@endsection
|
35
resources/views/activitiesParticipantBrainStroke.blade.php
Normal file
35
resources/views/activitiesParticipantBrainStroke.blade.php
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
43
resources/views/activitiesParticipantInfo.blade.php
Normal file
43
resources/views/activitiesParticipantInfo.blade.php
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
531
resources/views/activitiesParticipantPlay.blade.php
Normal file
531
resources/views/activitiesParticipantPlay.blade.php
Normal file
File diff suppressed because one or more lines are too long
82
resources/views/activitiesParticipantPlayFillForm.blade.php
Normal file
82
resources/views/activitiesParticipantPlayFillForm.blade.php
Normal file
@ -0,0 +1,82 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-8 main-area">
|
||||
|
||||
<h1 style="text-align: center;">活動站</h1>
|
||||
<h3 style="text-align: center;"><hr style="width:2em; display: inline-block"></h3>
|
||||
<h2 style="text-align: center;">快問快答抽獎登記</h2>
|
||||
|
||||
<form method="POST" action="?" style="font-size: 1.4em;">
|
||||
@csrf
|
||||
@if ($errors->any())
|
||||
<div class="text-left mt-3 alert alert-block alert-dismissible alert-danger">
|
||||
<span type="button" class="close" data-bs-dismiss="alert">×</span>
|
||||
<ul>
|
||||
@foreach ($errors->all() as $error)
|
||||
<li>{{ $error }}</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
</div>
|
||||
@endif
|
||||
@if ($message = Session::get('success'))
|
||||
<div class="text-left mt-3 alert alert-block alert-dismissible alert-success ">
|
||||
<span type="button" class="close" data-bs-dismiss="alert">×</span>
|
||||
<strong>{{ $message }}</strong>
|
||||
</div>
|
||||
@endif
|
||||
<div class="card" style="display:none;">
|
||||
<div class="card-body">
|
||||
|
||||
<div class="mb-3">
|
||||
<label for="regName" class="form-label">姓名</label>
|
||||
<input type="text" class="form-control" id="regName" name="name" required value="{{ old('name') }}">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label for="regIdNumber" class="form-label">身份證字號</label>
|
||||
<input type="text" class="form-control" id="regIdNumber" name="id_number" required value="{{ old('id_number') }}">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label for="regEmail" class="form-label">電子信箱</label>
|
||||
<input type="email" class="form-control" id="regEmail" name="email" required value="{{ old('email') }}">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label for="regPhone" class="form-label">手機</label>
|
||||
<input type="text" class="form-control" id="regPhone" name="phone" required value="{{ old('phone') }}" placeholder="範例:09xxxxxxxx">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label for="county_box" class="form-label">戶籍地(限設籍高雄市民參與)</label>
|
||||
|
||||
<div class="dropdown">
|
||||
<select name="address" id="county_box1" class="form-select" required>
|
||||
<option value="" selected disabled>選擇縣市</option>
|
||||
<option value="高雄市">高雄市</option>
|
||||
</select>
|
||||
<select name="district" id="district_box" style="visibility:hidden;">
|
||||
<option value="">選擇鄉鎮市區</option>
|
||||
</select>
|
||||
<input type="text" id="zipcode_box" placeholder="郵遞區號" style="visibility:hidden;">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mb-3">
|
||||
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<input type="checkbox" class="form-check-input" id="regAgree" required>
|
||||
<label class="form-check-label" for="regAgree">我同意 <a href="/gdpr">個資法同意書</a></label>
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary">登記</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<p> </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@endsection
|
28
resources/views/activitiesParticipantWinners.blade.php
Normal file
28
resources/views/activitiesParticipantWinners.blade.php
Normal file
File diff suppressed because one or more lines are too long
91
resources/views/activityDescription.blade.php
Normal file
91
resources/views/activityDescription.blade.php
Normal file
File diff suppressed because one or more lines are too long
73
resources/views/auth/login.blade.php
Normal file
73
resources/views/auth/login.blade.php
Normal file
@ -0,0 +1,73 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-8">
|
||||
<div class="card">
|
||||
<div class="card-header">{{ __('Login') }}</div>
|
||||
|
||||
<div class="card-body">
|
||||
<form method="POST" action="{{ route('login') }}">
|
||||
@csrf
|
||||
|
||||
<div class="row mb-3">
|
||||
<label for="email" class="col-md-4 col-form-label text-md-end">{{ __('Email Address') }}</label>
|
||||
|
||||
<div class="col-md-6">
|
||||
<input id="email" type="email" class="form-control @error('email') is-invalid @enderror" name="email" value="{{ old('email') }}" required autocomplete="email" autofocus>
|
||||
|
||||
@error('email')
|
||||
<span class="invalid-feedback" role="alert">
|
||||
<strong>{{ $message }}</strong>
|
||||
</span>
|
||||
@enderror
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-3">
|
||||
<label for="password" class="col-md-4 col-form-label text-md-end">{{ __('Password') }}</label>
|
||||
|
||||
<div class="col-md-6">
|
||||
<input id="password" type="password" class="form-control @error('password') is-invalid @enderror" name="password" required autocomplete="current-password">
|
||||
|
||||
@error('password')
|
||||
<span class="invalid-feedback" role="alert">
|
||||
<strong>{{ $message }}</strong>
|
||||
</span>
|
||||
@enderror
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-3">
|
||||
<div class="col-md-6 offset-md-4">
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="checkbox" name="remember" id="remember" {{ old('remember') ? 'checked' : '' }}>
|
||||
|
||||
<label class="form-check-label" for="remember">
|
||||
{{ __('Remember Me') }}
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-0">
|
||||
<div class="col-md-8 offset-md-4">
|
||||
<button type="submit" class="btn btn-primary">
|
||||
{{ __('Login') }}
|
||||
</button>
|
||||
|
||||
@if (Route::has('password.request'))
|
||||
<a class="btn btn-link" href="{{ route('password.request') }}">
|
||||
{{ __('Forgot Your Password?') }}
|
||||
</a>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
49
resources/views/auth/passwords/confirm.blade.php
Normal file
49
resources/views/auth/passwords/confirm.blade.php
Normal file
@ -0,0 +1,49 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-8">
|
||||
<div class="card">
|
||||
<div class="card-header">{{ __('Confirm Password') }}</div>
|
||||
|
||||
<div class="card-body">
|
||||
{{ __('Please confirm your password before continuing.') }}
|
||||
|
||||
<form method="POST" action="{{ route('password.confirm') }}">
|
||||
@csrf
|
||||
|
||||
<div class="row mb-3">
|
||||
<label for="password" class="col-md-4 col-form-label text-md-end">{{ __('Password') }}</label>
|
||||
|
||||
<div class="col-md-6">
|
||||
<input id="password" type="password" class="form-control @error('password') is-invalid @enderror" name="password" required autocomplete="current-password">
|
||||
|
||||
@error('password')
|
||||
<span class="invalid-feedback" role="alert">
|
||||
<strong>{{ $message }}</strong>
|
||||
</span>
|
||||
@enderror
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-0">
|
||||
<div class="col-md-8 offset-md-4">
|
||||
<button type="submit" class="btn btn-primary">
|
||||
{{ __('Confirm Password') }}
|
||||
</button>
|
||||
|
||||
@if (Route::has('password.request'))
|
||||
<a class="btn btn-link" href="{{ route('password.request') }}">
|
||||
{{ __('Forgot Your Password?') }}
|
||||
</a>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
47
resources/views/auth/passwords/email.blade.php
Normal file
47
resources/views/auth/passwords/email.blade.php
Normal file
@ -0,0 +1,47 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-8">
|
||||
<div class="card">
|
||||
<div class="card-header">{{ __('Reset Password') }}</div>
|
||||
|
||||
<div class="card-body">
|
||||
@if (session('status'))
|
||||
<div class="alert alert-success" role="alert">
|
||||
{{ session('status') }}
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<form method="POST" action="{{ route('password.email') }}">
|
||||
@csrf
|
||||
|
||||
<div class="row mb-3">
|
||||
<label for="email" class="col-md-4 col-form-label text-md-end">{{ __('Email Address') }}</label>
|
||||
|
||||
<div class="col-md-6">
|
||||
<input id="email" type="email" class="form-control @error('email') is-invalid @enderror" name="email" value="{{ old('email') }}" required autocomplete="email" autofocus>
|
||||
|
||||
@error('email')
|
||||
<span class="invalid-feedback" role="alert">
|
||||
<strong>{{ $message }}</strong>
|
||||
</span>
|
||||
@enderror
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-0">
|
||||
<div class="col-md-6 offset-md-4">
|
||||
<button type="submit" class="btn btn-primary">
|
||||
{{ __('Send Password Reset Link') }}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
65
resources/views/auth/passwords/reset.blade.php
Normal file
65
resources/views/auth/passwords/reset.blade.php
Normal file
@ -0,0 +1,65 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-8">
|
||||
<div class="card">
|
||||
<div class="card-header">{{ __('Reset Password') }}</div>
|
||||
|
||||
<div class="card-body">
|
||||
<form method="POST" action="{{ route('password.update') }}">
|
||||
@csrf
|
||||
|
||||
<input type="hidden" name="token" value="{{ $token }}">
|
||||
|
||||
<div class="row mb-3">
|
||||
<label for="email" class="col-md-4 col-form-label text-md-end">{{ __('Email Address') }}</label>
|
||||
|
||||
<div class="col-md-6">
|
||||
<input id="email" type="email" class="form-control @error('email') is-invalid @enderror" name="email" value="{{ $email ?? old('email') }}" required autocomplete="email" autofocus>
|
||||
|
||||
@error('email')
|
||||
<span class="invalid-feedback" role="alert">
|
||||
<strong>{{ $message }}</strong>
|
||||
</span>
|
||||
@enderror
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-3">
|
||||
<label for="password" class="col-md-4 col-form-label text-md-end">{{ __('Password') }}</label>
|
||||
|
||||
<div class="col-md-6">
|
||||
<input id="password" type="password" class="form-control @error('password') is-invalid @enderror" name="password" required autocomplete="new-password">
|
||||
|
||||
@error('password')
|
||||
<span class="invalid-feedback" role="alert">
|
||||
<strong>{{ $message }}</strong>
|
||||
</span>
|
||||
@enderror
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-3">
|
||||
<label for="password-confirm" class="col-md-4 col-form-label text-md-end">{{ __('Confirm Password') }}</label>
|
||||
|
||||
<div class="col-md-6">
|
||||
<input id="password-confirm" type="password" class="form-control" name="password_confirmation" required autocomplete="new-password">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-0">
|
||||
<div class="col-md-6 offset-md-4">
|
||||
<button type="submit" class="btn btn-primary">
|
||||
{{ __('Reset Password') }}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
77
resources/views/auth/register.blade.php
Normal file
77
resources/views/auth/register.blade.php
Normal file
@ -0,0 +1,77 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-8">
|
||||
<div class="card">
|
||||
<div class="card-header">{{ __('Register') }}</div>
|
||||
|
||||
<div class="card-body">
|
||||
<form method="POST" action="{{ route('register') }}">
|
||||
@csrf
|
||||
|
||||
<div class="row mb-3">
|
||||
<label for="name" class="col-md-4 col-form-label text-md-end">{{ __('Name') }}</label>
|
||||
|
||||
<div class="col-md-6">
|
||||
<input id="name" type="text" class="form-control @error('name') is-invalid @enderror" name="name" value="{{ old('name') }}" required autocomplete="name" autofocus>
|
||||
|
||||
@error('name')
|
||||
<span class="invalid-feedback" role="alert">
|
||||
<strong>{{ $message }}</strong>
|
||||
</span>
|
||||
@enderror
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-3">
|
||||
<label for="email" class="col-md-4 col-form-label text-md-end">{{ __('Email Address') }}</label>
|
||||
|
||||
<div class="col-md-6">
|
||||
<input id="email" type="email" class="form-control @error('email') is-invalid @enderror" name="email" value="{{ old('email') }}" required autocomplete="email">
|
||||
|
||||
@error('email')
|
||||
<span class="invalid-feedback" role="alert">
|
||||
<strong>{{ $message }}</strong>
|
||||
</span>
|
||||
@enderror
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-3">
|
||||
<label for="password" class="col-md-4 col-form-label text-md-end">{{ __('Password') }}</label>
|
||||
|
||||
<div class="col-md-6">
|
||||
<input id="password" type="password" class="form-control @error('password') is-invalid @enderror" name="password" required autocomplete="new-password">
|
||||
|
||||
@error('password')
|
||||
<span class="invalid-feedback" role="alert">
|
||||
<strong>{{ $message }}</strong>
|
||||
</span>
|
||||
@enderror
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-3">
|
||||
<label for="password-confirm" class="col-md-4 col-form-label text-md-end">{{ __('Confirm Password') }}</label>
|
||||
|
||||
<div class="col-md-6">
|
||||
<input id="password-confirm" type="password" class="form-control" name="password_confirmation" required autocomplete="new-password">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-0">
|
||||
<div class="col-md-6 offset-md-4">
|
||||
<button type="submit" class="btn btn-primary">
|
||||
{{ __('Register') }}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
28
resources/views/auth/verify.blade.php
Normal file
28
resources/views/auth/verify.blade.php
Normal file
@ -0,0 +1,28 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-8">
|
||||
<div class="card">
|
||||
<div class="card-header">{{ __('Verify Your Email Address') }}</div>
|
||||
|
||||
<div class="card-body">
|
||||
@if (session('resent'))
|
||||
<div class="alert alert-success" role="alert">
|
||||
{{ __('A fresh verification link has been sent to your email address.') }}
|
||||
</div>
|
||||
@endif
|
||||
|
||||
{{ __('Before proceeding, please check your email for a verification link.') }}
|
||||
{{ __('If you did not receive the email') }},
|
||||
<form class="d-inline" method="POST" action="{{ route('verification.resend') }}">
|
||||
@csrf
|
||||
<button type="submit" class="btn btn-link p-0 m-0 align-baseline">{{ __('click here to request another') }}</button>.
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
28
resources/views/gdpr.blade.php
Normal file
28
resources/views/gdpr.blade.php
Normal file
@ -0,0 +1,28 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-8 main-area">
|
||||
|
||||
<h1 style="text-align: center;">個人資料提供同意書</h1>
|
||||
<h3 style="text-align: center;"><hr style="width:2em; display: inline-block"></h3>
|
||||
|
||||
<p class="lead"></p>
|
||||
<ol style="font-size:1.4em;">
|
||||
<li>本活動取得您的個人資料,目的在於行銷、進行抽獎活動及提供預約篩檢聯繫、公告、領獎、報稅、後續處理、統計分析及紀錄等之目的範圍內,依法令規定蒐集、處理及使用您的個人資料是受到個人資料保護法及相關法令之規範。</li>
|
||||
<li>本次蒐集您提供於抽獎頁面或預約篩檢頁面上之各項個人資料(包括但不限於姓名、身分證、出生年月日、地址、電話與電子信箱等)。依據個人資料保護法,參加本活動者視為了解及同意本公司於抽獎及預約篩檢之需要進行蒐集、處理及利用其個人資料。</li>
|
||||
<li>您同意依本活動所需,以您所提供的個人資料確認您的身份、與您進行聯絡;並同意主辦單位於您中獎或預約篩檢後繼續處理及使用您的個人資料。本活動蒐集之個資將於中獎名單公布次日起2年內統一銷毀,並留存銷毀軌跡備查,但依法令或執行本活動所必須,而須延長保存期限者不在此限。</li>
|
||||
<li>您可依個人資料保護法,就您的個人資料向主辦單位:(1)請求查詢或閱覽、(2)製給複製本、(3)請求補充或更正、(4)請求停止蒐集、處理及利用或(5)請求刪除。請以書面通知﹝高雄市衛生局 癌症嘉年華活動小組﹞要求辦理,而主辦單位依法得酌收必要成本費用。</li>
|
||||
<li>您得自由選擇是否提供相關個人資料,惟您如未能完整提供本活動要求填寫之各項個人資料,將無法參與本抽獎活動。參加本活動者同意本公司將其個人資料使用於各項活動之行銷廣告通知。參加者不同意個資被使用時可通知本公司取消使用。</li>
|
||||
<li>本同意書如有未盡事宜,依個人資料保護法或其他相關法規之規定辦理;同時,您對自己所有之個人資料,須負保密責任,若因洩露第三者,導致個人資料外洩、遺失,請自行負責。</li>
|
||||
<li>您瞭解此一同意書符合個人資料保護法及相關法規之要求,具有書面同意主辦單位蒐集、處理及使用您的個人資料之效果。</li>
|
||||
</ol>
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@endsection
|
107
resources/views/home.blade.php
Normal file
107
resources/views/home.blade.php
Normal file
File diff suppressed because one or more lines are too long
29
resources/views/layouts/activitiesParticipant.blade.php
Normal file
29
resources/views/layouts/activitiesParticipant.blade.php
Normal file
File diff suppressed because one or more lines are too long
225
resources/views/layouts/app-v01.blade.php
Normal file
225
resources/views/layouts/app-v01.blade.php
Normal file
@ -0,0 +1,225 @@
|
||||
@php
|
||||
$totalUniqueVisits = 483 + visitors()->uniqueCount();
|
||||
|
||||
@endphp
|
||||
|
||||
<!doctype html>
|
||||
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="canonical" href="{{ $current = url()->current() }}">
|
||||
|
||||
<!-- CSRF Token -->
|
||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||
|
||||
<title>{{ config('app.name', 'Laravel') }}</title>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
|
||||
<link rel="stylesheet" href="https://code.jquery.com/ui/1.14.0/themes/base/jquery-ui.css">
|
||||
<script src="https://code.jquery.com/ui/1.14.0/jquery-ui.js"></script>
|
||||
<!-- Fonts -->
|
||||
<link rel="dns-prefetch" href="//fonts.bunny.net">
|
||||
<link href="https://fonts.bunny.net/css?family=Nunito" rel="stylesheet">
|
||||
|
||||
<!-- Scripts -->
|
||||
@vite(['resources/sass/app.scss', 'resources/js/app.js'])
|
||||
|
||||
<style>
|
||||
.js-social-share {
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
padding-left: 0;
|
||||
line-height: 1;
|
||||
list-style: none;
|
||||
justify-content: center;
|
||||
}
|
||||
.js-social-share li {
|
||||
padding-right: 1rem;
|
||||
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
|
||||
@yield('style')
|
||||
</head>
|
||||
<body>
|
||||
<div id="app">
|
||||
<!-- <nav class="navbar navbar-expand-md navbar-light bg-white shadow-sm"> -->
|
||||
<div class="navbar-bg">
|
||||
<nav class="navbar navbar-expand-md navbar-light navbar-top-logo ">
|
||||
<div class="container">
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="{{ __('Toggle navigation') }}">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||
<!-- Left Side Of Navbar -->
|
||||
<ul class="navbar-nav me-auto main-btns">
|
||||
<li class="nav-item nav-btn1">
|
||||
<a class="nav-link" href="/activity-description">活動站</a>
|
||||
</li>
|
||||
<li class="nav-item nav-btn2">
|
||||
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
補給站
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a class="dropdown-item" href="/publicity">五癌懶人包</a></li>
|
||||
<li><a class="dropdown-item" href="/publicity-week-news">本周快訊分享</a></li>
|
||||
<li><a class="dropdown-item" href="/publicity-comic">漫畫</a></li>
|
||||
<li><a class="dropdown-item" href="/publicity-week-remind">趣味梗圖</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="nav-item nav-btn3">
|
||||
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
領獎台
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a class="dropdown-item" href="/screening-lottery-info">抽獎資訊</a></li>
|
||||
<li><a class="dropdown-item" href="/screening-lottery-fill-form">篩檢抽獎</a></li>
|
||||
<li><a class="dropdown-item" href="/screening-lottery-reg-query">查詢登記</a></li>
|
||||
<li><a class="dropdown-item" href="/screening-lottery-winners">得獎名單</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="nav-item nav-btn4">
|
||||
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
醫護站
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a class="dropdown-item" href="/activities-participant">代謝症候群懶人包</a></li>
|
||||
<li><a class="dropdown-item" href="/activities-participant-info">抽獎資訊</a></li>
|
||||
<li><a class="dropdown-item" href="/activities-participant-play">闖關小遊戲</a></li>
|
||||
<li><a class="dropdown-item" href="/activities-participant-winners">得獎名單</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="nav-item nav-btn5">
|
||||
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
預約站
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a class="dropdown-item" href="/screening-appointment-info">癌篩嘉年華活動資訊</a></li>
|
||||
<li><a class="dropdown-item" href="/screening-appointment-fill-form">預約表單</a></li>
|
||||
<li><a class="dropdown-item" href="/screening-appointment-location">篩檢點</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="nav-item nav-btn6">
|
||||
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
大會服務
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a class="dropdown-item" href="/others-sites">機關網站</a></li>
|
||||
<li><a class="dropdown-item" href="/others-contact">聯絡我們</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<!-- Right Side Of Navbar -->
|
||||
<ul class="navbar-nav ms-auto" style="display:none;">
|
||||
<!-- Authentication Links -->
|
||||
@guest
|
||||
@if (Route::has('login'))
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="{{ route('login') }}">{{ __('Login') }}</a>
|
||||
</li>
|
||||
@endif
|
||||
|
||||
@if (Route::has('register'))
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="{{ route('register') }}">{{ __('Register') }}</a>
|
||||
</li>
|
||||
@endif
|
||||
@else
|
||||
<li class="nav-item dropdown">
|
||||
<a id="navbarDropdown" class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false" v-pre>
|
||||
{{ Auth::user()->name }}
|
||||
</a>
|
||||
|
||||
<div class="dropdown-menu dropdown-menu-end" aria-labelledby="navbarDropdown">
|
||||
<a class="dropdown-item" href="{{ route('logout') }}"
|
||||
onclick="event.preventDefault();
|
||||
document.getElementById('logout-form').submit();">
|
||||
{{ __('Logout') }}
|
||||
</a>
|
||||
|
||||
<form id="logout-form" action="{{ route('logout') }}" method="POST" class="d-none">
|
||||
@csrf
|
||||
</form>
|
||||
</div>
|
||||
</li>
|
||||
@endguest
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<main class="py-4">
|
||||
@yield('content')
|
||||
</main>
|
||||
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-12 main-area-space text-align-center">
|
||||
<div class="nav-item-3">
|
||||
<a class="nav-link" href="/">回首頁</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-8 main-area footer text-center">
|
||||
Ⓒ2024版權所有 高雄市政府衛生局 | 總瀏覽人次: {{str_pad($totalUniqueVisits,7,'0',STR_PAD_LEFT)}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
<script>
|
||||
var el = document.querySelector('.share-btn-area');
|
||||
var notIndex = location.pathname !== '/';
|
||||
var notCategory = location.pathname.indexOf('category') === -1;
|
||||
var notTag = location.pathname.indexOf('tag') === -1;
|
||||
|
||||
// 載入JS檔
|
||||
function appendJS(src) {
|
||||
var script = document.createElement("script");
|
||||
script.src = src;
|
||||
document.head.appendChild(script);
|
||||
}
|
||||
|
||||
if(el && notIndex && notCategory && notTag) {
|
||||
|
||||
var currentUri = document.querySelector('[rel="canonical"]').href;
|
||||
|
||||
//var fbBtn = '<div class="fb-like" data-href="' + currentUri + '" data-layout="button_count" data-action="like" data-size="large" data-share="true"></div>';
|
||||
var fbBtn = '<div class="fb-share-button" data-href="' + currentUri + '" data-layout="button" data-action="like" data-size="large" data-share="true"></div>';
|
||||
var lineBtn = '<div class="line-it-button" data-lang="zh_Hant" data-type="share-a" data-ver="3" data-url="' + currentUri + '" data-color="default" data-size="large" data-count="false" style="display: none;"></div>';
|
||||
var twitterBtn = '<a href="https://twitter.com/share" class="twitter-share-button" data-size="large">X</a>';
|
||||
|
||||
var socialHTML = '<ul class="js-social-share">' +
|
||||
'<li>' + fbBtn + '</li>' +
|
||||
'<li>' + lineBtn + '</li>' +
|
||||
'<li>' + twitterBtn + '</li>' +
|
||||
'</ul>';
|
||||
el.insertAdjacentHTML('beforebegin', socialHTML);
|
||||
|
||||
if(document.querySelector('.sharedaddy')) {
|
||||
var originShare = document.querySelector('.sharedaddy');
|
||||
originShare.insertAdjacentHTML('beforebegin', socialHTML);
|
||||
}
|
||||
|
||||
appendJS('https://d.line-scdn.net/r/web/social-plugin/js/thirdparty/loader.min.js');
|
||||
appendJS('https://connect.facebook.net/zh_TW/sdk.js#xfbml=1&version=v3.0');
|
||||
appendJS('https://platform.twitter.com/widgets.js');
|
||||
|
||||
}
|
||||
</script>
|
||||
|
||||
</html>
|
233
resources/views/layouts/app.blade.php
Normal file
233
resources/views/layouts/app.blade.php
Normal file
@ -0,0 +1,233 @@
|
||||
@php
|
||||
$totalUniqueVisits = 483 + visitors()->uniqueCount();
|
||||
|
||||
@endphp
|
||||
|
||||
<!doctype html>
|
||||
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="canonical" href="{{ $current = url()->current() }}">
|
||||
|
||||
<!-- CSRF Token -->
|
||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||
|
||||
<title>{{ config('app.name', 'Laravel') }}</title>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
|
||||
<link rel="stylesheet" href="https://code.jquery.com/ui/1.14.0/themes/base/jquery-ui.css">
|
||||
<script src="https://code.jquery.com/ui/1.14.0/jquery-ui.js"></script>
|
||||
<!-- Fonts -->
|
||||
<link rel="dns-prefetch" href="//fonts.bunny.net">
|
||||
<link href="https://fonts.bunny.net/css?family=Nunito" rel="stylesheet">
|
||||
|
||||
<!-- Scripts -->
|
||||
@vite(['resources/sass/app.scss', 'resources/js/app.js'])
|
||||
|
||||
<style>
|
||||
.js-social-share {
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
padding-left: 0;
|
||||
line-height: 1;
|
||||
list-style: none;
|
||||
justify-content: center;
|
||||
}
|
||||
.js-social-share li {
|
||||
padding-right: 1rem;
|
||||
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
|
||||
@yield('style')
|
||||
</head>
|
||||
<body>
|
||||
<div id="app">
|
||||
<!-- <nav class="navbar navbar-expand-md navbar-light bg-white shadow-sm"> -->
|
||||
<div class="navbar-bg">
|
||||
<nav class="navbar navbar-expand-md navbar-light navbar-top-logo ">
|
||||
<div class="container">
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="{{ __('Toggle navigation') }}">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||
<!-- Left Side Of Navbar -->
|
||||
<ul class="navbar-nav me-auto main-btns">
|
||||
<li class="nav-item nav-btn1">
|
||||
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
活動站
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a class="dropdown-item" href="/activity-description">活動站</a></li>
|
||||
<li><a class="dropdown-item" href="/activities-participant-play">增加代謝力快問快答</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="nav-item nav-btn2">
|
||||
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
知識充電站
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a class="dropdown-item" href="/publicity">懶人包</a></li>
|
||||
<li><a class="dropdown-item" href="/publicity-week-news">健康報你知</a></li>
|
||||
<li><a class="dropdown-item" href="/publicity-comic">健康雞湯</a></li>
|
||||
<li style="display:none;"><a class="dropdown-item" href="/publicity-week-remind">趣味梗圖</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="nav-item nav-btn3">
|
||||
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
領獎台
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li style="display:none;"><a class="dropdown-item" href="/screening-lottery-info">抽獎資訊</a></li>
|
||||
<li style="display:none;"><a class="dropdown-item" href="/screening-lottery-fill-form">篩檢抽獎</a></li>
|
||||
<li style="display:none;"><a class="dropdown-item" href="/screening-lottery-reg-query">查詢登記</a></li>
|
||||
<li><a class="dropdown-item" href="/screening-lottery-winners">篩檢得獎名單</a></li>
|
||||
<li><a class="dropdown-item" href="/activities-participant-winners">快問快答得獎名單</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="nav-item nav-btn4">
|
||||
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
健康登記站
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li style="display:none;"><a class="dropdown-item" href="/activities-participant">代謝症候群懶人包</a></li>
|
||||
<li><a class="dropdown-item" href="/screening-lottery-fill-form">癌症篩檢登記(抽獎)</a></li>
|
||||
<li><a class="dropdown-item" href="/screening-lottery-reg-query">查詢登記</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
<li class="nav-item nav-btn5">
|
||||
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
健康嘉年華
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a class="dropdown-item" href="/screening-appointment-info">活動資訊</a></li>
|
||||
<li><a class="dropdown-item" href="/screening-appointment-fill-form">預約表單</a></li>
|
||||
<li style="display:none;"><a class="dropdown-item" href="/screening-appointment-location">篩檢點</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="nav-item nav-btn6">
|
||||
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
大會服務
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a class="dropdown-item" href="/screening-appointment-location">健康篩檢地點</a></li>
|
||||
<li><a class="dropdown-item" href="/others-sites">機關網站</a></li>
|
||||
<li><a class="dropdown-item" href="/others-contact">聯絡我們</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<!-- Right Side Of Navbar -->
|
||||
<ul class="navbar-nav ms-auto" style="display:none;">
|
||||
<!-- Authentication Links -->
|
||||
@guest
|
||||
@if (Route::has('login'))
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="{{ route('login') }}">{{ __('Login') }}</a>
|
||||
</li>
|
||||
@endif
|
||||
|
||||
@if (Route::has('register'))
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="{{ route('register') }}">{{ __('Register') }}</a>
|
||||
</li>
|
||||
@endif
|
||||
@else
|
||||
<li class="nav-item dropdown">
|
||||
<a id="navbarDropdown" class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false" v-pre>
|
||||
{{ Auth::user()->name }}
|
||||
</a>
|
||||
|
||||
<div class="dropdown-menu dropdown-menu-end" aria-labelledby="navbarDropdown">
|
||||
<a class="dropdown-item" href="{{ route('logout') }}"
|
||||
onclick="event.preventDefault();
|
||||
document.getElementById('logout-form').submit();">
|
||||
{{ __('Logout') }}
|
||||
</a>
|
||||
|
||||
<form id="logout-form" action="{{ route('logout') }}" method="POST" class="d-none">
|
||||
@csrf
|
||||
</form>
|
||||
</div>
|
||||
</li>
|
||||
@endguest
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<main class="py-4">
|
||||
@yield('content')
|
||||
</main>
|
||||
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-12 main-area-space text-align-center">
|
||||
<div class="nav-item-3">
|
||||
<a class="nav-link" href="/">回首頁</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-8 main-area footer text-center">
|
||||
Ⓒ2024版權所有 高雄市政府衛生局 | 總瀏覽人次: {{str_pad($totalUniqueVisits,7,'0',STR_PAD_LEFT)}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
<script>
|
||||
var el = document.querySelector('.share-btn-area');
|
||||
var notIndex = location.pathname !== '/';
|
||||
var notCategory = location.pathname.indexOf('category') === -1;
|
||||
var notTag = location.pathname.indexOf('tag') === -1;
|
||||
|
||||
// 載入JS檔
|
||||
function appendJS(src) {
|
||||
var script = document.createElement("script");
|
||||
script.src = src;
|
||||
document.head.appendChild(script);
|
||||
}
|
||||
|
||||
if(el && notIndex && notCategory && notTag) {
|
||||
|
||||
var currentUri = document.querySelector('[rel="canonical"]').href;
|
||||
|
||||
//var fbBtn = '<div class="fb-like" data-href="' + currentUri + '" data-layout="button_count" data-action="like" data-size="large" data-share="true"></div>';
|
||||
var fbBtn = '<div class="fb-share-button" data-href="' + currentUri + '" data-layout="button" data-action="like" data-size="large" data-share="true"></div>';
|
||||
var lineBtn = '<div class="line-it-button" data-lang="zh_Hant" data-type="share-a" data-ver="3" data-url="' + currentUri + '" data-color="default" data-size="large" data-count="false" style="display: none;"></div>';
|
||||
var twitterBtn = '<a href="https://twitter.com/share" class="twitter-share-button" data-size="large">X</a>';
|
||||
|
||||
var socialHTML = '<ul class="js-social-share">' +
|
||||
'<li>' + fbBtn + '</li>' +
|
||||
'<li>' + lineBtn + '</li>' +
|
||||
'<li>' + twitterBtn + '</li>' +
|
||||
'</ul>';
|
||||
el.insertAdjacentHTML('beforebegin', socialHTML);
|
||||
|
||||
if(document.querySelector('.sharedaddy')) {
|
||||
var originShare = document.querySelector('.sharedaddy');
|
||||
originShare.insertAdjacentHTML('beforebegin', socialHTML);
|
||||
}
|
||||
|
||||
appendJS('https://d.line-scdn.net/r/web/social-plugin/js/thirdparty/loader.min.js');
|
||||
appendJS('https://connect.facebook.net/zh_TW/sdk.js#xfbml=1&version=v3.0');
|
||||
appendJS('https://platform.twitter.com/widgets.js');
|
||||
|
||||
}
|
||||
</script>
|
||||
|
||||
</html>
|
44
resources/views/layouts/publicity.blade.php
Normal file
44
resources/views/layouts/publicity.blade.php
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
25
resources/views/othersContact.blade.php
Normal file
25
resources/views/othersContact.blade.php
Normal file
@ -0,0 +1,25 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-8 main-area">
|
||||
|
||||
<h1 style="text-align: center;">大會服務</h1>
|
||||
<h3 style="text-align: center;"><hr style="width:2em; display: inline-block"></h3>
|
||||
<h2 style="text-align: center;">聯絡我們</h2>
|
||||
|
||||
<p class="lead">若您有任何需要我們服務的地方,請來信 <a href="mailto:info@shibasays.com">info@shibasays.com</a> 表達您的意見,我們收
|
||||
到您的來信後,將儘速於 3~5 日內回覆(不含週六例假日)。</p>
|
||||
<p class="lead">若您超過時間尚未收到我們的回信,或您的問題尚未得到解決,<br>
|
||||
請撥打專線 02-22970109 (週一至週五,早上九點至下午五點)<br>
|
||||
<span style="color:#999; display:none;">*以下欄位均為必填,敬請詳細填寫</span>
|
||||
</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@endsection
|
22
resources/views/othersSites.blade.php
Normal file
22
resources/views/othersSites.blade.php
Normal file
File diff suppressed because one or more lines are too long
7
resources/views/publicity.blade.php
Normal file
7
resources/views/publicity.blade.php
Normal file
@ -0,0 +1,7 @@
|
||||
@extends('layouts.publicity')
|
||||
|
||||
@section('content-page')
|
||||
|
||||
<h3 style="font-weight: 700; text-align:center;">請選擇上方的項目瀏覽</h3>
|
||||
|
||||
@endsection
|
41
resources/views/publicityCancerBreast.blade.php
Normal file
41
resources/views/publicityCancerBreast.blade.php
Normal file
File diff suppressed because one or more lines are too long
44
resources/views/publicityCancerCervical.blade.php
Normal file
44
resources/views/publicityCancerCervical.blade.php
Normal file
File diff suppressed because one or more lines are too long
43
resources/views/publicityCancerColorectal.blade.php
Normal file
43
resources/views/publicityCancerColorectal.blade.php
Normal file
File diff suppressed because one or more lines are too long
46
resources/views/publicityCancerLung.blade.php
Normal file
46
resources/views/publicityCancerLung.blade.php
Normal file
File diff suppressed because one or more lines are too long
41
resources/views/publicityCancerOral.blade.php
Normal file
41
resources/views/publicityCancerOral.blade.php
Normal file
File diff suppressed because one or more lines are too long
22
resources/views/publicityComic.blade.php
Normal file
22
resources/views/publicityComic.blade.php
Normal file
File diff suppressed because one or more lines are too long
20
resources/views/publicityWeekNews.blade.php
Normal file
20
resources/views/publicityWeekNews.blade.php
Normal file
@ -0,0 +1,20 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-8 main-area">
|
||||
|
||||
<h1 style="text-align: center;">知識充電站</h1>
|
||||
<h3 style="text-align: center;"><hr style="width:2em; display: inline-block"></h3>
|
||||
<h2 style="text-align: center;">健康報你知</h2>
|
||||
<p class="lead share-btn-area"> </p>
|
||||
|
||||
<p class="lead">口腔癌主要由慢性刺激所導致,喝酒、抽菸、吃檳榔是引發口腔癌的三大元凶。有喝酒、抽菸或吃檳榔習慣者,得到口腔癌的機率分別為一般人的10、18、28倍;倘若三個習慣都有,確診口腔癌的機率更是高達123倍。</p>
|
||||
<p> </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@endsection
|
21
resources/views/publicityWeekRemind.blade.php
Normal file
21
resources/views/publicityWeekRemind.blade.php
Normal file
File diff suppressed because one or more lines are too long
534
resources/views/screeningAppointmentFillForm.blade.php
Normal file
534
resources/views/screeningAppointmentFillForm.blade.php
Normal file
File diff suppressed because one or more lines are too long
25
resources/views/screeningAppointmentInfo.blade.php
Normal file
25
resources/views/screeningAppointmentInfo.blade.php
Normal file
File diff suppressed because one or more lines are too long
14
resources/views/screeningAppointmentLocation.blade.php
Normal file
14
resources/views/screeningAppointmentLocation.blade.php
Normal file
@ -0,0 +1,14 @@
|
||||
@extends('layouts.screeningAppointmentLocation')
|
||||
|
||||
@section('content-page')
|
||||
<h3 style="font-weight: 700; text-align:center;">請選擇上方的項目瀏覽</h3>
|
||||
<script></script>
|
||||
|
||||
@endsection
|
||||
|
||||
|
||||
@section('style')
|
||||
<style>
|
||||
|
||||
</style>
|
||||
@endsection
|
207
resources/views/screeningAppointmentLocationBreast.blade.php
Normal file
207
resources/views/screeningAppointmentLocationBreast.blade.php
Normal file
@ -0,0 +1,207 @@
|
||||
@extends('layouts.screeningAppointmentLocation')
|
||||
|
||||
@section('content-page')
|
||||
<p> </p>
|
||||
<h3 style="font-weight: 700; text-align:center;">乳癌篩檢</h3>
|
||||
|
||||
<div class="tg-wrap"><table class="tg"><thead>
|
||||
<tr>
|
||||
<th class="tg-syvo">醫療院所名稱</th>
|
||||
<th class="tg-syvo">電話</th>
|
||||
<th class="tg-syvo">地址</th>
|
||||
</tr></thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="tg-dfhs">高雄市立鳳山醫院</td>
|
||||
<td class="tg-dfhs">(07) 741-8151</td>
|
||||
<td class="tg-dfhs">高雄市鳳山區經武路42號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">翁明清婦產科診所</td>
|
||||
<td class="tg-peb5">(07) 626-2997</td>
|
||||
<td class="tg-peb5">高雄市岡山區前峰路73號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">光雄長安醫院</td>
|
||||
<td class="tg-dfhs">(07) 621-9156</td>
|
||||
<td class="tg-dfhs">高雄市岡山區岡山路380之1號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">高雄醫學大學附設高醫岡山醫院</td>
|
||||
<td class="tg-peb5">(07) 626-1000</td>
|
||||
<td class="tg-peb5">高雄市岡山區捷安路8號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">衛生福利部旗山醫院</td>
|
||||
<td class="tg-dfhs">(07) 661-3811</td>
|
||||
<td class="tg-dfhs">高雄市旗山區中學路60號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">建佑醫院</td>
|
||||
<td class="tg-peb5">(07) 643-7901</td>
|
||||
<td class="tg-peb5">高雄市林園區廣應里東林西路360號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">長庚醫療財團法人高雄長庚紀念醫院</td>
|
||||
<td class="tg-dfhs">(07) 731-7123</td>
|
||||
<td class="tg-dfhs">高雄市鳥松區大埤路123號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">義大醫療財團法人義大醫院</td>
|
||||
<td class="tg-peb5">(07) 615-0011</td>
|
||||
<td class="tg-peb5">高雄市燕巢區角宿里義大路1號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">義大醫療財團法人義大癌治療醫院</td>
|
||||
<td class="tg-dfhs">(07) 615-0022</td>
|
||||
<td class="tg-dfhs">高雄市燕巢區角宿里義大路21號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">高雄市立聯合醫院</td>
|
||||
<td class="tg-peb5">(07) 555-2565</td>
|
||||
<td class="tg-peb5">高雄市鼓山區中華一路976號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">國軍高雄總醫院左營分院附設民眾診療服務處</td>
|
||||
<td class="tg-dfhs">(07) 581-7121</td>
|
||||
<td class="tg-dfhs">高雄市左營區軍校路553號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">高雄榮民總醫院</td>
|
||||
<td class="tg-peb5">(07) 342-2121</td>
|
||||
<td class="tg-peb5">高雄市左營區大中一路386號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">馨蕙馨醫院</td>
|
||||
<td class="tg-dfhs">(07) 558-6080</td>
|
||||
<td class="tg-dfhs">高雄市左營區明誠二路541號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">鈞安婦幼聯合醫院</td>
|
||||
<td class="tg-peb5">(07) 348-0088</td>
|
||||
<td class="tg-peb5">高雄市左營區華夏路609號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">健仁醫院</td>
|
||||
<td class="tg-dfhs">(07) 351-7166</td>
|
||||
<td class="tg-dfhs">高雄市楠梓區楠陽路136號、朝明路130巷7弄1號1~5樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">金安心醫院</td>
|
||||
<td class="tg-peb5">(07) 364-9890</td>
|
||||
<td class="tg-peb5">高雄市楠梓區加昌路606號1~4樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">四季台安醫院</td>
|
||||
<td class="tg-dfhs">(07) 398-3000</td>
|
||||
<td class="tg-dfhs">高雄市三民區灣興里聯興路157號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">義大醫療財團法人義大大昌醫院</td>
|
||||
<td class="tg-peb5">(07) 559-9123</td>
|
||||
<td class="tg-peb5">高雄市三民區灣子里大昌一路305號B3至7樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">愛汝診所</td>
|
||||
<td class="tg-dfhs">(07) 224-2525</td>
|
||||
<td class="tg-dfhs">高雄市新興區五福一路140號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">健新醫院</td>
|
||||
<td class="tg-peb5">(07) 261-3866</td>
|
||||
<td class="tg-peb5">高雄市前金區七賢二路295號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">高雄市立大同醫院</td>
|
||||
<td class="tg-dfhs">(07) 291-1101</td>
|
||||
<td class="tg-dfhs">高雄市前金區中華三路68號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">國軍高雄總醫院附設民眾診療服務處</td>
|
||||
<td class="tg-peb5">(07) 749-6751</td>
|
||||
<td class="tg-peb5">高雄市苓雅區正義里中正一路2號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">天主教聖功醫療財團法人聖功醫院</td>
|
||||
<td class="tg-dfhs">(07) 223-8153</td>
|
||||
<td class="tg-dfhs">高雄市苓雅區民主里建國一路352號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">高雄市立民生醫院</td>
|
||||
<td class="tg-peb5">(07) 751-1131</td>
|
||||
<td class="tg-peb5">高雄市苓雅區奏捷里凱旋二路134號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">阮綜合醫療社團法人阮綜合醫院</td>
|
||||
<td class="tg-dfhs">(07) 335-1121</td>
|
||||
<td class="tg-dfhs">高雄市苓雅區鼓中里成功一路162號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">高雄市立小港醫院</td>
|
||||
<td class="tg-peb5">(07) 803-6783</td>
|
||||
<td class="tg-peb5">高雄市小港區山明路482號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">安泰醫院</td>
|
||||
<td class="tg-dfhs">(07) 801-7856</td>
|
||||
<td class="tg-dfhs">高雄市小港區學府路111號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">高雄醫學大學附設中和紀念醫院</td>
|
||||
<td class="tg-peb5">(07) 312-1101</td>
|
||||
<td class="tg-peb5">高雄市三民區十全一路100號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">佑康診所</td>
|
||||
<td class="tg-dfhs">(07) 321-5358</td>
|
||||
<td class="tg-dfhs">高雄市三民區博愛一路28號5樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">博田國際醫院</td>
|
||||
<td class="tg-peb5">(07) 556-2217</td>
|
||||
<td class="tg-peb5">高雄市左營區博愛二路100號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">維馨乳房外科醫院</td>
|
||||
<td class="tg-dfhs">(07) 976-3998</td>
|
||||
<td class="tg-dfhs">高雄市左營區文信路246號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">維馨乳房外科醫院</td>
|
||||
<td class="tg-peb5">(07) 976-3998</td>
|
||||
<td class="tg-peb5">高雄市左營區文信路246號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">右昌聯合醫院</td>
|
||||
<td class="tg-dfhs">(07) 364-3388</td>
|
||||
<td class="tg-dfhs">高雄市楠梓區軍校路930號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">怡德耳鼻喉科診所</td>
|
||||
<td class="tg-peb5">(07) 286-4875</td>
|
||||
<td class="tg-peb5">高雄市三民區自立一路99號</td>
|
||||
</tr>
|
||||
</tbody></table></div>
|
||||
|
||||
|
||||
|
||||
@endsection
|
||||
|
||||
|
||||
@section('style')
|
||||
<style type="text/css">
|
||||
.tg {border-collapse:collapse;border-color:#ccc;border-spacing:0;width:100%;}
|
||||
.tg td{background-color:#fff;border-bottom-width:1px;border-color:#ccc;border-style:solid;border-top-width:1px;
|
||||
border-width:0px;color:#333;font-family:Arial, sans-serif;font-size:14px;overflow:hidden;padding:10px 5px;
|
||||
word-break:normal;}
|
||||
.tg th{background-color:#f0f0f0;border-bottom-width:1px;border-color:#ccc;border-style:solid;border-top-width:1px;
|
||||
border-width:0px;color:#333;font-family:Arial, sans-serif;font-size:14px;font-weight:normal;overflow:hidden;
|
||||
padding:10px 5px;word-break:normal;}
|
||||
.tg .tg-dfhs{background-color:#f9f9f9;font-size:large;text-align:left;vertical-align:top}
|
||||
.tg .tg-syvo{font-size:large;position:-webkit-sticky;position:sticky;text-align:left;top:-1px;vertical-align:top;
|
||||
will-change:transform}
|
||||
.tg .tg-peb5{font-size:large;text-align:left;vertical-align:top}
|
||||
@media screen and (max-width: 767px) {.tg {width: auto !important;}.tg col {width: auto !important;}.tg-wrap {overflow-x: auto;-webkit-overflow-scrolling: touch;}}</style>
|
||||
|
||||
|
||||
@endsection
|
740
resources/views/screeningAppointmentLocationCervical.blade.php
Normal file
740
resources/views/screeningAppointmentLocationCervical.blade.php
Normal file
@ -0,0 +1,740 @@
|
||||
@extends('layouts.screeningAppointmentLocation')
|
||||
|
||||
@section('content-page')
|
||||
<p> </p>
|
||||
<h3 style="font-weight: 700; text-align:center;">子宮頸癌篩檢</h3>
|
||||
|
||||
<div class="tg-wrap"><table class="tg"><thead>
|
||||
<tr>
|
||||
<th class="tg-syvo">醫療院所名稱</th>
|
||||
<th class="tg-syvo">電話</th>
|
||||
<th class="tg-syvo">地址</th>
|
||||
</tr></thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="tg-dfhs">高雄市立鳳山醫院</td>
|
||||
<td class="tg-dfhs">(07)741-8151</td>
|
||||
<td class="tg-dfhs">高雄市鳳山區經武路42號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">優生婦產科醫院</td>
|
||||
<td class="tg-peb5">(07)747-8629</td>
|
||||
<td class="tg-peb5">高雄市鳳山區自由路189號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">仁惠婦幼醫院</td>
|
||||
<td class="tg-dfhs">(07)710-4397</td>
|
||||
<td class="tg-dfhs">高雄市鳳山區自由路81號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">恩德婦產科診所</td>
|
||||
<td class="tg-peb5">(07)710-3368</td>
|
||||
<td class="tg-peb5">高雄市鳳山區自由路201號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">欣診所</td>
|
||||
<td class="tg-dfhs">(07)753-7532</td>
|
||||
<td class="tg-dfhs">高雄市鳳山區誠義路31號1-2樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">安心婦產科診所</td>
|
||||
<td class="tg-peb5">(07)743-4086</td>
|
||||
<td class="tg-peb5">高雄市鳳山區經武路81號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">邱正義婦產科診所</td>
|
||||
<td class="tg-dfhs">(07)741-6177</td>
|
||||
<td class="tg-dfhs">高雄市鳳山區光復路1號1-4樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">岡山杏生婦產科診所</td>
|
||||
<td class="tg-peb5">(07)629-7770</td>
|
||||
<td class="tg-peb5">高雄市岡山區岡山路63號1樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">高雄市立岡山醫院(委託秀傳醫療社團法人經營)</td>
|
||||
<td class="tg-dfhs">(07)622-2131</td>
|
||||
<td class="tg-dfhs">高雄市岡山區壽天路12號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">國軍高雄總醫院岡山分院</td>
|
||||
<td class="tg-peb5">(07)625-0919</td>
|
||||
<td class="tg-peb5">高雄市岡山區大義二路1號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">新惠生婦產科診所</td>
|
||||
<td class="tg-dfhs">(07)621-8827</td>
|
||||
<td class="tg-dfhs">高雄市岡山區大德三路91號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">平和婦產科診所</td>
|
||||
<td class="tg-peb5">(07)624-0001</td>
|
||||
<td class="tg-peb5">高雄市岡山區平和東街22號1樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">家佑診所</td>
|
||||
<td class="tg-dfhs">(07)621-1919</td>
|
||||
<td class="tg-dfhs">高雄市岡山區大仁路109號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">翁明清婦產科診所</td>
|
||||
<td class="tg-peb5">(07)626-2997</td>
|
||||
<td class="tg-peb5">高雄市岡山區前峰路73號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">光雄長安醫院</td>
|
||||
<td class="tg-dfhs">(07)621-9156</td>
|
||||
<td class="tg-dfhs">高雄市岡山區岡山路380之1號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">金禾美診所</td>
|
||||
<td class="tg-peb5">(07)622-3028</td>
|
||||
<td class="tg-peb5">高雄市岡山區維仁路26號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">高雄醫學大學附設高醫岡山醫院</td>
|
||||
<td class="tg-dfhs">(07)626-1000</td>
|
||||
<td class="tg-dfhs">高雄市岡山區捷安路8號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">衛生福利部旗山醫院</td>
|
||||
<td class="tg-peb5">(07)661-3811</td>
|
||||
<td class="tg-peb5">高雄市旗山區中學路60號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">大政診所</td>
|
||||
<td class="tg-dfhs">(07)662-2588</td>
|
||||
<td class="tg-dfhs">高雄市旗山區延平一路337號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">民愛診所</td>
|
||||
<td class="tg-peb5">(07)661-7221</td>
|
||||
<td class="tg-peb5">高雄市旗山區復新街15號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">溫朝貴診所</td>
|
||||
<td class="tg-dfhs">(07)661-2558</td>
|
||||
<td class="tg-dfhs">高雄市旗山區東新街18號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">李樹榮診所</td>
|
||||
<td class="tg-peb5">(07)681-2189</td>
|
||||
<td class="tg-peb5">高雄市美濃區中正路一段17號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">高雄市美濃區衛生所</td>
|
||||
<td class="tg-dfhs">(07)681-2064</td>
|
||||
<td class="tg-dfhs">高雄市美濃區美中路246號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">建佑醫院</td>
|
||||
<td class="tg-peb5">(07)643-7901</td>
|
||||
<td class="tg-peb5">高雄市林園區廣應里東林西路360號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">聯合王婦產科診所</td>
|
||||
<td class="tg-dfhs">(07)642-5968</td>
|
||||
<td class="tg-dfhs">高雄市林園區文賢里沿海路三段148號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">幸福婦產科診所</td>
|
||||
<td class="tg-peb5">(07)641-8383</td>
|
||||
<td class="tg-peb5">高雄市林園區林園里林園北路355號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">陳鍾靈診所</td>
|
||||
<td class="tg-dfhs">(07)642-9653</td>
|
||||
<td class="tg-dfhs">高雄市林園區信義路16號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">大寮區衛生所</td>
|
||||
<td class="tg-peb5">(07)781-1965</td>
|
||||
<td class="tg-peb5">高雄市大寮區永芳里進學路129巷2-1號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">樂生婦幼醫院</td>
|
||||
<td class="tg-dfhs">(07)786-2688</td>
|
||||
<td class="tg-dfhs">高雄市大寮區鳳林三路532號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">同喬眼科診所</td>
|
||||
<td class="tg-peb5">(07)702-7899</td>
|
||||
<td class="tg-peb5">高雄市大寮區鳳屏一路507號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">黃伯達診所</td>
|
||||
<td class="tg-dfhs">(07)375-9600</td>
|
||||
<td class="tg-dfhs">高雄市仁武區仁忠路75號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">長庚醫療財團法人高雄長庚紀念醫院</td>
|
||||
<td class="tg-peb5">(07)731-7123</td>
|
||||
<td class="tg-peb5">高雄市鳥松區大埤路123號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">藍偉宏診所</td>
|
||||
<td class="tg-dfhs">(07)733-8715</td>
|
||||
<td class="tg-dfhs">高雄市鳥松區學堂路105-1號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">橋頭區衛生所</td>
|
||||
<td class="tg-peb5">(07)611-3516</td>
|
||||
<td class="tg-peb5">高雄市橋頭區隆豐路5號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">張民傑診所</td>
|
||||
<td class="tg-dfhs">(07)611-8991</td>
|
||||
<td class="tg-dfhs">高雄市橋頭區新興路95號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">溫馨聯合助產所</td>
|
||||
<td class="tg-peb5">(07)611-8760</td>
|
||||
<td class="tg-peb5">高雄市橋頭區成功南路134號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">義大醫療財團法人義大醫院</td>
|
||||
<td class="tg-dfhs">(07)615-0011</td>
|
||||
<td class="tg-dfhs">高雄市燕巢區角宿里義大路1號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">義大醫療財團法人義大癌治療醫院</td>
|
||||
<td class="tg-peb5">(07)615-0022</td>
|
||||
<td class="tg-peb5">高雄市燕巢區角宿里義大路21號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">田寮區衛生所</td>
|
||||
<td class="tg-dfhs">(07)636-1504</td>
|
||||
<td class="tg-dfhs">高雄市田寮區南安里崗北路32號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">阿蓮區衛生所</td>
|
||||
<td class="tg-peb5">(07)631-7141</td>
|
||||
<td class="tg-peb5">高雄市阿蓮區民生路94-1號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">阿蓮康健診所</td>
|
||||
<td class="tg-dfhs">(07)631-7288</td>
|
||||
<td class="tg-dfhs">高雄市阿蓮區中正路383號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">王金城婦產科診所</td>
|
||||
<td class="tg-peb5">(07)697-5768</td>
|
||||
<td class="tg-peb5">高雄市路竹區中山路573號1樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">永安區衛生所</td>
|
||||
<td class="tg-dfhs">(07)691-2015</td>
|
||||
<td class="tg-dfhs">高雄市永安區永安路26號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">大嘉診所</td>
|
||||
<td class="tg-peb5">(07)689-5789</td>
|
||||
<td class="tg-peb5">高雄市六龜區太平路114號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">高雄市六龜區衛生所</td>
|
||||
<td class="tg-dfhs">(07)689-1244</td>
|
||||
<td class="tg-dfhs">高雄市六龜區民治路16號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">高雄市茂林區衛生所</td>
|
||||
<td class="tg-peb5">(07)680-1046</td>
|
||||
<td class="tg-peb5">高雄市茂林區茂林里8-4號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">高雄市桃源區衛生所</td>
|
||||
<td class="tg-dfhs">(07)686-1126</td>
|
||||
<td class="tg-dfhs">高雄市桃源區桃源里南進巷188-1號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">高雄市那瑪夏區衛生所</td>
|
||||
<td class="tg-peb5">(07)670-1142</td>
|
||||
<td class="tg-peb5">高雄市那瑪夏區瑪雅里平和巷252號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">高雄市立聯合醫院</td>
|
||||
<td class="tg-dfhs">(07)555-2565</td>
|
||||
<td class="tg-dfhs">高雄市鼓山區中華一路976號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">生安婦產小兒科醫院</td>
|
||||
<td class="tg-peb5">(07)522-3138</td>
|
||||
<td class="tg-peb5">高雄市鼓山區美術東二路177號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">正大醫院</td>
|
||||
<td class="tg-dfhs">(07)582-3989</td>
|
||||
<td class="tg-dfhs">高雄市鼓山區鼓山三路128號之9</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">陳正信婦產外科診所</td>
|
||||
<td class="tg-peb5">(07)521-7379</td>
|
||||
<td class="tg-peb5">高雄市鼓山區九如四路661號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">明誠聯合診所</td>
|
||||
<td class="tg-dfhs">(07)553-8665</td>
|
||||
<td class="tg-dfhs">高雄市鼓山區中華一路310號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">好韻診所</td>
|
||||
<td class="tg-peb5">(07)552-9988</td>
|
||||
<td class="tg-peb5">高雄市鼓山區博愛二路333號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">謝麗萍婦產科診所</td>
|
||||
<td class="tg-dfhs">(07)586-6331</td>
|
||||
<td class="tg-dfhs">高雄市鼓山區青海路2號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">家安診所</td>
|
||||
<td class="tg-peb5">(07)554-1515</td>
|
||||
<td class="tg-peb5">高雄市鼓山區裕誠路1515號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">容婦產科診所</td>
|
||||
<td class="tg-dfhs">(07)554-1000</td>
|
||||
<td class="tg-dfhs">高雄市鼓山區明誠三路487號1~4樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">張榮州婦產科診所</td>
|
||||
<td class="tg-peb5">(07)522-2368</td>
|
||||
<td class="tg-peb5">高雄市鼓山區文信路201號1~2樓、205號1~3樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">健愛婦科診所</td>
|
||||
<td class="tg-dfhs">(07)555-0351</td>
|
||||
<td class="tg-dfhs">高雄市鼓山區明誠四路306號1樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">吳錦明婦產科診所</td>
|
||||
<td class="tg-peb5">(07)522-6670</td>
|
||||
<td class="tg-peb5">高雄市鼓山區華榮路409號1-4樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">良生診所怡廷婦產科診所</td>
|
||||
<td class="tg-dfhs">(07)583-2509轉201(不受理預約)</td>
|
||||
<td class="tg-dfhs">高雄市左營區左營大路111號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">詠康診所</td>
|
||||
<td class="tg-peb5">(07)558-0265</td>
|
||||
<td class="tg-peb5">高雄市左營區明華一路265號1、2樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">國軍高雄總醫院左營分院附設民眾診療服務處</td>
|
||||
<td class="tg-dfhs">(07)581-7121</td>
|
||||
<td class="tg-dfhs">高雄市左營區軍校路553號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">馬遠成診所</td>
|
||||
<td class="tg-peb5">(07)583-2348</td>
|
||||
<td class="tg-peb5">高雄市左營區果峰街2巷3號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">高雄榮民總醫院</td>
|
||||
<td class="tg-dfhs">(07)342-2121</td>
|
||||
<td class="tg-dfhs">高雄市左營區大中一路386號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">柏仁醫院</td>
|
||||
<td class="tg-peb5">(07)550-8888</td>
|
||||
<td class="tg-peb5">高雄市左營區博愛二路350號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">向陽(鄭倩寧)家醫科診所</td>
|
||||
<td class="tg-dfhs">(07)550-8375</td>
|
||||
<td class="tg-dfhs">高雄市左營區自由二路226號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">馨蕙馨醫院</td>
|
||||
<td class="tg-peb5">(07)558-6080</td>
|
||||
<td class="tg-peb5">高雄市左營區明誠二路541號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">蘇婦產科診所</td>
|
||||
<td class="tg-dfhs">(07)557-5100</td>
|
||||
<td class="tg-dfhs">高雄市左營區裕誠路445號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">欣正中診所</td>
|
||||
<td class="tg-peb5">(07)555-5171</td>
|
||||
<td class="tg-peb5">高雄市左營區南屏路245號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">吳虹婦產科診所</td>
|
||||
<td class="tg-dfhs">(07)350-7101</td>
|
||||
<td class="tg-dfhs">高雄市左營區新庄仔路273號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">鈞安婦幼聯合醫院</td>
|
||||
<td class="tg-peb5">(07)348-0088</td>
|
||||
<td class="tg-peb5">高雄市左營區華夏路609號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">黃敏毓婦產科診所</td>
|
||||
<td class="tg-dfhs">(07)359-5899</td>
|
||||
<td class="tg-dfhs">高雄市左營區自由三路392號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">博愛蕙馨醫院</td>
|
||||
<td class="tg-peb5">(07)862-8880</td>
|
||||
<td class="tg-peb5">高雄市左營區博愛二路20號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">悠仁婦產科診所</td>
|
||||
<td class="tg-dfhs">(07)345-5959</td>
|
||||
<td class="tg-dfhs">高雄市左營區自由三路172號2樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">日月光附設員工醫務室</td>
|
||||
<td class="tg-peb5">(07)361-7131</td>
|
||||
<td class="tg-peb5">高雄市楠梓區楠梓加工出口區經五路123號6~7樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">健仁醫院</td>
|
||||
<td class="tg-dfhs">(07)351-7166</td>
|
||||
<td class="tg-dfhs">高雄市楠梓區楠陽路136號、朝明路130巷7弄1號1~5樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">王新台婦產科診所</td>
|
||||
<td class="tg-peb5">(07)365-3166</td>
|
||||
<td class="tg-peb5">高雄市楠梓區後昌路972號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">李再昌婦產科診所</td>
|
||||
<td class="tg-dfhs">(07)353-1762</td>
|
||||
<td class="tg-dfhs">高雄市楠梓區興楠路303號1樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">金安心醫院</td>
|
||||
<td class="tg-peb5">(07)364-9890</td>
|
||||
<td class="tg-peb5">高雄市楠梓區加昌路606號1~4樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">翁仲仁婦產科診所</td>
|
||||
<td class="tg-dfhs">(07)362-6158</td>
|
||||
<td class="tg-dfhs">高雄市楠梓區德民路1010-5號2~4樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">楠梓聯合婦產科診所</td>
|
||||
<td class="tg-peb5">(07)351-1316</td>
|
||||
<td class="tg-peb5">高雄市楠梓區建楠路95號1~2樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">蔡鎰和婦產科診所</td>
|
||||
<td class="tg-dfhs">(07)368-5899</td>
|
||||
<td class="tg-dfhs">高雄市楠梓區軍校路866、868號1樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">高大美杏生醫院</td>
|
||||
<td class="tg-peb5">(07)365-8885</td>
|
||||
<td class="tg-peb5">高雄市楠梓區大學東路1號1-3樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">高大美杏生醫院</td>
|
||||
<td class="tg-dfhs">(07)365-8885</td>
|
||||
<td class="tg-dfhs">高雄市楠梓區大學東路1號1-3樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">四季台安醫院</td>
|
||||
<td class="tg-peb5">(07)398-3000</td>
|
||||
<td class="tg-peb5">高雄市三民區灣興里聯興路157號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">生生不息婦產科診所</td>
|
||||
<td class="tg-dfhs">(07)390-3390</td>
|
||||
<td class="tg-dfhs">高雄市三民區建工路856號1、2樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">開元診所</td>
|
||||
<td class="tg-peb5">(07)387-3595</td>
|
||||
<td class="tg-peb5">高雄市三民區明誠一路296號1樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">婦群婦產科診所</td>
|
||||
<td class="tg-dfhs">(07)380-8822</td>
|
||||
<td class="tg-dfhs">高雄市三民區建工路537號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">耀德婦產科診所</td>
|
||||
<td class="tg-peb5">(07)390-9189</td>
|
||||
<td class="tg-peb5">高雄市三民區建工路601號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">王保強婦產科診所</td>
|
||||
<td class="tg-dfhs">(07)390-6320</td>
|
||||
<td class="tg-dfhs">高雄市三民區本揚里天民路125號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">家康診所</td>
|
||||
<td class="tg-peb5">(07)380-0600</td>
|
||||
<td class="tg-peb5">高雄市三民區灣子里大順二路863號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">沈中章婦產科診所</td>
|
||||
<td class="tg-dfhs">(07)381-8993</td>
|
||||
<td class="tg-dfhs">高雄市三民區寶安里大昌二路97號1樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">王婦產科診所</td>
|
||||
<td class="tg-peb5">(07)387-3979</td>
|
||||
<td class="tg-peb5">高雄市三民區寶安里九如一路440號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">義大醫療財團法人義大大昌醫院</td>
|
||||
<td class="tg-dfhs">(07)559-9123</td>
|
||||
<td class="tg-dfhs">高雄市三民區灣子里大昌一路305號B3至7樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">喬安婦產科診所</td>
|
||||
<td class="tg-peb5">(07)349-3693</td>
|
||||
<td class="tg-peb5">高雄市三民區民族一路870號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">美杏婦產科診所</td>
|
||||
<td class="tg-dfhs">(07)381-0882</td>
|
||||
<td class="tg-dfhs">高雄市三民區澄清路567號1-2樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">愛汝診所</td>
|
||||
<td class="tg-peb5">(07)224-2525</td>
|
||||
<td class="tg-peb5">高雄市新興區五福一路140號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">蘇榮茂診所</td>
|
||||
<td class="tg-dfhs">(07)223-1243</td>
|
||||
<td class="tg-dfhs">高雄市新興區民族二路76號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">邱淑雅婦產科診所</td>
|
||||
<td class="tg-peb5">(07)282-3377</td>
|
||||
<td class="tg-peb5">高雄市新興區林森二路198號一之三樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">健和診所</td>
|
||||
<td class="tg-dfhs">(07)2299968</td>
|
||||
<td class="tg-dfhs">高雄市新興區五福一路140之1號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">美兆診所</td>
|
||||
<td class="tg-peb5">(07)226-2288</td>
|
||||
<td class="tg-peb5">高雄市新興區中正二路182號14樓之3</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">健新醫院</td>
|
||||
<td class="tg-dfhs">(07)261-3866</td>
|
||||
<td class="tg-dfhs">高雄市前金區七賢二路295號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">高雄市立大同醫院</td>
|
||||
<td class="tg-peb5">(07)291-1101</td>
|
||||
<td class="tg-peb5">高雄市前金區中華三路68號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">嘉醫診所</td>
|
||||
<td class="tg-dfhs">(07)241-1668</td>
|
||||
<td class="tg-dfhs">高雄市前金區中華三路86號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">魏燕呢婦產科診所</td>
|
||||
<td class="tg-peb5">(07)221-8885</td>
|
||||
<td class="tg-peb5">高雄市前金區中華四路326號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">一誠診所</td>
|
||||
<td class="tg-dfhs">(07)751-1156</td>
|
||||
<td class="tg-dfhs">高雄市苓雅區正大里建國一路115之5號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">國軍高雄總醫院附設民眾診療服務處</td>
|
||||
<td class="tg-peb5">(07)749-6751</td>
|
||||
<td class="tg-peb5">高雄市苓雅區正義里中正一路2號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">天主教聖功醫療財團法人聖功醫院</td>
|
||||
<td class="tg-dfhs">(07)223-8153</td>
|
||||
<td class="tg-dfhs">高雄市苓雅區民主里建國一路352號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">黃寶慧婦產科診所</td>
|
||||
<td class="tg-peb5">(07)330-8365</td>
|
||||
<td class="tg-peb5">高雄市苓雅區林西里三多二路124號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">安田婦產科診所</td>
|
||||
<td class="tg-dfhs">(07)725-5167</td>
|
||||
<td class="tg-dfhs">高雄市苓雅區林興里三多二路353號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">盛田婦產科診所</td>
|
||||
<td class="tg-peb5">(07)331-2686</td>
|
||||
<td class="tg-peb5">高雄市苓雅區城東里興中二路12號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">高雄市立民生醫院</td>
|
||||
<td class="tg-dfhs">(07)751-1131</td>
|
||||
<td class="tg-dfhs">高雄市苓雅區奏捷里凱旋二路134號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">信義醫療財團法人高雄基督教醫院</td>
|
||||
<td class="tg-peb5">(07)332-1111</td>
|
||||
<td class="tg-peb5">高雄市苓雅區苓雅里華新街86號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">小太陽診所</td>
|
||||
<td class="tg-dfhs">(07)226-7753</td>
|
||||
<td class="tg-dfhs">高雄市苓雅區凱旋里和平一路150號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">阮綜合醫療社團法人阮綜合醫院</td>
|
||||
<td class="tg-peb5">(07)335-1121</td>
|
||||
<td class="tg-peb5">高雄市苓雅區鼓中里成功一路162號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">懷恩婦產科診所</td>
|
||||
<td class="tg-dfhs">(07)727-3738</td>
|
||||
<td class="tg-dfhs">高雄市苓雅區福海里三多一路205號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">新正薪醫院</td>
|
||||
<td class="tg-peb5">(07)970-5335</td>
|
||||
<td class="tg-peb5">高雄市前鎮區一心一路233號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">吳玉珍婦產科診所</td>
|
||||
<td class="tg-dfhs">(07)722-0123</td>
|
||||
<td class="tg-dfhs">高雄市前鎮區光華二路48號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">吳昆哲婦產小兒科醫院</td>
|
||||
<td class="tg-peb5">(07)331-9611</td>
|
||||
<td class="tg-peb5">高雄市前鎮區民權二路430號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">寶鈴診所</td>
|
||||
<td class="tg-dfhs">(07)727-9779</td>
|
||||
<td class="tg-dfhs">高雄市前鎮區一心一路17號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">聖青診所</td>
|
||||
<td class="tg-peb5">(07)831-0970</td>
|
||||
<td class="tg-peb5">高雄市前鎮區草衙一路112號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">高雄市立旗津醫院</td>
|
||||
<td class="tg-dfhs">(07)571-1188</td>
|
||||
<td class="tg-dfhs">高雄市旗津區旗港路33號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">高雄市立小港醫院</td>
|
||||
<td class="tg-peb5">(07)803-6783</td>
|
||||
<td class="tg-peb5">高雄市小港區山明路482號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">戴銘浚婦兒醫院</td>
|
||||
<td class="tg-dfhs">(07)806-1289</td>
|
||||
<td class="tg-dfhs">高雄市小港區宏平路661號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">小港安生婦產科診所</td>
|
||||
<td class="tg-peb5">(07)801-6000</td>
|
||||
<td class="tg-peb5">高雄市小港區宏平路636號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">安泰醫院</td>
|
||||
<td class="tg-dfhs">(07)801-7856</td>
|
||||
<td class="tg-dfhs">高雄市小港區學府路111號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">謝柏壽婦產科診所</td>
|
||||
<td class="tg-peb5">(07)822-9208</td>
|
||||
<td class="tg-peb5">高雄市小港區平和路236號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">高雄醫學大學附設中和紀念醫院</td>
|
||||
<td class="tg-dfhs">(07)312-1101</td>
|
||||
<td class="tg-dfhs">高雄市三民區十全一路100號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">愛仁醫療社團法人愛仁醫院</td>
|
||||
<td class="tg-peb5">(07)311-5159</td>
|
||||
<td class="tg-peb5">高雄市三民區民族一路51號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">德謙醫院</td>
|
||||
<td class="tg-dfhs">(07)321-0981</td>
|
||||
<td class="tg-dfhs">高雄市三民區九如二路18號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">佑康診所</td>
|
||||
<td class="tg-peb5">(07)321-5358</td>
|
||||
<td class="tg-peb5">高雄市三民區博愛一路28號5樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">建銘診所</td>
|
||||
<td class="tg-dfhs">(07)321-9879</td>
|
||||
<td class="tg-dfhs">高雄市三民區十全一路405號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">婦全婦產科診所</td>
|
||||
<td class="tg-peb5">(07)272-8025(07)272-8026</td>
|
||||
<td class="tg-peb5">高雄市三民區建國三路517號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">陳國敏婦產科診所</td>
|
||||
<td class="tg-dfhs">(07)288-8115</td>
|
||||
<td class="tg-dfhs">高雄市三民區建國三路279號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">夏道生婦產科診所</td>
|
||||
<td class="tg-peb5">(07)237-2275</td>
|
||||
<td class="tg-peb5">高雄市三民區建國二路54號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">安安十全婦幼診所</td>
|
||||
<td class="tg-dfhs">(07)323-1550</td>
|
||||
<td class="tg-dfhs">高雄市三民區十全三路280號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">欣欣婦產科診所</td>
|
||||
<td class="tg-peb5">(07)766-7766</td>
|
||||
<td class="tg-peb5">高雄市鳳山區新甲里大明路63號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">明馨婦產科診所</td>
|
||||
<td class="tg-dfhs">(07)831-7603</td>
|
||||
<td class="tg-dfhs">高雄市鳳山區福誠里忠誠路61號 1樓</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">莊維周婦產科診所</td>
|
||||
<td class="tg-peb5">(07)831-8999</td>
|
||||
<td class="tg-peb5">高雄市鳳山區福興里五福二路165號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">馨安婦產科診所</td>
|
||||
<td class="tg-dfhs">(07)727-6111</td>
|
||||
<td class="tg-dfhs">高雄市鳳山區一甲里五甲二路346-1號</td>
|
||||
</tr>
|
||||
</tbody></table></div>
|
||||
|
||||
@endsection
|
||||
|
||||
|
||||
@section('style')
|
||||
<style type="text/css">
|
||||
.tg {border-collapse:collapse;border-color:#ccc;border-spacing:0;}
|
||||
.tg td{background-color:#fff;border-bottom-width:1px;border-color:#ccc;border-style:solid;border-top-width:1px;
|
||||
border-width:0px;color:#333;font-family:Arial, sans-serif;font-size:14px;overflow:hidden;padding:10px 5px;
|
||||
word-break:normal;}
|
||||
.tg th{background-color:#f0f0f0;border-bottom-width:1px;border-color:#ccc;border-style:solid;border-top-width:1px;
|
||||
border-width:0px;color:#333;font-family:Arial, sans-serif;font-size:14px;font-weight:normal;overflow:hidden;
|
||||
padding:10px 5px;word-break:normal;}
|
||||
.tg .tg-dfhs{background-color:#f9f9f9;font-size:large;text-align:left;vertical-align:top}
|
||||
.tg .tg-syvo{font-size:large;position:-webkit-sticky;position:sticky;text-align:left;top:-1px;vertical-align:top;
|
||||
will-change:transform}
|
||||
.tg .tg-peb5{font-size:large;text-align:left;vertical-align:top}
|
||||
@media screen and (max-width: 767px) {.tg {width: auto !important;}.tg col {width: auto !important;}.tg-wrap {overflow-x: auto;-webkit-overflow-scrolling: touch;}}</style>
|
||||
|
||||
|
||||
@endsection
|
3610
resources/views/screeningAppointmentLocationColorectal.blade.php
Normal file
3610
resources/views/screeningAppointmentLocationColorectal.blade.php
Normal file
File diff suppressed because it is too large
Load Diff
5036
resources/views/screeningAppointmentLocationHepatitisBAndC.blade.php
Normal file
5036
resources/views/screeningAppointmentLocationHepatitisBAndC.blade.php
Normal file
File diff suppressed because it is too large
Load Diff
155
resources/views/screeningAppointmentLocationLung.blade.php
Normal file
155
resources/views/screeningAppointmentLocationLung.blade.php
Normal file
@ -0,0 +1,155 @@
|
||||
@extends('layouts.screeningAppointmentLocation')
|
||||
|
||||
@section('content-page')
|
||||
<p> </p>
|
||||
<h3 style="font-weight: 700; text-align:center;">肺癌篩檢</h3>
|
||||
|
||||
<div class="tg-wrap"><table class="tg"><thead>
|
||||
<tr>
|
||||
<th class="tg-syvo">醫療院所名稱</th>
|
||||
<th class="tg-syvo">電話</th>
|
||||
<th class="tg-syvo">地址</th>
|
||||
</tr></thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="tg-dfhs">高雄榮民總醫院</td>
|
||||
<td class="tg-dfhs">(07) 342-2121轉78230</td>
|
||||
<td class="tg-dfhs">高雄市左營區大中一路386號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">高雄長庚紀念醫院</td>
|
||||
<td class="tg-peb5">(07) 731-7123轉3299</td>
|
||||
<td class="tg-peb5">高雄市鳥松區大埤路123號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">高醫大附設醫院</td>
|
||||
<td class="tg-dfhs">(07) 312-1101轉6054</td>
|
||||
<td class="tg-dfhs">高雄市三民區自由一路100號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">高醫岡山醫院</td>
|
||||
<td class="tg-peb5">(07) 626-1000轉1954</td>
|
||||
<td class="tg-peb5">高雄市岡山區捷安路8號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">義大醫院</td>
|
||||
<td class="tg-dfhs">(07) 615-0011轉5240</td>
|
||||
<td class="tg-dfhs">高雄市燕巢區義大路1號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">義大癌治療醫院</td>
|
||||
<td class="tg-peb5">(07) 615-0022轉5204</td>
|
||||
<td class="tg-peb5">高雄市燕巢區義大路21號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">衛福部旗山醫院</td>
|
||||
<td class="tg-dfhs">(07) 661-3811轉5218</td>
|
||||
<td class="tg-dfhs">高雄市旗山區中學路60號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">健仁醫院</td>
|
||||
<td class="tg-peb5">(07) 351-7166轉3105</td>
|
||||
<td class="tg-peb5">高雄市楠梓區楠陽路136號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">右昌聯合醫院</td>
|
||||
<td class="tg-dfhs">(07) 364-3388轉3025</td>
|
||||
<td class="tg-dfhs">高雄市楠梓區軍校路930號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">義大大昌醫院</td>
|
||||
<td class="tg-peb5">(07) 559-6111轉257659</td>
|
||||
<td class="tg-peb5">高雄市三民區大昌一路305號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">馨蕙馨醫院</td>
|
||||
<td class="tg-dfhs">(07) 558-6080轉1012</td>
|
||||
<td class="tg-dfhs">高雄市左營區明誠二路541號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">阮綜合醫院</td>
|
||||
<td class="tg-peb5">(07) 335-1121轉1636</td>
|
||||
<td class="tg-peb5">高雄市苓雅區成功一路162號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">聖功醫院</td>
|
||||
<td class="tg-dfhs">(07) 223-8153轉6117</td>
|
||||
<td class="tg-dfhs">高雄市苓雅區建國一路352號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">國軍左營總醫院</td>
|
||||
<td class="tg-peb5">(07) 581-7121轉3243</td>
|
||||
<td class="tg-peb5">高雄市左營區軍校路553號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">國軍高雄總醫院</td>
|
||||
<td class="tg-dfhs">(07) 799-1922</td>
|
||||
<td class="tg-dfhs">高雄市苓雅區中正一路2號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">國軍高雄岡山分院</td>
|
||||
<td class="tg-peb5">(07) 625-0919轉1215</td>
|
||||
<td class="tg-peb5">高雄市岡山區大義二路1號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">高雄市立岡山醫院</td>
|
||||
<td class="tg-dfhs">(07) 622-2131轉59175</td>
|
||||
<td class="tg-dfhs">高雄市岡山區壽天路12號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">高雄市立聯合醫院</td>
|
||||
<td class="tg-peb5">(07) 555-2565轉51041</td>
|
||||
<td class="tg-peb5">高雄市鼓山區中華一路976號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">高雄市立大同醫院</td>
|
||||
<td class="tg-dfhs">(07) 291-1101轉8583</td>
|
||||
<td class="tg-dfhs">高雄市前金區中華三路68號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">高雄市立民生醫院</td>
|
||||
<td class="tg-peb5">(07) 751-1131轉5699</td>
|
||||
<td class="tg-peb5">高雄市苓雅區凱旋二路134號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">高雄市立鳳山醫院</td>
|
||||
<td class="tg-dfhs">(07) 741-8151轉2300</td>
|
||||
<td class="tg-dfhs">高雄市鳳山區經武路42之1號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">高雄市立旗津醫院</td>
|
||||
<td class="tg-peb5">(07) 571-1188轉1418</td>
|
||||
<td class="tg-peb5">高雄市旗津區旗港路33號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-dfhs">高雄市立小港醫院</td>
|
||||
<td class="tg-dfhs">(07) 803-6783轉3185</td>
|
||||
<td class="tg-dfhs">高雄市小港區山明路482號</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-peb5">建佑醫院</td>
|
||||
<td class="tg-peb5">(07) 643-7901轉160</td>
|
||||
<td class="tg-peb5">高雄市林園區東林西路360號</td>
|
||||
</tr>
|
||||
</tbody></table></div>
|
||||
|
||||
@endsection
|
||||
|
||||
|
||||
@section('style')
|
||||
<style type="text/css">
|
||||
.tg {border-collapse:collapse;border-color:#ccc;border-spacing:0; width:100%;}
|
||||
.tg td{background-color:#fff;border-bottom-width:1px;border-color:#ccc;border-style:solid;border-top-width:1px;
|
||||
border-width:0px;color:#333;font-family:Arial, sans-serif;font-size:14px;overflow:hidden;padding:10px 5px;
|
||||
word-break:normal;}
|
||||
.tg th{background-color:#f0f0f0;border-bottom-width:1px;border-color:#ccc;border-style:solid;border-top-width:1px;
|
||||
border-width:0px;color:#333;font-family:Arial, sans-serif;font-size:14px;font-weight:normal;overflow:hidden;
|
||||
padding:10px 5px;word-break:normal;}
|
||||
.tg .tg-dfhs{background-color:#f9f9f9;font-size:large;text-align:left;vertical-align:top}
|
||||
.tg .tg-syvo{font-size:large;position:-webkit-sticky;position:sticky;text-align:left;top:-1px;vertical-align:top;
|
||||
will-change:transform}
|
||||
.tg .tg-peb5{font-size:large;text-align:left;vertical-align:top}
|
||||
@media screen and (max-width: 767px) {.tg {width: auto !important;}.tg col {width: auto !important;}.tg-wrap {overflow-x: auto;-webkit-overflow-scrolling: touch;}}</style>
|
||||
|
||||
|
||||
@endsection
|
2272
resources/views/screeningAppointmentLocationOral.blade.php
Normal file
2272
resources/views/screeningAppointmentLocationOral.blade.php
Normal file
File diff suppressed because it is too large
Load Diff
318
resources/views/screeningLotteryFillForm.blade.php
Normal file
318
resources/views/screeningLotteryFillForm.blade.php
Normal file
File diff suppressed because one or more lines are too long
28
resources/views/screeningLotteryFillFormInfo.blade.php
Normal file
28
resources/views/screeningLotteryFillFormInfo.blade.php
Normal file
@ -0,0 +1,28 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-8 main-area">
|
||||
|
||||
<h1 style="text-align: center;">篩檢抽獎資格</h1>
|
||||
<h3 style="text-align: center;"><hr style="width:2em; display: inline-block"></h3>
|
||||
<h2 style="text-align: center;"></h2>
|
||||
|
||||
<p class="lead"></p>
|
||||
|
||||
<p class="lead">★定量免疫糞便潛血檢查:38-63年次且112年迄今未接受糞便潛血檢查。</p>
|
||||
<p class="lead">★乳房X光攝影檢查篩檢: 43-68年次或69-73年次二等親內曾罹患乳癌,且112年迄今未接受乳房X光攝影檢查之女性市民。</p>
|
||||
<p class="lead">★子宮頸抹片檢查篩檢: 43~83年次且111年迄今未接受子宮頸抹片檢查。</p>
|
||||
<p class="lead">★口腔黏膜檢查:39~83年次有嚼檳榔(含已戒)或吸菸習慣,自112年迄今未接受口腔黏膜檢查。</p>
|
||||
<p class="lead">★肺癌低劑量電腦斷層掃描:重度吸菸者(38-63年次)或具肺癌家族史(男性38-63年次、女性38-68年次),且111年迄今未接受肺癌篩檢。</p>
|
||||
<p class="lead">★B、C肝炎篩檢: 45至79歲(民國34-68年次)及原民40-79歲(民國34-73年次)迄今未參加過BC肝篩檢之市民。</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@endsection
|
53
resources/views/screeningLotteryInfo.blade.php
Normal file
53
resources/views/screeningLotteryInfo.blade.php
Normal file
File diff suppressed because one or more lines are too long
55
resources/views/screeningLotteryRegQuery.blade.php
Normal file
55
resources/views/screeningLotteryRegQuery.blade.php
Normal file
@ -0,0 +1,55 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-8 main-area">
|
||||
|
||||
<h1 style="text-align: center;">健健登記站</h1>
|
||||
<h3 style="text-align: center;"><hr style="width:2em; display: inline-block"></h3>
|
||||
<h2 style="text-align: center;">登記查詢</h2>
|
||||
|
||||
<form method="POST" action="?">
|
||||
@csrf
|
||||
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<div class="mb-3">
|
||||
<label for="regIdNumber" class="form-label">身份證字號</label>
|
||||
<input type="text" class="form-control" id="regIdNumber" name="id_number" required value="">
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary">查詢</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@if ($errors->any())
|
||||
<div class="text-left mt-3 alert alert-block alert-danger">
|
||||
|
||||
<ul>
|
||||
@foreach ($errors->all() as $error)
|
||||
<li>{{ $error }}</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
</div>
|
||||
@endif
|
||||
@if ($message = Session::get('success'))
|
||||
<div class="text-left mt-3 alert alert-block alert-success ">
|
||||
<p>您已登記的查詢如下:</p>
|
||||
<ul>
|
||||
@foreach ($message as $item)
|
||||
<li><strong>{{ $item->name }}</strong></li>
|
||||
@endforeach
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
@endif
|
||||
|
||||
</form>
|
||||
|
||||
<p> </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@endsection
|
30
resources/views/screeningLotteryWinners.blade.php
Normal file
30
resources/views/screeningLotteryWinners.blade.php
Normal file
File diff suppressed because one or more lines are too long
133
resources/views/welcome.blade.php
Normal file
133
resources/views/welcome.blade.php
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user