#
whycq
2023-10-21 98dc492f262d87e93a80f1ef2d65e7d5c121f002
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>
        <view class="box" v-for="item in 10">
            <view class="box-left">
                <text class="text"> 库区 </text>
            </view>
            <view class="box-right">
                <text class="text"> {{item}} </text>
            </view>
        </view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                
            }
        },
        methods: {
            
        }
    }
</script>
 
<style>
    .box {
        margin: 16rpx;
        display: flex;
        align-items: stretch;
        
    }
    .box-left {
        height: 80rpx;
        line-height: 80rpx;
        background-color: #499bff;
        background-color: #26edcf;
        color: #F7F6F9;
    }
    .box-right {
        flex: 1;
        display: flex;
        align-items: center;
        background-color: #fff;
        color: #808080;
    }
    .text  {
        padding: 10rpx 20rpx;
    }
</style>