index.vue 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <template>
  2. <div class="uc_address_list_container">
  3. <van-cell-group>
  4. <van-cell :label="userinfo.address" url="/pages/user_center/address/edit/main">
  5. <view class="cu-avatar lg round margin-lr"
  6. :style="'background-image:url('+userinfo.avatar+');'" slot="icon"></view>
  7. <view slot="title">
  8. <text class="text-bold">{{userinfo.nickname}}</text>
  9. &emsp;
  10. <text class="text-gray text-sm">{{userinfo.phone}}</text>
  11. </view>
  12. </van-cell>
  13. </van-cell-group>
  14. </div>
  15. </template>
  16. <script>
  17. var $this
  18. export default {
  19. name: "uc_address_list_container",
  20. components: {},
  21. data() {
  22. return {
  23. userinfo: {
  24. avatar: "https://img.shuimuai.com/web/icon_dingdan.png",
  25. nickname: "吴亦凡",
  26. phone: "13677889905",
  27. address: "广东省深圳市南山区海岸时代公寓A2313"
  28. }
  29. }
  30. },
  31. methods: {}
  32. ,
  33. mounted() {
  34. },
  35. created() {
  36. $this = this;
  37. },
  38. onLoad() {
  39. }
  40. }
  41. </script>
  42. <style scoped>
  43. </style>