parent
e6e1900e5a
commit
a5e5fffedd
After Width: | Height: | Size: 888 B |
After Width: | Height: | Size: 118 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 852 B |
@ -0,0 +1,4 @@
|
||||
export { default as peopleCentre } from "./peopleCentre.vue";
|
||||
export { default as warningCentre } from "./warningCentre.vue";
|
||||
export { default as recycleCentre } from "./recycleCentre.vue";
|
||||
export { default as logCentre } from "./logCentre.vue";
|
@ -0,0 +1,9 @@
|
||||
<template>
|
||||
<div>日志</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {};
|
||||
</script>
|
||||
|
||||
<style></style>
|
@ -0,0 +1,45 @@
|
||||
<template>
|
||||
<div class="search-container">
|
||||
<div class="option-rows">
|
||||
<el-select v-model="value" placeholder="选择社区">
|
||||
<el-option
|
||||
v-for="item in community"
|
||||
:key="item.value"
|
||||
:label="item.label"
|
||||
:value="item.value"
|
||||
>
|
||||
</el-option>
|
||||
</el-select>
|
||||
<el-select v-model="value" placeholder="选择小区">
|
||||
<el-option
|
||||
v-for="item in xiaoqu"
|
||||
:key="item.value"
|
||||
:label="item.label"
|
||||
:value="item.value"
|
||||
>
|
||||
</el-option>
|
||||
</el-select>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
value: "",
|
||||
queryParams: {},
|
||||
community: [],
|
||||
xiaoqu: [],
|
||||
};
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.search-container {
|
||||
margin-top: 10px;
|
||||
flex: 1;
|
||||
border: 1px solid red;
|
||||
}
|
||||
</style>
|
@ -0,0 +1,9 @@
|
||||
<template>
|
||||
<div>回收</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {};
|
||||
</script>
|
||||
|
||||
<style></style>
|
@ -0,0 +1,9 @@
|
||||
<template>
|
||||
<div>预警</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {};
|
||||
</script>
|
||||
|
||||
<style></style>
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue