#
whycq
2022-07-29 0e7c4c9077d77e67bebb283b6dc2eca42bb03824
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<template>
    <!-- 窗口容器 -->
    <view> 
        <!-- 搜索框 -->
        <view class="search-box">
            <view>
                <view class="search-box-title">库位码 : </view>
                <input class="search-box-input" placeholder-style="placeholderStyle" type="text" >
            </view>
        </view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                placeholderStyle:'placeholder-style'
            }
        }
    }
</script>
 
<style>
    @import url("@/static/css/demo02.css");
</style>