|
@@ -1,15 +1,12 @@
|
1
|
1
|
<template>
|
2
|
2
|
<div>
|
3
|
|
- <button @click="addDummyWeek" class="btn btn-primary">Add Dummy</button>
|
4
|
3
|
<table class="table table-bordered">
|
5
|
4
|
<thead>
|
6
|
5
|
<tr>
|
7
|
6
|
<th>Resort</th>
|
8
|
7
|
<th>Unit Number</th>
|
9
|
8
|
<th>Week Number</th>
|
10
|
|
- <th>Module</th>
|
11
|
9
|
<th>Bedrooms</th>
|
12
|
|
- <th>Season</th>
|
13
|
10
|
<th>Price</th>
|
14
|
11
|
<th>Status</th>
|
15
|
12
|
<th>Interested</th>
|
|
@@ -20,10 +17,8 @@
|
20
|
17
|
<td>{{item.resort.resortName}}</td>
|
21
|
18
|
<td>{{item.unitNumber}}</td>
|
22
|
19
|
<td>{{item.weekNumber}}</td>
|
23
|
|
- <td>{{item.module}}</td>
|
24
|
20
|
<td>{{item.bedrooms}}</td>
|
25
|
|
- <td>{{item.season}}</td>
|
26
|
|
- <td>{{item.sellPrice}}</td>
|
|
21
|
+ <td>{{item.sellPrice | toCurrency}}</td>
|
27
|
22
|
<td>{{item.status ? item.status.description : ''}}</td>
|
28
|
23
|
<td></td>
|
29
|
24
|
</tr>
|