mirror of
https://gitee.com/java110/WechatOwnerService.git
synced 2026-02-24 05:46:04 +08:00
40 lines
690 B
Vue
40 lines
690 B
Vue
<template>
|
|
<view>
|
|
<view class="cu-bar search bg-white">
|
|
<view class="search-form round">
|
|
<text class="cuIcon-search"></text>
|
|
<input :adjust-position="false" v-model="communityName" type="text" placeholder="请输入商品名" confirm-type="search"></input>
|
|
</view>
|
|
</view>
|
|
<vc-category></vc-category>
|
|
<vc-recommend></vc-recommend>
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import vcCategory from '@/components/vc-category/vc-category.vue'
|
|
|
|
import vcRecommend from '@/components/vc-recommend/vc-recommend.vue'
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
components:{
|
|
vcCategory,
|
|
vcRecommend
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|