123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- <template>
- <view class="allHouses">
- <view class="index-bg"></view>
- <view class="search-box u-flex u-row-between">
- <u-icon name="search" color="#CCCCCC" size="36"></u-icon>
- <input type="text" placeholder="搜索楼盘" class="input" v-model="keyword1">
- <text class="text" @click="tosearch">搜索</text>
- </view>
- <view class="newHouses-list">
- <view class="newHouses-title u-flex u-row-between">
- <text>全部楼盘</text>
- <view class="u-flex" @click="opensearch">
- <image src="../../static/images/shaixuan.png" mode=""></image>
- <text style="font-size: 26rpx;font-weight: 500;color: #1677FF;margin-left: 10rpx;">区域搜索</text>
- </view>
- </view>
- <view :class="buju == 1 ? '' : 'u-flex u-row-between u-flex-wrap'">
- <view v-for="(item,index) in list" :key="index">
- <gf-goods :type="buju" :data="item"></gf-goods>
- </view>
- </view>
- </view>
- <gf-search ref="search" @shaixuan="shaixuan"></gf-search>
- </view>
- </template>
- <script>
- import {
- mapState
- } from "vuex"
- export default {
- data() {
- return {
- keyword1: '',
- keyword: '',
- type: 1,
- buju: 2,
- page: 1,
- list: [],
- params: {},
- title: ''
- }
- },
- computed: {
- ...mapState(['defaultcity'])
- },
- onReachBottom() {
- if (this.list.length % 20 == 0) {
- this.page++
- this.getlist()
- }
- },
- onLoad(option) {
- this.type = option.type
- this.title = option.title
- if (this.type == 2) {
- this.buju = 1
- } else {
- this.buju = 2
- }
- this.getlist()
- },
- onShow() {
- if (this.title) {
- uni.setNavigationBarTitle({
- title: this.title
- })
- }
- },
- methods: {
- shaixuan(e) {
- this.params = e
- this.page = 1
- this.list = []
- this.getlist()
- },
- tosearch() {
- this.keyword = this.$u.trim(this.keyword1)
- this.page = 1
- this.list = []
- this.getlist()
- },
- getlist() {
- this.$u.post('/api/Index/property_list', {
- page: this.page,
- page_num: 20,
- type: this.type,
- keyword: this.keyword,
- ...this.params,
- city_id: this.params.area_id ? '' : this.defaultcity.city_id
- }).then(res => {
- this.list = this.list.concat(res.data)
- })
- },
- opensearch() {
- this.$refs.search.show = true
- }
- }
- }
- </script>
- <style lang="scss">
- page {
- background-color: #F6F6F6;
- }
- .allHouses {
- position: relative;
- z-index: 1;
- // width: 750rpx;
- // overflow-x: hidden;
- .newHouses-list {
- width: 702rpx;
- background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 38%, rgba(255, 255, 255, 0) 100%);
- border-radius: 20rpx;
- margin: 20rpx auto;
- padding: 0 20rpx;
- .newHouses-title {
- padding: 20rpx 0;
- text {
- font-size: 34rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #131415;
- }
- image {
- width: 32rpx;
- height: 32rpx;
- }
- }
- }
- .search-box {
- width: 702rpx;
- height: 72rpx;
- background: #FFFFFF;
- border-radius: 20rpx;
- margin: 0 auto 20rpx auto;
- padding-left: 24rpx;
- .input {
- flex: 1;
- margin: 0 10rpx;
- }
- .text {
- padding: 0 24rpx;
- border-left: 1rpx solid #E5E7ED;
- line-height: 36rpx;
- font-size: 28rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #1E7DFF;
- }
- }
- .index-bg {
- position: absolute;
- top: 0;
- left: 0;
- width: 750rpx;
- height: 556rpx;
- background: linear-gradient(180deg, #1E7DFF 0%, #F6F6F6 100%);
- z-index: -1;
- }
- }
- </style>
|