li-guang
2020-12-25 c94eed22ac10480428d5b711bfd90ff746f42d2b
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
<template>
    <!-- 库存查询 -->
    <view>
        <search-bar placeholder="商品名称、编号、拼音" class="ml-10 mr-10"></search-bar>
        <view class="content">
            <navigator url="./storeRecord" hover-class="none" class="content-row flex align-center justify-between" v-for="item in 5">
                <view class="flex align-center">
                    <image class="product-img" src="../../static/images/product.jpg"></image>
                    <view class="font-14 ml-10">
                        <text>肽妍氨基酸平衡基础洁面乳</text>
                        <view class="mt-10">
                            <text>在库数量: 5</text>
                            <text class="content-warning ml-20">低于警戒值</text>
                        </view>
                    </view>
                </view>
                <text class="iconfont iconarrow-backimg gray"></text>
            </navigator>
        </view>
    </view>
</template>
 
<script>
    import searchBar from '../../components/searchBar/index.vue';
    export default {
        components:{
            searchBar
        },
    }
</script>
 
<style>
    .content{
        padding: 0 10px;
    }
    .content-row{
        border-bottom: 1px solid #EDEAF4;
        padding: 10px 0;
    }
    .product-img{
        width: 48px;
        height: 48px;
        border-radius: 4px;
    }
    .content-warning{
        border: 1px solid #DE5A5A;
        border-radius: 20px;
        font-size: 8px;
        padding: 5px;
    }
</style>