33 lines
581 B
Vue
33 lines
581 B
Vue
<template>
|
|
<view>
|
|
<view class="search_box">
|
|
<view class="search_box_border">
|
|
<!-- <u-input placeholder="搜索优质产品" placeholder-style="color: #969696" prefixIcon="search"
|
|
prefixIconStyle="font-size: 22px;color: #909399;margin-left:30rpx" readonly>
|
|
</u-input> -->
|
|
</view>
|
|
<InputAndSwiper></InputAndSwiper>
|
|
<TabBar :current-page="0"></TabBar>
|
|
</view>
|
|
<h1>测试</h1>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {}
|
|
},
|
|
onLoad() {
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
<style>
|
|
page {
|
|
background-color: #F8F8F8;
|
|
}
|
|
</style> |