球星卡微信小程序
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.

34 lines
824 B

  1. <template>
  2. <view>
  3. <u-cell-group :border="false">
  4. <u-cell title="头像" :isLink="true" :border="false">
  5. <u-avatar size="40" slot="value" :src="src"></u-avatar>
  6. </u-cell>
  7. <u-cell title="昵称" :isLink="true" :border="false"></u-cell>
  8. <u-cell title="手机号码" :isLink="true" :border="false"></u-cell>
  9. <u-cell title="收货地址" :isLink="true" :border="false" url="/packages/address/address"></u-cell>
  10. <u-cell title="系统消息" :isLink="true" :border="false">
  11. <u-badge class="badge" slot="value" numberType="overflow" max="99" :value="99"></u-badge>
  12. </u-cell>
  13. </u-cell-group>
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. data() {
  19. return {
  20. src:"https://cdn.uviewui.com/uview/album/1.jpg",
  21. }
  22. },
  23. methods: {
  24. }
  25. }
  26. </script>
  27. <style>
  28. </style>