1234567891011121314151617181920212223242526272829 |
- <template>
- <view>
- <uni-list>
- <uni-list-item title="当前版本" rightText="V1.1.1">
- </uni-list-item>
- <uni-list-item title="更新时间" rightText="2023年5月9日">
- </uni-list-item>
- <uni-list-item title="联系我们" rightText="023-555-1234">
- </uni-list-item>
- </uni-list>
- </view>
- </template>
- <script>
- </script>
- <style scoped>
- ::v-deep .uni-list-item__content-title {
- font-size: 34rpx !important;
- color: #000000;
- }
- ::v-deep .uni-list-item__container {
- padding: 40rpx 60rpx;
- }
- ::v-deep .uni-list-item__extra-text{
- font-size: 28rpx !important;
- color: #000000;
- }
- </style>
|