sub-title.vue 544 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <view class="list">
  3. <view>{{descript}}:</view>
  4. <view>{{value || '-'}}{{unit || ''}}</view>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. props:['descript','value','unit'],
  10. name:'sub-title',
  11. data() {
  12. return {
  13. }
  14. },
  15. methods: {
  16. }
  17. }
  18. </script>
  19. <style lang="scss" scoped>
  20. .list {
  21. width: 100%;
  22. display: flex;
  23. height: 100rpx;
  24. justify-content: space-between;
  25. font-size: 30rpx;
  26. view:first-child {
  27. color: #86909c;
  28. }
  29. view:last-child {
  30. color: #1d2129;
  31. }
  32. }
  33. </style>