You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
924 B
Plaintext

2 years ago
<include src="../../../include.wxml" />
<view class="wx-text-list mt10 mb10 wx-border-tb">
<view>
<view class="bgf p15" bindtap="chooseImage">
<view class='f18'>生活照</view>
<view class='p5'>
<block wx:if="{{lifePhoto == null || lifePhoto == ''}}">
<view class='moneyCard v-center'>
<view class='center'>
<i class="iconfont icon-tianjia"></i>
<view class="f18 c9">我的生活照</view>
</view>
</view>
</block>
<block wx:else>
<view class='moneyCard v-center' style='border:0;'>
<image src='{{lifePhoto}}' style='width:100%;height:calc((100vw - 30px) * 54 / 86);border:1rpx dotted #ccc;border-radius:8rpx;' mode='aspectFit'></image>
</view>
</block>
</view>
</view>
</view>
</view>