12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <template>
- <view>
- <!-- 设置 -->
- <u-card :border="false" padding="30" box-shadow="0px 1px 10px rgba(0,0,0,0.2)" border-radius="20" :show-foot="false"
- :show-head="false">
- <view slot="body">
- <view class="u-flex u-row-between">
- <view class="">
- <u-image width="130rpx" height="130rpx" src="../../../static/sailun/head-portrait-2.png" :lazy-load="true" shape="circle">
- <view slot="error" style="font-size: 24rpx;" :fade="true" duration="450">加载失败
- </view>
- </u-image>
- </view>
- <view class="u-flex">
- <view class="u-m-r-50" style="color:#0D79EC;font-size: 32rpx;">修改头像</view>
- <u-icon name="arrow-right" color="#0D79EC" size="28"></u-icon>
- </view>
- </view>
- </view>
- </u-card>
- <u-card :border="false" padding="20" box-shadow="0px 1px 10px rgba(0,0,0,0.2)" border-radius="20" :show-foot="false"
- :show-head="false">
- <view slot="body">
- <template>
- <u-cell-group :border="false">
- <u-cell-item title="收获地址管理">
- <u-icon slot="icon" size="42" name="location-o" custom-prefix="van-icon" color="#0095FF" style="margin-right: 10rpx;"></u-icon>
- </u-cell-item>
- <u-cell-item title="门店名称" value="青岛赛轮轮胎店">
- <u-icon slot="icon" size="42" name="shop-o" custom-prefix="van-icon" color="#0095FF" style="margin-right: 10rpx;"></u-icon>
- </u-cell-item>
- <u-cell-item title="门店联系人" value="张三">
- <u-icon slot="icon" size="42" name="contact" custom-prefix="van-icon" color="#0095FF" style="margin-right: 10rpx;"></u-icon>
- </u-cell-item>
- <u-cell-item title="联系电话" value="13443135664">
- <u-icon slot="icon" size="42" name="phone-o" custom-prefix="van-icon" color="#0095FF" style="margin-right: 10rpx;"></u-icon>
- </u-cell-item>
- <u-cell-item title="用户协议">
- <u-icon slot="icon" size="42" name="friends-o" custom-prefix="van-icon" color="#0095FF" style="margin-right: 10rpx;"></u-icon>
- </u-cell-item>
- <u-cell-item title="隐私政策">
- <u-icon slot="icon" size="42" name="info-o" custom-prefix="van-icon" color="#0095FF" style="margin-right: 10rpx;"></u-icon>
- </u-cell-item>
- <u-cell-item title="版本检测" value="1.29" :arrow="false">
- <u-icon slot="icon" size="42" name="setting-o" custom-prefix="van-icon" color="#0095FF" style="margin-right: 10rpx;"></u-icon>
- </u-cell-item>
- </u-cell-group>
- </template>
- </view>
- </u-card>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- methods: {
- }
- }
- </script>
- <style>
- </style>
|