fix
Helius
2021-02-20 45fb4b11ad51bb38306765b11a6747402e382cee
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<template>
    <!-- 盘点明细查看 -->
    <view>
        <search-bar placeholder="商品名称/编号/拼音" class="ml-10 mr-10"></search-bar>
        <view class="content">
            <view class="content-box">
                <view class="content-box-header">
                    <text>柔肤平衡水(电解水)</text>
                    <text>029293</text>
                </view>
                <view class="content-box-main">
                    <view class="flex flex-v">
                        <text>在库数量</text>
                        <text class="mt-10">实盘数量</text>
                    </view>
                    <view class="flex flex-v center">
                        <text>8</text>
                        <text class="mt-10">8</text>
                    </view>
                </view>
                <view class="content-box-footer">
                    <input placeholder="备注: 阿萨德哈猴神大叔"/>
                </view>
            </view>
        </view>
    </view>
</template>
 
<script>
    import searchBar from '../../../components/searchBar/index.vue';
    export default {
        components:{
            searchBar
        },
    }
</script>
 
<style>
    .content{
        padding: 0 10px;
    }
    .content-box{
        border: 1px solid #EDEAF4;
        border-radius: 4px;
        box-shadow:0 6px 6px rgba(237,234,244,0.5);
        margin-top: 10px;
        padding:10px;
    }
    .content-box-header{
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #EDEAF4;
        padding-bottom: 10px;
    }
    .content-box-main{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0;
    }
</style>