Browse Source

Merge remote-tracking branch 'origin/master'

master
Bruce Lywood 5 years ago
parent
commit
d20dc5c43e

+ 8
- 8
src/components/timeshare/buy/weekListComponent.vue View File

4
       <table class="table table-bordered">
4
       <table class="table table-bordered">
5
         <thead>
5
         <thead>
6
           <tr>
6
           <tr>
7
-            <th>Region</th>
7
+            <th>Province</th>
8
             <th>Resort</th>
8
             <th>Resort</th>
9
-            <th>Unit Number</th>
10
-            <th>Week Number</th>
11
-            <th>Arrival Date</th>
12
-            <th>Departure Date</th>
9
+            <th>Unit</th>
10
+            <th>Week</th>
11
+            <th>Arrival</th>
12
+            <th>Departure</th>
13
             <th>Bedrooms</th>
13
             <th>Bedrooms</th>
14
-            <th>Price</th>
15
-            <th>Status</th>
14
+            <th style="width:15%">Price</th>
15
+            <!-- <th>Status</th> -->
16
             <th>Interested</th>
16
             <th>Interested</th>
17
           </tr>
17
           </tr>
18
         </thead>
18
         </thead>
26
             <td>{{item.departureDate | toDate}}</td>
26
             <td>{{item.departureDate | toDate}}</td>
27
             <td>{{item.bedrooms}}</td>
27
             <td>{{item.bedrooms}}</td>
28
             <td>{{item.sellPrice | toCurrency}}</td>
28
             <td>{{item.sellPrice | toCurrency}}</td>
29
-            <td>{{item.status ? item.status.description : ''}}</td>
29
+            <!-- <td>{{item.status ? item.status.description : ''}}</td> -->
30
             <td>
30
             <td>
31
               <div class="col-md-12">
31
               <div class="col-md-12">
32
                 <button
32
                 <button

+ 1
- 4
src/components/timeshare/searchTimeshare.vue View File

34
             </span>
34
             </span>
35
           </div>
35
           </div>
36
           <select class="form-control" name="resort" id="resort" v-model="filter.resort">
36
           <select class="form-control" name="resort" id="resort" v-model="filter.resort">
37
-            <option v-for="(item, i) in filteredResorts" :key="i" :value="item">
38
-              {
39
-              {item.resortName}}
40
-            </option>
37
+            <option v-for="(item, i) in filteredResorts" :key="i" :value="item">{{item.resortName}}</option>
41
           </select>
38
           </select>
42
           <div class="input-group-append" @click="clearFilter('resort')">
39
           <div class="input-group-append" @click="clearFilter('resort')">
43
             <span class="input-group-text cursor-pointer" style="color: #60CBEB">
40
             <span class="input-group-text cursor-pointer" style="color: #60CBEB">

Loading…
Cancel
Save