#
whycq
2023-05-06 424d5b1cb1779166d6d07a03d01dbaa4abc1ef9e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<template>
    <view>
        <!-- 搜索框 -->
        <view class="search-bar">
            <uni-search-bar placeholder=" 扫码 / 输入" bgColor="#EEEEEE" @confirm="search" />
        </view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                condition: null,
            }
        },
        methods: {
            
        }
    }
</script>
 
<style>
</style>