You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
624 B
30 lines
624 B
<template>
|
|
<div class="container">
|
|
<custom_navbar title="会议记录" :isFixed="false"></custom_navbar>
|
|
<div>
|
|
<u-search placeholder="日照香炉生紫烟" v-model="keyword" :showAction="false"></u-search>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import custom_navbar from "../components/custom_navbar.vue";
|
|
export default {
|
|
components: {
|
|
custom_navbar,
|
|
},
|
|
data() {
|
|
return {
|
|
keyword: "遥看瀑布挂前川",
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
.container{
|
|
min-height: 100vh;
|
|
background-color:#D1DCFE ;
|
|
padding: 20rpx 24rpx;
|
|
}
|
|
</style> |