#
whycq
2023-04-28 a536410e1b8987bc7fc42e17574b42bce096320f
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>