58 lines
1.2 KiB
Vue
58 lines
1.2 KiB
Vue
<template>
|
||
<view class="container">
|
||
<view class="empty" v-if="false">
|
||
<image src="http://192.168.0.172:5500/com_newEmpty.png" alt="" />
|
||
没有添加任何房产
|
||
|
||
</view>
|
||
|
||
<div class="communityList">
|
||
<div class="communityItem" v-for="item in 3">
|
||
<div class="communityItem_left">
|
||
<div class="communityItem_left_img">
|
||
<image src="http://192.168.0.172:5500/test.png"></image>
|
||
</div>
|
||
<div class="communityItem_left_msg">
|
||
<div class="communityItem_left_msg_tit">世纪名城东区<span>(5)</span></div>
|
||
<div class="communityItem_left_msg_msg">河北省 石家庄市 桥西区 塔谈国际 108km</div>
|
||
</div>
|
||
</div>
|
||
<div class="communityItem_right">
|
||
<image src="http://192.168.0.172:5500/com_check1.png"></image>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="addBtn" @click="addCommunity">添加我的房产</div>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import { request, NavgateTo, isPhone } from '../../../utils';
|
||
import { apiArr } from '../../../api/community';
|
||
export default {
|
||
data() {
|
||
return {
|
||
}
|
||
},
|
||
methods: {
|
||
addCommunity(){
|
||
NavgateTo("/packages/community/addCommunity/index")
|
||
},
|
||
|
||
},
|
||
|
||
onLoad(options) {
|
||
|
||
},
|
||
|
||
onReachBottom() {
|
||
|
||
},
|
||
}
|
||
</script>
|
||
|
||
<style>
|
||
@import url("./index.css");
|
||
</style>
|