65 lines
1.4 KiB
Vue
65 lines
1.4 KiB
Vue
<template>
|
|
<view class="container">
|
|
<div class="searchBox">
|
|
<img src="http://192.168.0.172:5500/com_communitySearchIcon.png" alt="" />
|
|
<input placeholder="请输入小区名称" type="text">
|
|
</div>
|
|
|
|
<div class="communityList">
|
|
<div class="communityItem" v-for="item in 5" >
|
|
<div class="communityItem_img">
|
|
<img src="http://192.168.0.172:5500/com_act2Img.png" alt="" />
|
|
</div>
|
|
|
|
<div class="communityItem_msg">
|
|
<div class="communityItem_msg_box">
|
|
<div class="communityItem_msg_title">岸芷汀兰(东区)</div>
|
|
<div class="communityItem_msg_addr">
|
|
河北省衡水市桃城区红旗大街与河
|
|
阳路交叉口西北300米东车辆入口
|
|
</div>
|
|
</div>
|
|
|
|
<div class="communityItem_msg_more">
|
|
<img src="http://192.168.0.172:5500/com_check1.png" alt="" />
|
|
<!-- <img src="http://192.168.0.172:5500/com_check2.png" alt="" /> -->
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="addBtn" @click="chooseCommunityInfo">新建小区</div>
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import { request, NavgateTo } from '../../../utils';
|
|
import { apiArr } from '../../../api/community';
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
chooseCommunityInfo() {
|
|
NavgateTo("../chooseMsgInfo/index")
|
|
}
|
|
|
|
},
|
|
|
|
onLoad(options) {
|
|
|
|
},
|
|
|
|
onReachBottom() {
|
|
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
@import url("./index.css");
|
|
</style>
|