猫妈狗爸伴宠师小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
566 B

2 months ago
  1. <template>
  2. <view class="comp-card">
  3. <view class="comp-card-head flex-rowl mb24">
  4. <view class="line mr10"></view>
  5. <text class="title size-30">{{props.cardTitle}}</text>
  6. </view>
  7. <up-line color="#C7C7C7"></up-line>
  8. </view>
  9. </template>
  10. <script setup>
  11. const props = defineProps({
  12. cardTitle:{
  13. type:String,
  14. default:''
  15. }
  16. })
  17. </script>
  18. <style scoped lang="scss">
  19. .comp-card{
  20. &-head{
  21. .line{
  22. width: 11rpx;
  23. height: 38rpx;
  24. background-color: #FFBF60;
  25. border-radius: 6rpx;
  26. }
  27. .title{
  28. font-weight: bold;
  29. }
  30. }
  31. }
  32. </style>