增加搜索页面

This commit is contained in:
xuli3099
2025-08-04 16:19:03 +08:00
parent 9542db8bad
commit da67a1bf5d
5 changed files with 265 additions and 69 deletions

View File

@@ -8,15 +8,22 @@
<!-- 高度来避免头部遮挡 -->
<view class="top-height"></view>
<customSearch></customSearch>
<customSearch :type="type"></customSearch>
</view>
</view>
</template>
<script setup>
import { ref, onMounted } from 'vue'
import { ref, onMounted } from 'vue';
import { onLoad } from '@dcloudio/uni-app';
import customHeader from '@/components/customHeader.vue'
import customSearch from '@/components/customSearch.vue'
let type=ref(1);
onLoad(async(opt) => {
console.log(opt.type)
type.value = opt.type;
})
</script>
<style scoped>