index.vue 613 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view>
  3. <uni-list>
  4. <uni-list-item title="当前版本" rightText="V1.1.1">
  5. </uni-list-item>
  6. <uni-list-item title="更新时间" rightText="2023年5月9日">
  7. </uni-list-item>
  8. <uni-list-item title="联系我们" rightText="023-555-1234">
  9. </uni-list-item>
  10. </uni-list>
  11. </view>
  12. </template>
  13. <script>
  14. </script>
  15. <style scoped>
  16. ::v-deep .uni-list-item__content-title {
  17. font-size: 34rpx !important;
  18. color: #000000;
  19. }
  20. ::v-deep .uni-list-item__container {
  21. padding: 40rpx 60rpx;
  22. }
  23. ::v-deep .uni-list-item__extra-text{
  24. font-size: 28rpx !important;
  25. color: #000000;
  26. }
  27. </style>