Kobus 5 年前
父节点
当前提交
aa5947eb28

+ 1
- 1
src/components/home/carouselSection.vue 查看文件

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

+ 4
- 3
src/components/timeshare/buy/buyPage.vue 查看文件

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

+ 7
- 21
src/components/timeshare/resort/resortPage.vue 查看文件

@@ -15,7 +15,7 @@
15 15
       <div class="myMargin">
16 16
         <div class="row">
17 17
           <div class="col-md-3">
18
-            <h2>Filter Resorts</h2>
18
+            <h3>Filter Resort</h3>
19 19
             <form
20 20
               id="mainForm"
21 21
               method="POST"
@@ -68,33 +68,19 @@
68 68
               </div>
69 69
               <div class="form-group">
70 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 72
               </div>
80 73
               <div class="form-group">
81 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 76
               </div>
91 77
 
92 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 81
             </form>
96 82
             <div class="col-md-12 blue-bg p-2 p-md-4">
97
-              <h2>Facilities</h2>
83
+              <h3>Facilities</h3>
98 84
               <ul>
99 85
                 <li v-for="(item, i) in resort.prUnitFacilities.split('\n')" :key="i">{{item}}</li>
100 86
               </ul>
@@ -130,7 +116,7 @@
130 116
               </tbody>
131 117
             </table>
132 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 120
               <hr />
135 121
             </div>
136 122
             {{description}}
@@ -192,7 +178,7 @@
192 178
                     <small>
193 179
                       <a
194 180
                         :href="mapUrl"
195
-                        style="color:#0000FF;text-align:left"
181
+                        style="color:#60CBEB;text-align:left"
196 182
                         target="_blank"
197 183
                       >See map bigger</a>
198 184
                     </small>

正在加载...
取消
保存