Selaa lähdekoodia

Feedback 2 Minor changes

master
30117125 4 vuotta sitten
vanhempi
commit
9b184e2bde

+ 1
- 1
src/assets/myData.js Näytä tiedosto

@@ -1,7 +1,7 @@
1 1
 const items = {
2 2
   seasons: ['Peak 1', 'Peak 2', 'Peak 3', 'Peak 4', 'Red', 'White', 'Blue', 'Flexi'],
3 3
   resortBedrooms: ['Studio', '1', '2', '3', '4', '5', '6'],
4
-  maxBedrooms: ['2', '4', '6', '8', '10', '12'],
4
+  maxBedrooms: ['2', '4', '5', '6', '8', '10', '12'],
5 5
   bankedEntities: ['Dial an Exchange', 'RCI', 'First Exchange', 'iExchange',
6 6
     'Interval International',
7 7
   ],

+ 7
- 6
src/components/admin/status/editTimeShareAdminPage.vue Näytä tiedosto

@@ -217,10 +217,7 @@
217 217
                   <div class="validation"></div>
218 218
                 </div>
219 219
                 <div class="form-group col-md-6 mt-2">
220
-                  <label v-if="week.askingPrice > 0" for="tsaPrice" class="uniSelectLabel"
221
-                    >ASKING PRICE</label
222
-                  >
223
-                  <float-label label="ASKING PRICE">
220
+                  <float-label label="ASKING PRICE" fixed>
224 221
                     <currency-input
225 222
                       onclick="this.setSelectionRange(0, this.value.length)"
226 223
                       name="tsaPrice"
@@ -664,7 +661,11 @@ export default {
664 661
       }
665 662
       this.weekParam.arrivalDate = new Date(this.dateParam).toISOString().substring(0, 10);
666 663
       this.weekParam.departureDate = new Date(this.depDateParam).toISOString().substring(0, 10);
667
-      this.weekParam.pulbishedDate = new Date(this.pubDateParam).toISOString().substring(0, 19);
664
+      console.log(this.pubDateParam);
665
+      if (this.pubDateParam) {
666
+        this.weekParam.pulbishedDate = new Date(this.pubDateParam).toISOString().substring(0, 19);
667
+      }
668
+
668 669
       //this.weekParam.regionId = this.weekParam.region.id;
669 670
       this.weekParam.agentId = this.week.agentId;
670 671
       //this.weekParam.bankedWith = this.week.bankedWith;
@@ -681,7 +682,7 @@ export default {
681 682
       delete this.weekParam.owner.howMarried;
682 683
       delete this.weekParam.cellNumber;
683 684
       //console.log(JSON.stringify(this.weekParam));
684
-      //console.log(this.weekParam);
685
+      console.log(this.weekParam);
685 686
       this.editSave(this.weekParam).then(() => {
686 687
         this.backToListView();
687 688
       });

+ 2
- 3
src/components/misc/contactUs.vue Näytä tiedosto

@@ -121,8 +121,7 @@
121 121
             <p></p>
122 122
             <p>
123 123
               105 Lombardy Business Park
124
-              <br />Cnr. Graham and Cole Rd.
125
-              <br />Shere, Pretoria, 0084
124
+              <br />Cnr. Graham and Cole Rd. <br />Shere, Pretoria, 0084
126 125
             </p>
127 126
             <br />
128 127
             <eva-icon name="paper-plane-outline" fill="#60CBEB"></eva-icon>
@@ -133,7 +132,7 @@
133 132
               <a href="mailto:info@univateproperties.co.za">info@univateproperties.co.za</a>
134 133
               <br />
135 134
               <eva-icon name="phone-call-outline" fill="#60CBEB"></eva-icon>
136
-              <a href="tel:+27124921238">+27 (0) 12 492 1238</a>
135
+              <a href="tel:+27129418497">+27 (0)12 941 8497</a>
137 136
             </p>
138 137
             <br />
139 138
             <eva-icon name="share-outline" fill="#60CBEB"></eva-icon>

+ 1
- 1
src/components/shared/contact.vue Näytä tiedosto

@@ -23,7 +23,7 @@
23 23
           <div class="col-md-4">
24 24
             <h4>CONTACT DETAILS</h4>
25 25
             <p>
26
-              <strong>Phone:</strong>+27 (0) 12 492 1238<br />
26
+              <strong>Phone:</strong>+27 (0)12 941 8497<br />
27 27
               <strong>Email: </strong
28 28
               ><a href="mailto:info@univateproperties.co.za"> info@univateproperties.co.za </a>
29 29
             </p>

+ 1
- 1
src/components/shared/footerSection.vue Näytä tiedosto

@@ -42,7 +42,7 @@
42 42
                   Shere, Pretoria, 0084<br /><br />
43 43
                   <a href="mailto:info@univateproperties.co.za">info@univateproperties.co.za</a
44 44
                   ><br />
45
-                  <a href="tel:0124921238">+27 (0) 12 492 1238</a>
45
+                  <a href="tel:0124921238">+27 (0)12 941 8497</a>
46 46
                 </p>
47 47
                 <br />
48 48
                 <p>

+ 1
- 0
src/components/timeshare/buy/toBuySearchResults.vue Näytä tiedosto

@@ -77,6 +77,7 @@ export default {
77 77
     Available() {
78 78
       let resortList = this.resorts;
79 79
       resortList = _.filter(resortList, x => x.weeksAvailable > 0);
80
+      console.log(resortList);
80 81
       return resortList;
81 82
     }
82 83
   },

+ 0
- 1
src/components/timeshare/sell/contentSection.vue Näytä tiedosto

@@ -932,7 +932,6 @@ export default {
932 932
     submitSale() {
933 933
       if (this.userLoggedIn) {
934 934
         this.sellItem.ownerObject = this.indiv;
935
-        this.sellItem.status = undefined;
936 935
         this.sellItem.weekStatus = "For Sale";
937 936
         this.saveWeek(this.sellItem).then(fulfilled => {
938 937
           this.paygateRedirect();

Loading…
Peruuta
Tallenna