我的页面
This commit is contained in:
@@ -133,7 +133,8 @@
|
|||||||
@click="selectOption('roomlistings', 0)">不限</div>
|
@click="selectOption('roomlistings', 0)">不限</div>
|
||||||
<div class="item flexcenter"
|
<div class="item flexcenter"
|
||||||
:class="{ 'pitch': item['id'] == pitchValue['roomlistings'] }"
|
:class="{ 'pitch': item['id'] == pitchValue['roomlistings'] }"
|
||||||
v-for="item in roomlistingsList" @click="selectOption('roomlistings', item.id)">{{
|
v-for="item in roomlistingsList" @click="selectOption('roomlistings', item.id)">
|
||||||
|
{{
|
||||||
item['name'] }}</div>
|
item['name'] }}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -276,7 +277,6 @@ const selectOption = (type, value) => {
|
|||||||
nextTick(() => {
|
nextTick(() => {
|
||||||
emit('handleTransfer', pitchValue)
|
emit('handleTransfer', pitchValue)
|
||||||
})
|
})
|
||||||
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<style scoped lang="less">
|
<style scoped lang="less">
|
||||||
@@ -516,6 +516,8 @@ const selectOption = (type, value) => {
|
|||||||
.option-area {
|
.option-area {
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
border-top: 1px solid #ebebeb;
|
border-top: 1px solid #ebebeb;
|
||||||
|
height: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
.option-left,
|
.option-left,
|
||||||
.option-right {
|
.option-right {
|
||||||
|
|||||||
@@ -6,11 +6,11 @@
|
|||||||
<div class="tab-box flexflex" v-if="item['tags']">
|
<div class="tab-box flexflex" v-if="item['tags']">
|
||||||
<div class="tab-item flexcenter" v-for="it in item['tags'].split(',')">{{ it }}</div>
|
<div class="tab-item flexcenter" v-for="it in item['tags'].split(',')">{{ it }}</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="location flexacenter">
|
<div class="location flexacenter" v-if="item['address']">
|
||||||
<img class="location-icon" src="@/assets/img/publicImage/location-icon.png">{{ item['address'] }}
|
<img class="location-icon" src="@/assets/img/publicImage/location-icon.png">{{ item['address'] }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="type-list">
|
<div class="type-list" v-if="item['roomlist']">
|
||||||
<div class="type-item flexacenter" v-for="it in item['roomlist']">
|
<div class="type-item flexacenter" v-for="it in item['roomlist']">
|
||||||
<div class="type-name flex1">{{ it['name'] }}</div>
|
<div class="type-name flex1">{{ it['name'] }}</div>
|
||||||
<div class="type-data flexacenter">
|
<div class="type-data flexacenter">
|
||||||
|
|||||||
Reference in New Issue
Block a user