Kobus 5 years ago
parent
commit
aa5947eb28

+ 1
- 1
src/components/home/carouselSection.vue View File

49
                     </p>
49
                     </p>
50
                     <h1 class="intro-title mb-4">
50
                     <h1 class="intro-title mb-4">
51
                       <span class="color-b">Kagga</span> Kamma
51
                       <span class="color-b">Kagga</span> Kamma
52
-                      <br />Nature Reserve
52
+                      <br />
53
                     </h1>
53
                     </h1>
54
                     <p class="intro-subtitle intro-price">
54
                     <p class="intro-subtitle intro-price">
55
                       <a href="#">
55
                       <a href="#">

+ 4
- 3
src/components/timeshare/buy/buyPage.vue View File

60
                     <div class="card-body">
60
                     <div class="card-body">
61
                       <p class="mb-0" v-for="(resort, i) in region.resorts" :key="i">
61
                       <p class="mb-0" v-for="(resort, i) in region.resorts" :key="i">
62
                         <a
62
                         <a
63
-                          class="text-capitalize"
63
+                          class="cursor-pointer"
64
+                          href="#"
64
                           @click="routerGoTo('/resort/' + resort.resortCode)"
65
                           @click="routerGoTo('/resort/' + resort.resortCode)"
65
                         >{{resort.resortName}}</a>
66
                         >{{resort.resortName}}</a>
66
                         <br />
67
                         <br />
86
   },
87
   },
87
   computed: {
88
   computed: {
88
     ...mapState('timeshareBuy', ['detailedRegion']),
89
     ...mapState('timeshareBuy', ['detailedRegion']),
89
-    regions(){
90
+    regions() {
90
       return _.sortBy(this.detailedRegion, r => r.regionName);
91
       return _.sortBy(this.detailedRegion, r => r.regionName);
91
-    }
92
+    },
92
   },
93
   },
93
   methods: {
94
   methods: {
94
     ...mapActions('timeshareBuy', ['getRegions']),
95
     ...mapActions('timeshareBuy', ['getRegions']),

+ 7
- 21
src/components/timeshare/resort/resortPage.vue View File

15
       <div class="myMargin">
15
       <div class="myMargin">
16
         <div class="row">
16
         <div class="row">
17
           <div class="col-md-3">
17
           <div class="col-md-3">
18
-            <h2>Filter Resorts</h2>
18
+            <h3>Filter Resort</h3>
19
             <form
19
             <form
20
               id="mainForm"
20
               id="mainForm"
21
               method="POST"
21
               method="POST"
68
               </div>
68
               </div>
69
               <div class="form-group">
69
               <div class="form-group">
70
                 <label>Filter Arrival Date From</label>
70
                 <label>Filter Arrival Date From</label>
71
-                <input
72
-                  style="color: white;"
73
-                  class="form-control"
74
-                  type="date"
75
-                  id="fromDate"
76
-                  name="fromDate"
77
-                  placeholder="Arrival Date"
78
-                />
71
+                <input type="date" class="form-control" name="arrivaldate" value />
79
               </div>
72
               </div>
80
               <div class="form-group">
73
               <div class="form-group">
81
                 <label>Filter Arrival Date To</label>
74
                 <label>Filter Arrival Date To</label>
82
-                <input
83
-                  style="color: white;"
84
-                  class="form-control"
85
-                  type="date"
86
-                  id="toDate"
87
-                  name="toDate"
88
-                  placeholder="Departure Date"
89
-                />
75
+                <input type="date" class="form-control" name="arrivaldate" value />
90
               </div>
76
               </div>
91
 
77
 
92
               <br />
78
               <br />
93
 
79
 
94
-              <button class="btn btn-blue" type="submit">SEARCH</button>
80
+              <button class="btn btn-b-n" type="submit">Search</button>
95
             </form>
81
             </form>
96
             <div class="col-md-12 blue-bg p-2 p-md-4">
82
             <div class="col-md-12 blue-bg p-2 p-md-4">
97
-              <h2>Facilities</h2>
83
+              <h3>Facilities</h3>
98
               <ul>
84
               <ul>
99
                 <li v-for="(item, i) in resort.prUnitFacilities.split('\n')" :key="i">{{item}}</li>
85
                 <li v-for="(item, i) in resort.prUnitFacilities.split('\n')" :key="i">{{item}}</li>
100
               </ul>
86
               </ul>
130
               </tbody>
116
               </tbody>
131
             </table>
117
             </table>
132
             <div>
118
             <div>
133
-              <div class="btn btn-primary" @click="routerGoTo('/timeshare/buy')">Back to Region</div>
119
+              <div class="btn btn-b-n" @click="routerGoTo('/timeshare/buy')">Back to Region</div>
134
               <hr />
120
               <hr />
135
             </div>
121
             </div>
136
             {{description}}
122
             {{description}}
192
                     <small>
178
                     <small>
193
                       <a
179
                       <a
194
                         :href="mapUrl"
180
                         :href="mapUrl"
195
-                        style="color:#0000FF;text-align:left"
181
+                        style="color:#60CBEB;text-align:left"
196
                         target="_blank"
182
                         target="_blank"
197
                       >See map bigger</a>
183
                       >See map bigger</a>
198
                     </small>
184
                     </small>

Loading…
Cancel
Save