信用积分

This commit is contained in:
liuye
2022-02-15 10:48:33 +08:00
parent f168a86f31
commit 8b5da40e0c
8 changed files with 1364 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
<template>
<div class="Search">
<AiTopFixed>
<u-search placeholder="请输入标题" :show-action="false" search-icon-color="#ccc" v-model="search.title" @search="search.current = 1, getList()"/>
</AiTopFixed>
</div>
</template>
<script>
export default {
name: 'Search',
data() {
return {
search: {
title: '',
current: 1
}
};
},
onLoad() {
},
methods: {
getList() {
}
},
};
</script>
<style lang="scss" scoped>
.Search {
::v-deep .u-search{
margin-bottom: 0!important;
}
}
</style>