|
@@ -1,112 +1,122 @@
|
1
|
1
|
<template>
|
2
|
2
|
<!-- eslint-disable max-len -->
|
3
|
|
- <section>
|
4
|
|
- <section class="intro-single">
|
5
|
|
- <div class="container">
|
6
|
|
- <div class="row">
|
7
|
|
- <div class="col-md-12 col-lg-8">
|
8
|
|
- <div class="title-single-box">
|
9
|
|
- <h1 class="title-single" style="text-align:left;">Timeshare To Buy</h1>
|
10
|
|
- </div>
|
11
|
|
- </div>
|
12
|
|
- </div>
|
13
|
|
- </div>
|
14
|
|
- </section>
|
|
3
|
+ <section class="collapse-items">
|
15
|
4
|
<div class="container">
|
16
|
5
|
<div class="row">
|
17
|
|
- <div class="col-md-12 text-left">
|
18
|
|
- <p>
|
19
|
|
- The resorts have been listed in their relevant provinces.
|
20
|
|
- Please select the resort for which you would like to view
|
21
|
|
- the available weeks and then select the weeks that interest
|
22
|
|
- you on the resort page.
|
23
|
|
- </p>
|
24
|
|
- <p>
|
25
|
|
- Arrival and departure dates are indicated but please note
|
26
|
|
- that these dates may vary annually.
|
27
|
|
- </p>
|
28
|
|
- <p>
|
29
|
|
- As with any property related sale, upon purchasing the holiday
|
30
|
|
- of your choice, there will be a transfer fee payable for the
|
31
|
|
- change of ownership. This fee will depend on the relevant resort
|
32
|
|
- or managing agent.
|
33
|
|
- </p>
|
|
6
|
+ <div class="col-sm-12">
|
|
7
|
+ <div class="tobuy-img-box">
|
|
8
|
+ <img
|
|
9
|
+ src="img/Monateng_Safari_Lodge1.jpg"
|
|
10
|
+ alt="Timeshare To Buy"
|
|
11
|
+ class="img-fluid"
|
|
12
|
+ style="width:800px;height:400px;"
|
|
13
|
+ />
|
|
14
|
+ </div>
|
|
15
|
+ <div class="sinse-box">
|
|
16
|
+ <h3 class="sinse-title">
|
|
17
|
+ Timeshare To Buy
|
|
18
|
+ <span></span>
|
|
19
|
+ </h3>
|
|
20
|
+ </div>
|
34
|
21
|
</div>
|
35
|
|
- </div>
|
36
|
22
|
|
37
|
|
- <div class="row mb-4">
|
38
|
|
- <div class="col-md-4">
|
39
|
|
- <div class="accordion" id="accordionExample">
|
40
|
|
- <div class="card" v-for="(region, r) in regions" :key="r">
|
41
|
|
- <a
|
42
|
|
- class="btn btn-b-n"
|
43
|
|
- type="button"
|
44
|
|
- data-toggle="collapse"
|
45
|
|
- :data-target="'#collapse' + region.id"
|
46
|
|
- aria-expanded="false"
|
47
|
|
- :aria-controls="'collapse' + region.id"
|
48
|
|
- >
|
49
|
|
- <div :id="'header' + region.id">
|
50
|
|
- <h5
|
51
|
|
- class="mb-0"
|
52
|
|
- @mouseover="updateMapProvince(region.regionName)"
|
53
|
|
- >{{ region.regionName }}</h5>
|
54
|
|
- </div>
|
55
|
|
- </a>
|
56
|
|
- <div
|
57
|
|
- :id="'collapse' + region.id"
|
58
|
|
- class="collapse"
|
59
|
|
- :aria-labelledby="'header' + region.id"
|
60
|
|
- data-parent="#accordionExample"
|
61
|
|
- >
|
62
|
|
- <div class="card-body">
|
63
|
|
- <p class="mb-0" v-for="(resort, i) in region.resorts" :key="i">
|
64
|
|
- <a
|
65
|
|
- class="cursor-pointer"
|
66
|
|
- href="#"
|
67
|
|
- @click="routerGoTo('/resort/' + resort.resortCode)"
|
68
|
|
- @mouseover="updateMap(resort.resortCode)"
|
69
|
|
- >{{resort.resortName}}</a>
|
70
|
|
- <br />
|
71
|
|
- </p>
|
|
23
|
+ <div class="container col-md-10">
|
|
24
|
+ <br />
|
|
25
|
+ <div class="row">
|
|
26
|
+ <div class="col-md-12 text-left">
|
|
27
|
+ <p>
|
|
28
|
+ The resorts have been listed in their relevant provinces.
|
|
29
|
+ Please select the resort for which you would like to view
|
|
30
|
+ the available weeks and then select the weeks that interest
|
|
31
|
+ you on the resort page.
|
|
32
|
+ </p>
|
|
33
|
+ <p>
|
|
34
|
+ Arrival and departure dates are indicated but please note
|
|
35
|
+ that these dates may vary annually.
|
|
36
|
+ </p>
|
|
37
|
+ <p>
|
|
38
|
+ As with any property related sale, upon purchasing the holiday
|
|
39
|
+ of your choice, there will be a transfer fee payable for the
|
|
40
|
+ change of ownership. This fee will depend on the relevant resort
|
|
41
|
+ or managing agent.
|
|
42
|
+ </p>
|
|
43
|
+ </div>
|
|
44
|
+ </div>
|
|
45
|
+ <br />
|
|
46
|
+ <div class="row mb-4">
|
|
47
|
+ <div class="container col-md-4">
|
|
48
|
+ <div class="accordion" id="accordionExample">
|
|
49
|
+ <div class="card" v-for="(region, r) in regions" :key="r">
|
|
50
|
+ <a
|
|
51
|
+ class="mb-0 color-text-a"
|
|
52
|
+ data-toggle="collapse"
|
|
53
|
+ :data-target="'#collapse' + region.id"
|
|
54
|
+ aria-expanded="false"
|
|
55
|
+ :aria-controls="'collapse' + region.id"
|
|
56
|
+ >
|
|
57
|
+ <div :id="'header' + region.id">
|
|
58
|
+ <h5
|
|
59
|
+ class="btn btn-link font-weight-bold color-b"
|
|
60
|
+ @mouseover="updateMapProvince(region.regionName)"
|
|
61
|
+ >{{ region.regionName }}</h5>
|
|
62
|
+ </div>
|
|
63
|
+ </a>
|
|
64
|
+ <div
|
|
65
|
+ :id="'collapse' + region.id"
|
|
66
|
+ class="collapse"
|
|
67
|
+ :aria-labelledby="'header' + region.id"
|
|
68
|
+ data-parent="#accordionExample"
|
|
69
|
+ >
|
|
70
|
+ <div class="card-body">
|
|
71
|
+ <p class="mb-0" v-for="(resort, i) in region.resorts" :key="i">
|
|
72
|
+ <a
|
|
73
|
+ class="cursor-pointer"
|
|
74
|
+ href="#"
|
|
75
|
+ @click="routerGoTo('/resort/' + resort.resortCode)"
|
|
76
|
+ @mouseover="updateMap(resort.resortCode)"
|
|
77
|
+ >{{resort.resortName}}</a>
|
|
78
|
+ <br />
|
|
79
|
+ </p>
|
|
80
|
+ </div>
|
|
81
|
+ </div>
|
72
|
82
|
</div>
|
73
|
83
|
</div>
|
74
|
84
|
</div>
|
75
|
|
- </div>
|
76
|
|
- </div>
|
77
|
|
- <div class="col-md-8">
|
78
|
|
- <div class="tab-content" id="myTabContent">
|
79
|
|
- <div
|
80
|
|
- class="tab-pane fade show active"
|
81
|
|
- id="directions"
|
82
|
|
- role="tabpanel"
|
83
|
|
- aria-labelledby="directions-tab"
|
84
|
|
- >
|
85
|
|
- <iframe
|
86
|
|
- :src="mapUrl"
|
87
|
|
- width="100%"
|
88
|
|
- height="450"
|
89
|
|
- frameborder="0"
|
90
|
|
- style="border:0"
|
91
|
|
- allowfullscreen
|
92
|
|
- ></iframe>
|
93
|
|
- <br />
|
|
85
|
+ <div class="col-md-8">
|
|
86
|
+ <div class="tab-content" id="myTabContent">
|
|
87
|
+ <div
|
|
88
|
+ class="tab-pane fade show active"
|
|
89
|
+ id="directions"
|
|
90
|
+ role="tabpanel"
|
|
91
|
+ aria-labelledby="directions-tab"
|
|
92
|
+ >
|
|
93
|
+ <iframe
|
|
94
|
+ :src="mapUrl"
|
|
95
|
+ width="100%"
|
|
96
|
+ height="450"
|
|
97
|
+ frameborder="0"
|
|
98
|
+ style="border:0"
|
|
99
|
+ allowfullscreen
|
|
100
|
+ ></iframe>
|
|
101
|
+ <br />
|
94
|
102
|
|
95
|
|
- <small>
|
96
|
|
- <a
|
97
|
|
- :href="mapUrl"
|
98
|
|
- style="color:#60CBEB;text-align:left"
|
99
|
|
- target="_blank"
|
100
|
|
- >See map bigger</a>
|
101
|
|
- </small>
|
102
|
|
- </div>
|
103
|
|
- <div
|
104
|
|
- class="tab-pane fade"
|
105
|
|
- id="resort-layout"
|
106
|
|
- role="tabpanel"
|
107
|
|
- aria-labelledby="resort-layout-tab"
|
108
|
|
- >
|
109
|
|
- <img class="img-fluid" :src="layout" alt="Resort Layout" />
|
|
103
|
+ <small>
|
|
104
|
+ <a
|
|
105
|
+ :href="mapUrl"
|
|
106
|
+ style="color:#60CBEB;text-align:left"
|
|
107
|
+ target="_blank"
|
|
108
|
+ >See map bigger</a>
|
|
109
|
+ </small>
|
|
110
|
+ </div>
|
|
111
|
+ <div
|
|
112
|
+ class="tab-pane fade"
|
|
113
|
+ id="resort-layout"
|
|
114
|
+ role="tabpanel"
|
|
115
|
+ aria-labelledby="resort-layout-tab"
|
|
116
|
+ >
|
|
117
|
+ <img class="img-fluid" :src="layout" alt="Resort Layout" />
|
|
118
|
+ </div>
|
|
119
|
+ </div>
|
110
|
120
|
</div>
|
111
|
121
|
</div>
|
112
|
122
|
</div>
|