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.
|
|
<template> <view> <u-cell-group :border="false"> <u-cell title="头像" :isLink="true" :border="false"> <u-avatar size="40" slot="value" :src="src"></u-avatar> </u-cell> <u-cell title="昵称" :isLink="true" :border="false"></u-cell> <u-cell title="手机号码" :isLink="true" :border="false"></u-cell> <u-cell title="收货地址" :isLink="true" :border="false" url="/packages/address/address"></u-cell> <u-cell title="系统消息" :isLink="true" :border="false"> <u-badge class="badge" slot="value" numberType="overflow" max="99" :value="99"></u-badge> </u-cell> </u-cell-group> </view></template>
<script> export default { data() { return { src:"https://cdn.uviewui.com/uview/album/1.jpg", } }, methods: { } }</script>
<style>
</style>
|