四邻联动

This commit is contained in:
shijingjing
2022-04-15 16:19:53 +08:00
parent a9e67623a0
commit 2e8be19e77
2 changed files with 63 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
<template>
<div class="AppNeighborLinkage">
<div class="header">
<div class="search">
<u-search placeholder="请输入需要搜索的内容" v-model="keyword" :show-action="false"></u-search>
</div>
<div class="select">
<div>全部状态</div>
<div>时间选择</div>
</div>
</div>
</div>
</template>
<script>
export default {
name: "AppNeighborLinkage",
appName: "四邻联动",
data() {
return {
keyword:'',
}
},
onShow() {},
methods: {
tabClick(index) {
this.tabIndex = index
},
}
}
</script>
<style lang="scss" scoped>
.AppNeighborLinkage {
.header {
.search {
box-sizing: border-box;
padding: 24px 32px;
background: #4181FF;
height: 112px;
}
.select {
height: 112px;
}
}
}
</style>

View File

@@ -0,0 +1,16 @@
<template>
<div class="myNeighborInfo"></div>
</template>
<script>
export default {
name: 'myNeighborInfo',
appName: '我的四邻信息'
}
</script>
<style lang="scss" scoped>
.myNeighborInfo {
}
</style>