|
@@ -2,27 +2,27 @@
|
2
|
2
|
<div class="index-box">
|
3
|
3
|
<img src="../../build/fourBoxes-image//1.jpg" class="bg-image" />
|
4
|
4
|
<div class="index-FourBoxes">
|
5
|
|
- <div class="index-FourBoxes-yushi test">
|
|
5
|
+ <div class="index-FourBoxes-yushi test" @click="goYuShi">
|
6
|
6
|
<img src="../../build/fourBoxes-image/浴室.png" class="Four-image" />
|
7
|
|
- <div style=" width: 108px; position: fixed; left: 10.8vw; top: 50vh;">
|
|
7
|
+ <div style=" width: 108px; position: absolute; left: 10.8vw; top: 35vh;">
|
8
|
8
|
<img style=" width:100%;" src="../assets/fourBoxes-2/浴室-2.png" />
|
9
|
9
|
</div>
|
10
|
10
|
</div>
|
11
|
11
|
<div class="index-FourBoxes-yimao test">
|
12
|
12
|
<img src="../../build/fourBoxes-image/衣帽间.png" class="Four-image" />
|
13
|
|
- <div style=" width: 108px; position: fixed; left: 59.8vw; top: 50vh;">
|
|
13
|
+ <div style=" width: 108px; position: absolute; left: 59.8vw; top: 35vh;">
|
14
|
14
|
<img style=" width:100%;" src="../assets/fourBoxes-2/衣帽间-2.png" />
|
15
|
15
|
</div>
|
16
|
16
|
</div>
|
17
|
17
|
<div class="index-FourBoxes-keting test">
|
18
|
18
|
<img src="../../build/fourBoxes-image/客厅.png" class="Four-image" />
|
19
|
|
- <div style=" width: 108px; position: fixed; left: 10.8vw; top: 92vh;">
|
|
19
|
+ <div style=" width: 108px; position: absolute; left: 10.8vw; top: 77vh;">
|
20
|
20
|
<img style=" width:100%;" src="../assets/fourBoxes-2/客厅-2.png" />
|
21
|
21
|
</div>
|
22
|
22
|
</div>
|
23
|
23
|
<div class="index-FourBoxes-yangtai test">
|
24
|
24
|
<img src="../../build/fourBoxes-image/阳台.png" class="Four-image" />
|
25
|
|
- <div style=" width: 108px; position: fixed; left: 59.8vw; top: 92vh;">
|
|
25
|
+ <div style=" width: 108px; position: absolute; left: 59.8vw; top: 77vh;">
|
26
|
26
|
<img style=" width:100%;" src="../assets/fourBoxes-2/阳台-2.png" />
|
27
|
27
|
</div>
|
28
|
28
|
</div>
|
|
@@ -31,7 +31,13 @@
|
31
|
31
|
</template>
|
32
|
32
|
|
33
|
33
|
<script>
|
34
|
|
-export default {}
|
|
34
|
+export default {
|
|
35
|
+ methods: {
|
|
36
|
+ goYuShi() {
|
|
37
|
+ this.$router.push({ name: 'Test' })
|
|
38
|
+ }
|
|
39
|
+ }
|
|
40
|
+}
|
35
|
41
|
</script>
|
36
|
42
|
|
37
|
43
|
<style lang="scss" scoped>
|