学员端小程序
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.

23 lines
383 B

1 year ago
  1. <template>
  2. <view class="moreBox">
  3. <view class="txt">{{text}}</view>
  4. <u-icon name="arrow-right" color="#686B73" size="14"></u-icon>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. props: ['text']
  10. }
  11. </script>
  12. <style lang="scss" scoped>
  13. .moreBox {
  14. display: flex;
  15. align-items: center;
  16. .txt {
  17. font-size: 24rpx;
  18. color: #686B73;
  19. margin-right: 8rpx;
  20. }
  21. }
  22. </style>