1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <template>
- <div class="uc_address_list_container">
- <van-cell-group>
- <van-cell :label="userinfo.address" url="/pages/user_center/address/edit/main">
- <view class="cu-avatar lg round margin-lr"
- :style="'background-image:url('+userinfo.avatar+');'" slot="icon"></view>
- <view slot="title">
- <text class="text-bold">{{userinfo.nickname}}</text>
-  
- <text class="text-gray text-sm">{{userinfo.phone}}</text>
- </view>
- </van-cell>
- </van-cell-group>
- </div>
- </template>
- <script>
- var $this
- export default {
- name: "uc_address_list_container",
- components: {},
- data() {
- return {
- userinfo: {
- avatar: "https://img.shuimuai.com/web/icon_dingdan.png",
- nickname: "吴亦凡",
- phone: "13677889905",
- address: "广东省深圳市南山区海岸时代公寓A2313"
- }
- }
- },
- methods: {}
- ,
- mounted() {
- },
- created() {
- $this = this;
- },
- onLoad() {
- }
- }
- </script>
- <style scoped>
- </style>
|