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.

79 lines
1.3 KiB

<template>
3 weeks ago
<!-- 鱼塘 -->
<view class="page1">
3 weeks ago
<view class="title">
<view class="title-sreach">
<uni-icons type="search"></uni-icons>
<input type="text" placeholder="搜索" />
<view class="">
搜索
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
3 weeks ago
menuButtonInfo: {}
}
},
props:{
},
watch: {
3 weeks ago
},
onReachBottom() {
if (this.searchForm.pageNumber >= this.totalPages) return;
// this.status = 'loading';
this.searchForm.pageNumber++;
this.getShopList();
},
methods: {
3 weeks ago
init() {
console.log("配送初始化")
this.menuButtonInfo = uni.getMenuButtonBoundingClientRect()
this.$forceUpdate()
},
getShopList(){
}
}
}
</script>
<style>
3 weeks ago
page {
width: 100%;
height: 100%;
3 weeks ago
font-size: 24rpx;
background: #F5F8F5;
color: #00231C;
}
3 weeks ago
.page1 {
width: 100%;
height: 100%;
3 weeks ago
font-size: 24rpx;
position: relative;
display: flex;
flex-direction: column;
}
.title {
background: url('https://jewel-shop.oss-cn-beijing.aliyuncs.com/25cad6ddbfb44230abf0c4d1a6259e16.png') no-repeat;
width: 100%;
height: 190px;
}
.title-sreach {
width: 100%;
display: flex;
height: 200rpx;
position: relative;
}
</style>