Kaynağa Gözat

wTimeshare chanmges add

master
Kobus 5 yıl önce
ebeveyn
işleme
8a073f452a

+ 1
- 1
src/components/property/propertySearchPage.vue Dosyayı Görüntüle

@@ -187,7 +187,7 @@ export default {
187 187
         this.propertySearch.propertyUsageType = this.$route.params.propertyType;
188 188
       }
189 189
 
190
-      console.log('PropertySearch = ' + JSON.stringify(this.propertySearch));
190
+      console.log(`PropertySearch = ${JSON.stringify(this.propertySearch)}`);
191 191
 
192 192
       this.searchProperties(this.propertySearch);
193 193
       // this.type = this.$route.query.type;

+ 6
- 6
src/components/property/propertyeditPage.vue Dosyayı Görüntüle

@@ -355,12 +355,12 @@ export default {
355 355
 
356 356
       setTimeout(
357 357
         () => this.$router.push({
358
-            path: '/property/search',
359
-            query: {
360
-              salesType: this.salesType,
361
-              propertyUsageType: this.propertyType,
362
-            },
363
-          }),
358
+          path: '/property/search',
359
+          query: {
360
+            salesType: this.salesType,
361
+            propertyUsageType: this.propertyType,
362
+          },
363
+        }),
364 364
         3000,
365 365
       );
366 366
     },

+ 8
- 8
src/components/shared/lightBoxGallery.vue Dosyayı Görüntüle

@@ -45,29 +45,29 @@ export default {
45 45
     return {
46 46
       bg: false,
47 47
       currentImage: 0,
48
-      count: true
48
+      count: true,
49 49
     };
50 50
   },
51 51
   props: {
52 52
     thumbnails: {
53 53
       type: Array,
54
-      default: () => []
54
+      default: () => [],
55 55
     },
56 56
     largeImages: {
57 57
       type: Array,
58
-      default: () => []
58
+      default: () => [],
59 59
     },
60 60
     captions: {
61 61
       type: Array,
62
-      default: () => []
62
+      default: () => [],
63 63
     },
64 64
     thumbnailsPath: {
65 65
       type: String,
66
-      default: ""
66
+      default: '',
67 67
     },
68 68
     largePath: {
69 69
       type: String,
70
-      default: ""
70
+      default: '',
71 71
     },
72 72
     caption: true
73 73
   },
@@ -91,8 +91,8 @@ export default {
91 91
       } else {
92 92
         this.currentImage = this.largeImages.length - 1;
93 93
       }
94
-    }
95
-  }
94
+    },
95
+  },
96 96
 };
97 97
 </script>
98 98
 

+ 0
- 1
src/components/shared/navBar.vue Dosyayı Görüntüle

@@ -230,7 +230,6 @@ export default {
230 230
     ...mapActions('authentication', ['logout']),
231 231
 
232 232
     routerGoTo(goTo) {
233
-      console.log(goTo);
234 233
       this.$emit('routerGoTo', goTo);
235 234
     },
236 235
   },

+ 2
- 2
src/components/shared/searchTab.vue Dosyayı Görüntüle

@@ -8,12 +8,12 @@
8 8
     <div class="box-collapse-wrap">
9 9
       <form class="form-a">
10 10
         <div class="row">
11
-          <div class="col-md-12 mb-2">
11
+          <div class="col-md-12">
12 12
             <div class="form-group" style="text-align:left">
13 13
               <label for="Type">Keyword</label>
14 14
               <input
15 15
                 type="text"
16
-                class="form-control form-control-lg form-control-a"
16
+                class="form-control form-control-a"
17 17
                 placeholder="Keyword"
18 18
                 v-model="keyword"
19 19
               />

+ 2
- 2
src/router/index.js Dosyayı Görüntüle

@@ -45,8 +45,8 @@ import Offer from '../components/processFlow/offers.vue';
45 45
 Vue.use(Router);
46 46
 
47 47
 export default new Router({
48
-  scrollBehavior (to, from, savedPosition) {
49
-    return { x: 0, y: 0 }
48
+  scrollBehavior(to, from, savedPosition) {
49
+    return { x: 0, y: 0 };
50 50
   },
51 51
   routes: [{
52 52
     path: '/',

Loading…
İptal
Kaydet