123456789101112131415161718192021222324252627282930313233 |
- <template>
- <view class="text-right">
- <text>{{texts}}</text>
- <image class="text-icon" src="../../../static/mine/325.png" mode=""></image>
- </view>
- </template>
- <script>
- export default {
- data(){
- return{}
- },
- props:{
- texts:{
- typeof:String,
- default:""
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .text-right{
- display: flex;
- align-items: center;
- color: rgba(34, 34, 34, .5);
- font-size: 30rpx;
- .text-icon{
- height: 32rpx;
- width: 32rpx;
- }
- }
- </style>
|