Files
dvcp_v2_wxcp_app/src/apps/AppSuperMarket/Search.vue

39 lines
575 B
Vue
Raw Normal View History

2022-02-15 10:48:33 +08:00
<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>