优化转账页面
This commit is contained in:
parent
3b2396ec5c
commit
c7496e73e1
|
|
@ -27,7 +27,7 @@
|
||||||
|
|
||||||
<!-- 转账状态信息 -->
|
<!-- 转账状态信息 -->
|
||||||
<view class="success-info">
|
<view class="success-info">
|
||||||
<view class="amount-box">
|
<view class="amount-box" @click="openEditPopup()">
|
||||||
<text class="symbol">¥</text>
|
<text class="symbol">¥</text>
|
||||||
<text class="amount alipay-font">{{ Number(transferData.amount).toFixed(2) }}</text>
|
<text class="amount alipay-font">{{ Number(transferData.amount).toFixed(2) }}</text>
|
||||||
</view>
|
</view>
|
||||||
|
|
@ -55,16 +55,16 @@
|
||||||
</view>
|
</view>
|
||||||
<view class="card-item-bg">
|
<view class="card-item-bg">
|
||||||
<view class="user-info">
|
<view class="user-info">
|
||||||
<view class="avatar-box">
|
<view class="avatar-box" @click="openEditPopup()">
|
||||||
<image v-if="transferData.avatar" class="avatar" :src="transferData.avatar"
|
<image v-if="transferData.avatar" class="avatar" :src="transferData.avatar"
|
||||||
mode="aspectFill">
|
mode="aspectFill">
|
||||||
</image>
|
</image>
|
||||||
<image v-else class="avatar" src="/static/image/balance/transfer/add-img.png"
|
<image v-else class="avatar" src="/static/image/balance/transfer/add-img.png"
|
||||||
mode="aspectFill" @click="openEditPopup">
|
mode="aspectFill">
|
||||||
</image>
|
</image>
|
||||||
</view>
|
</view>
|
||||||
<view class="user-details">
|
<view class="user-details">
|
||||||
<view class="name-box">
|
<view class="name-box" @click="openEditPopup()">
|
||||||
<text class="name">{{ transferData.recipient }}</text>
|
<text class="name">{{ transferData.recipient }}</text>
|
||||||
<text class="remark-link">备注</text>
|
<text class="remark-link">备注</text>
|
||||||
</view>
|
</view>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue