sub-title.vue 470 B

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