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.

order-info-item.vue 555B

2 vuotta sitten
12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <view class="as-layout-horizontal as-gravity-center-start" v-if="!hide">
  3. <text class="label">{{label}}</text>
  4. <text class="value">{{value}}</text>
  5. </view>
  6. </template>
  7. <script setup lang="ts">
  8. defineProps({
  9. label:{
  10. type:String,
  11. default:''
  12. },
  13. value:{
  14. type:String,
  15. default:''
  16. },
  17. hide:{
  18. type:Boolean,
  19. default:false
  20. }
  21. })
  22. </script>
  23. <style lang="scss" scoped>
  24. .label{
  25. font-size: 26rpx;
  26. color: #999999;
  27. min-width: 112rpx;
  28. }
  29. .value{
  30. font-size: 26rpx;
  31. color: #333333;
  32. padding: 0 30rpx
  33. }
  34. </style>