|
@@ -1,159 +1,159 @@
|
1
|
|
-<template>
|
2
|
|
- <div class="context" >
|
3
|
|
- <vue-headful title="楼盘详情页" />
|
4
|
|
- <city-area></city-area>
|
5
|
|
- <building-header></building-header>
|
6
|
|
- <van-cell-group class="clickbutton">
|
7
|
|
- <div class="gotopageimg" @click="gotopageimg"><van-cell class="clickcharacters" title="查看更多图片"/><span class="iconfont icon-youfan right"></span></div>
|
8
|
|
- <span class="iconline"></span>
|
9
|
|
- <div class="gotopagetype" @click="gotopagetype"><van-cell class="clickcharacters" title="查看户型图"/><span class="iconfont icon-youfan right" ></span></div>
|
10
|
|
- <span class="iconline"></span>
|
11
|
|
- <div class="gotopagecollect"><span class="iconfont icon-Star collect"></span><van-cell class="clickcharacters" title="已收藏"/></div>
|
12
|
|
- </van-cell-group>
|
13
|
|
- <div class="housecenter">
|
14
|
|
- <house-name></house-name>
|
15
|
|
- <hr class="line" />
|
16
|
|
- <building-data></building-data>
|
17
|
|
- </div>
|
18
|
|
- <building-conduction></building-conduction>
|
19
|
|
- <building-perimeter></building-perimeter>
|
20
|
|
- <correlation-dynamics></correlation-dynamics>
|
21
|
|
- <div class="btn">
|
22
|
|
- <van-button @click="gotoLookHouse" size="large" >预约看房</van-button>
|
23
|
|
- </div>
|
24
|
|
-</div>
|
25
|
|
-</template>
|
26
|
|
-
|
27
|
|
-<script>
|
28
|
|
-import BuildingHeader from './components/buildingdetailheader.vue'
|
29
|
|
-import HouseName from './components/housename.vue'
|
30
|
|
-import BuildingData from './components/buildingdata.vue'
|
31
|
|
-import BuildingConduction from './components/buildingconduction.vue'
|
32
|
|
-import BuildingPerimeter from './components/buildingperimeter.vue'
|
33
|
|
-import CorrelationDynamics from './components/correlationdynamics.vue'
|
34
|
|
-import CityArea from './components/cityarea.vue'
|
35
|
|
-// import ToaseBox from './components/toasebox.vue'
|
36
|
|
-
|
37
|
|
-export default {
|
38
|
|
- name:'BuildingDetail',
|
39
|
|
- components: {
|
40
|
|
- 'vue-headful': () => import('vue-headful'),
|
41
|
|
- 'BuildingHeader':BuildingHeader,
|
42
|
|
- 'HouseName':HouseName,
|
43
|
|
- 'BuildingData':BuildingData,
|
44
|
|
- 'BuildingConduction':BuildingConduction,
|
45
|
|
- 'BuildingPerimeter':BuildingPerimeter,
|
46
|
|
- 'CorrelationDynamics':CorrelationDynamics,
|
47
|
|
- 'CityArea':CityArea,
|
48
|
|
- // 'ToaseBox':ToaseBox,
|
49
|
|
- },
|
50
|
|
- // mounted() {
|
51
|
|
- // this.$dialog.alert({
|
52
|
|
- // message: '弹窗内容'
|
53
|
|
- // });
|
54
|
|
- // },
|
55
|
|
- methods: {
|
56
|
|
- gotoLookHouse() {
|
57
|
|
- this.$router.push({ name: 'lookhouse' })
|
58
|
|
- },
|
59
|
|
- gotopageimg () {
|
60
|
|
- this.$router.push({ name: 'buildingimage' })
|
61
|
|
- },
|
62
|
|
- gotopagetype () {
|
63
|
|
- this.$router.push({ name: 'buildingtype' })
|
64
|
|
- }
|
65
|
|
- }
|
66
|
|
-}
|
67
|
|
-</script>
|
68
|
|
-
|
69
|
|
-<!-- Add "scoped" attribute to limit CSS to this component only -->
|
70
|
|
-<style lang="postcss" scoped>
|
71
|
|
-.context{
|
72
|
|
- width: 100%;
|
73
|
|
- height: 610px;
|
74
|
|
- overflow-y: auto;
|
75
|
|
-
|
76
|
|
- .clickbutton{
|
77
|
|
- width: 100%;
|
78
|
|
- height: 52px;
|
79
|
|
- display: flex;
|
80
|
|
- align-items: center;
|
81
|
|
- justify-content: space-between;
|
82
|
|
-
|
83
|
|
- .iconline{
|
84
|
|
- height:16px;
|
85
|
|
- border:1px solid #EAEAEA;
|
86
|
|
- }
|
87
|
|
-
|
88
|
|
- .gotopageimg{
|
89
|
|
- height: 100%;
|
90
|
|
- display: flex;
|
91
|
|
- flex-direction: row;
|
92
|
|
- align-items: center;
|
93
|
|
- margin-left: 20px;
|
94
|
|
- }
|
95
|
|
-
|
96
|
|
- .gotopagetype{
|
97
|
|
- height: 100%;
|
98
|
|
- display: flex;
|
99
|
|
- flex-direction: row;
|
100
|
|
- align-items: center;
|
101
|
|
- }
|
102
|
|
-
|
103
|
|
- .gotopagecollect{
|
104
|
|
- height: 100%;
|
105
|
|
- display: flex;
|
106
|
|
- flex-direction: row;
|
107
|
|
- align-items: center;
|
108
|
|
- margin-right: 30px;
|
109
|
|
- }
|
110
|
|
-
|
111
|
|
-
|
112
|
|
- .right{
|
113
|
|
- color: #A1A1A1!important;
|
114
|
|
- font-size: 10px !important;
|
115
|
|
- padding-left: 5px;
|
116
|
|
- }
|
117
|
|
-
|
118
|
|
- .collect{
|
119
|
|
- font-size: 20px !important;
|
120
|
|
- color:rgba(252,198,74,1) !important;
|
121
|
|
- padding-right: 5px;
|
122
|
|
- }
|
123
|
|
-
|
124
|
|
- .clickcharacters{
|
125
|
|
- padding: 0 !important;
|
126
|
|
- font-size:14px;
|
127
|
|
- font-family:PingFangSC-Regular;
|
128
|
|
- font-weight:400;
|
129
|
|
- color:rgba(102,102,102,1);
|
130
|
|
- line-height:20px;
|
131
|
|
- text-align: center;
|
132
|
|
- }
|
133
|
|
-
|
134
|
|
- .right{
|
135
|
|
- color:A1A1A1;
|
136
|
|
- font-size: 10px;
|
137
|
|
- }
|
138
|
|
- }
|
139
|
|
-
|
140
|
|
- .housecenter{
|
141
|
|
- width: 100%;
|
142
|
|
- height: 353px;
|
143
|
|
- background-color:rgba(255,255,255,1);
|
144
|
|
- margin-bottom: 10px;
|
145
|
|
-
|
146
|
|
- .line{
|
147
|
|
- width:90%;
|
148
|
|
- border: 0.5px solid #EFEFEF;
|
149
|
|
- }
|
150
|
|
- }
|
151
|
|
-
|
152
|
|
- .van-button{
|
153
|
|
- position: fixed;
|
154
|
|
- top:617px;
|
155
|
|
- left:0;
|
156
|
|
- }
|
157
|
|
-}
|
158
|
|
-
|
|
1
|
+<template>
|
|
2
|
+ <div class="context" >
|
|
3
|
+ <vue-headful title="楼盘详情页" />
|
|
4
|
+ <city-area></city-area>
|
|
5
|
+ <building-header></building-header>
|
|
6
|
+ <van-cell-group class="clickbutton">
|
|
7
|
+ <div class="gotopageimg" @click="gotopageimg"><van-cell class="clickcharacters" title="查看更多图片"/><span class="iconfont icon-youfan right"></span></div>
|
|
8
|
+ <span class="iconline"></span>
|
|
9
|
+ <div class="gotopagetype" @click="gotopagetype"><van-cell class="clickcharacters" title="查看户型图"/><span class="iconfont icon-youfan right" ></span></div>
|
|
10
|
+ <span class="iconline"></span>
|
|
11
|
+ <div class="gotopagecollect"><span class="iconfont icon-Star collect"></span><van-cell class="clickcharacters" title="已收藏"/></div>
|
|
12
|
+ </van-cell-group>
|
|
13
|
+ <div class="housecenter">
|
|
14
|
+ <house-name></house-name>
|
|
15
|
+ <hr class="line" />
|
|
16
|
+ <building-data></building-data>
|
|
17
|
+ </div>
|
|
18
|
+ <building-conduction></building-conduction>
|
|
19
|
+ <building-perimeter></building-perimeter>
|
|
20
|
+ <correlation-dynamics></correlation-dynamics>
|
|
21
|
+ <div class="btn">
|
|
22
|
+ <van-button @click="gotoLookHouse" size="large" >预约看房</van-button>
|
|
23
|
+ </div>
|
|
24
|
+</div>
|
|
25
|
+</template>
|
|
26
|
+
|
|
27
|
+<script>
|
|
28
|
+import BuildingHeader from './components/buildingdetailheader.vue'
|
|
29
|
+import HouseName from './components/housename.vue'
|
|
30
|
+import BuildingData from './components/buildingdata.vue'
|
|
31
|
+import BuildingConduction from './components/buildingconduction.vue'
|
|
32
|
+import BuildingPerimeter from './components/buildingperimeter.vue'
|
|
33
|
+import CorrelationDynamics from './components/correlationdynamics.vue'
|
|
34
|
+import CityArea from './components/cityarea.vue'
|
|
35
|
+// import ToaseBox from './components/toasebox.vue'
|
|
36
|
+
|
|
37
|
+export default {
|
|
38
|
+ name:'BuildingDetail',
|
|
39
|
+ components: {
|
|
40
|
+ 'vue-headful': () => import('vue-headful'),
|
|
41
|
+ 'BuildingHeader':BuildingHeader,
|
|
42
|
+ 'HouseName':HouseName,
|
|
43
|
+ 'BuildingData':BuildingData,
|
|
44
|
+ 'BuildingConduction':BuildingConduction,
|
|
45
|
+ 'BuildingPerimeter':BuildingPerimeter,
|
|
46
|
+ 'CorrelationDynamics':CorrelationDynamics,
|
|
47
|
+ 'CityArea':CityArea,
|
|
48
|
+ // 'ToaseBox':ToaseBox,
|
|
49
|
+ },
|
|
50
|
+ // mounted() {
|
|
51
|
+ // this.$dialog.alert({
|
|
52
|
+ // message: '弹窗内容'
|
|
53
|
+ // });
|
|
54
|
+ // },
|
|
55
|
+ methods: {
|
|
56
|
+ gotoLookHouse() {
|
|
57
|
+ this.$router.push({ name: 'lookhouse' })
|
|
58
|
+ },
|
|
59
|
+ gotopageimg () {
|
|
60
|
+ this.$router.push({ name: 'buildingimage' })
|
|
61
|
+ },
|
|
62
|
+ gotopagetype () {
|
|
63
|
+ this.$router.push({ name: 'buildingtype' })
|
|
64
|
+ }
|
|
65
|
+ }
|
|
66
|
+}
|
|
67
|
+</script>
|
|
68
|
+
|
|
69
|
+<!-- Add "scoped" attribute to limit CSS to this component only -->
|
|
70
|
+<style lang="postcss" scoped>
|
|
71
|
+.context{
|
|
72
|
+ width: 100%;
|
|
73
|
+ height: 610px;
|
|
74
|
+ overflow-y: auto;
|
|
75
|
+
|
|
76
|
+ .clickbutton{
|
|
77
|
+ width: 100%;
|
|
78
|
+ height: 52px;
|
|
79
|
+ display: flex;
|
|
80
|
+ align-items: center;
|
|
81
|
+ justify-content: space-between;
|
|
82
|
+
|
|
83
|
+ .iconline{
|
|
84
|
+ height:16px;
|
|
85
|
+ border:1px solid #EAEAEA;
|
|
86
|
+ }
|
|
87
|
+
|
|
88
|
+ .gotopageimg{
|
|
89
|
+ height: 100%;
|
|
90
|
+ display: flex;
|
|
91
|
+ flex-direction: row;
|
|
92
|
+ align-items: center;
|
|
93
|
+ margin-left: 20px;
|
|
94
|
+ }
|
|
95
|
+
|
|
96
|
+ .gotopagetype{
|
|
97
|
+ height: 100%;
|
|
98
|
+ display: flex;
|
|
99
|
+ flex-direction: row;
|
|
100
|
+ align-items: center;
|
|
101
|
+ }
|
|
102
|
+
|
|
103
|
+ .gotopagecollect{
|
|
104
|
+ height: 100%;
|
|
105
|
+ display: flex;
|
|
106
|
+ flex-direction: row;
|
|
107
|
+ align-items: center;
|
|
108
|
+ margin-right: 30px;
|
|
109
|
+ }
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+ .right{
|
|
113
|
+ color: #A1A1A1!important;
|
|
114
|
+ font-size: 10px !important;
|
|
115
|
+ padding-left: 5px;
|
|
116
|
+ }
|
|
117
|
+
|
|
118
|
+ .collect{
|
|
119
|
+ font-size: 20px !important;
|
|
120
|
+ color:rgba(252,198,74,1) !important;
|
|
121
|
+ padding-right: 5px;
|
|
122
|
+ }
|
|
123
|
+
|
|
124
|
+ .clickcharacters{
|
|
125
|
+ padding: 0 !important;
|
|
126
|
+ font-size:14px;
|
|
127
|
+ font-family:PingFangSC-Regular;
|
|
128
|
+ font-weight:400;
|
|
129
|
+ color:rgba(102,102,102,1);
|
|
130
|
+ line-height:20px;
|
|
131
|
+ text-align: center;
|
|
132
|
+ }
|
|
133
|
+
|
|
134
|
+ .right{
|
|
135
|
+ color:A1A1A1;
|
|
136
|
+ font-size: 10px;
|
|
137
|
+ }
|
|
138
|
+ }
|
|
139
|
+
|
|
140
|
+ .housecenter{
|
|
141
|
+ width: 100%;
|
|
142
|
+ height: 353px;
|
|
143
|
+ background-color:rgba(255,255,255,1);
|
|
144
|
+ margin-bottom: 10px;
|
|
145
|
+
|
|
146
|
+ .line{
|
|
147
|
+ width:90%;
|
|
148
|
+ border: 0.5px solid #EFEFEF;
|
|
149
|
+ }
|
|
150
|
+ }
|
|
151
|
+
|
|
152
|
+ .van-button{
|
|
153
|
+ position: fixed;
|
|
154
|
+ top:617px;
|
|
155
|
+ left:0;
|
|
156
|
+ }
|
|
157
|
+}
|
|
158
|
+
|
159
|
159
|
</style>
|