四邻联动
This commit is contained in:
47
project/sanjianxi/AppNeighborLinkage/AppNeighborLinkage.vue
Normal file
47
project/sanjianxi/AppNeighborLinkage/AppNeighborLinkage.vue
Normal 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>
|
||||||
16
project/sanjianxi/AppNeighborLinkage/myNeighborInfo.vue
Normal file
16
project/sanjianxi/AppNeighborLinkage/myNeighborInfo.vue
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
<template>
|
||||||
|
<div class="myNeighborInfo"></div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'myNeighborInfo',
|
||||||
|
appName: '我的四邻信息'
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.myNeighborInfo {
|
||||||
|
|
||||||
|
}
|
||||||
|
</style>
|
||||||
Reference in New Issue
Block a user