linwe
2024-08-08 3c738f4fe2762bba8087e5a22fc0dc06560eab0e
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
<template>
    <view class="">
        <view class="tag-cell f-18 c-main">
            {{text}}
        </view>
    </view>
    
</template>
 
<script>
    export default{
        name:"tagCell",
        props:{
            text:String
        }
    }
</script>
 
<style scoped>
    .tag-cell{
        padding:2rpx 8rpx;
        border-radius: 8rpx;
        background-color: rgb(236,244,255);
        border:1px solid currentColor;
        margin-right:15rpx;
    }
</style>