将应用中所有"充值"相关文案统一修改为"购买洗车金额",提升用户理解 重构客服电话功能为微信客服聊天窗口,优化用户体验 移除不必要的电话拨打代码,使用微信原生客服功能
22 lines
884 B
Plaintext
22 lines
884 B
Plaintext
<page-loding wx:if="{{showLoding}}"></page-loding>
|
|
<view class="{{types=='voucher'?'container voucher-container':'container'}}">
|
|
<view class="money">
|
|
<my-money user="{{user}}"></my-money>
|
|
</view>
|
|
<view class="list-box">
|
|
<view class="item" wx:for="{{list}}" wx:key="index">
|
|
<view class="name">{{item.message}}</view>
|
|
<view class="footer">
|
|
<view class="time">{{item.timestamp}}</view>
|
|
<view class="num">{{item.symbol}}{{item.amount}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="no-content" wx:if="{{list.length==0&&!loading}}">
|
|
<image src="/img/nocontent.png"></image>
|
|
<view>暂无相关数据</view>
|
|
</view>
|
|
<service-tel></service-tel>
|
|
<view bindtap="toPage" class="scan-btn" wx:if="{{type=='invest'}}"> 立即购买洗车金额 </view>
|
|
</view>
|