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