|
@@ -12,10 +12,10 @@
|
|
|
<p class="Etit">VISITOR GUIDE</p>
|
|
|
</div>
|
|
|
<div :class="['item2','item',{'cur':cur==1}]" @mouseover="open(1)" @mouseout="close()" @click="toType('message')">
|
|
|
- <p class="Ztit">旅 客 留 言</p>
|
|
|
+ <p class="Ztit">观 众 留 言</p>
|
|
|
<p class="Etit">PASSENGER MESSAGE</p>
|
|
|
</div>
|
|
|
-
|
|
|
+
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -32,7 +32,7 @@ export default {
|
|
|
data () {
|
|
|
// 这里存放数据
|
|
|
return {
|
|
|
- cur:-1,
|
|
|
+ cur: -1,
|
|
|
select: '',
|
|
|
guideHover: false,
|
|
|
messageHover: false
|
|
@@ -44,11 +44,11 @@ export default {
|
|
|
watch: {},
|
|
|
// 方法集合
|
|
|
methods: {
|
|
|
- open(num) {
|
|
|
- this.cur = num;
|
|
|
+ open (num) {
|
|
|
+ this.cur = num
|
|
|
},
|
|
|
- close() {
|
|
|
- this.cur = -1;
|
|
|
+ close () {
|
|
|
+ this.cur = -1
|
|
|
},
|
|
|
toType (type) {
|
|
|
this.$router.push({ path: '/service-detail', query: { navType: type } })
|
|
@@ -136,7 +136,7 @@ export default {
|
|
|
height:36px;
|
|
|
background:url(../../assets/images/icon-tit-right.png)center/100% no-repeat;
|
|
|
margin-left:20px;
|
|
|
- }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
.list {
|
|
@@ -157,7 +157,7 @@ export default {
|
|
|
&.item2 {
|
|
|
background:url(../../assets/images/17.png)center center/644px no-repeat;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
&.cur {
|
|
|
width:644px;
|
|
|
&:after {
|