45 lines
1.7 KiB
Plaintext
45 lines
1.7 KiB
Plaintext
<view class="wrapper">
|
|
<view class="header">
|
|
<view class="nav" style='height: {{height*2 + 10}}px;padding-top:{{height-10}}px;'>
|
|
<!-- 返回按钮 -->
|
|
<view class="nav-back" bindtap="navigateBack">
|
|
<image class="back-icon" src="/pages/images/you.png" mode="aspectFill" />
|
|
</view>
|
|
<!-- 页面标题 -->
|
|
<view class="nav-title">额度查询结果</view>
|
|
</view>
|
|
<view class="info">
|
|
<view class="info-item">
|
|
<image class="info-icon user-icon" src="../images/jiashiyuan.png" mode="widthFix" />
|
|
<text class="info-value">{{userInfo.namePhone}}</text>
|
|
</view>
|
|
<view class="info-item">
|
|
<image class="info-icon vehicle-icon" src="../images/huoche.png" mode="widthFix" />
|
|
<text class="info-value">{{userInfo.vehicle}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="body">
|
|
<!-- <view class="section-title">钱包信息</view> -->
|
|
|
|
<!-- 钱包卡片列表 -->
|
|
<view class="wallet-list">
|
|
<view class="wallet-card" wx:for="{{walletList}}" wx:key="index">
|
|
<view class="card-header">
|
|
<text class="tenant-name">{{item.tenantName}}</text>
|
|
</view>
|
|
<view class="card-body">
|
|
<view class="balance-item">
|
|
<text class="balance-label">钱包余额</text>
|
|
<text class="balance-value" data-value="{{item.walletMoney}}">{{item.walletMoney}}</text>
|
|
</view>
|
|
<view class="balance-item">
|
|
<text class="balance-label">油卡余额</text>
|
|
<text class="balance-value oil-card" data-value="{{item.oilWallet}}">{{item.oilWallet}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view> |