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.
43 lines
877 B
43 lines
877 B
<template>
|
|
<div class="container">
|
|
<meet-sticky :bg="bg">
|
|
<meet-navbar title="会议记录" :isFixed="false"></meet-navbar>
|
|
</meet-sticky>
|
|
<div>
|
|
<div class="mb-30">
|
|
<u-search
|
|
placeholder="日照香炉生紫烟"
|
|
v-model="keyword"
|
|
:showAction="false"
|
|
></u-search>
|
|
</div>
|
|
<view>
|
|
<record-item v-for="item in 10" :key="item"></record-item>
|
|
</view>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import recordItem from "../components/record.vue";
|
|
export default {
|
|
components: {
|
|
recordItem,
|
|
},
|
|
data() {
|
|
return {
|
|
keyword: "遥看瀑布挂前川",
|
|
bg: "",
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
@import "../common.scss";
|
|
.container {
|
|
min-height: 100vh;
|
|
background-color: #d1dcfe;
|
|
padding: 20rpx 24rpx;
|
|
}
|
|
</style> |