12345678910111213141516171819202122232425262728 |
- <!--pages/waterprice/waterprice.wxml-->
- <view class="container water-price">
- <view class="box">
- <view class="title">用水类别</view>
- <view class="wrap">
- <view class="item">
- <view class="label">类别名称</view>
- <view class="content">
- <text>{{priceInfo.waterTypeName}}</text>
- </view>
- </view>
- </view>
- </view>
- <view class="box">
- <view class="title">费用类型及价格<text class="unit">(单位:元/吨)</text></view>
- <view class="wrap">
- <view class="item" wx:for="{{priceInfo.feeTypeDtos}}" wx:key="index">
- <view class="label">{{item.feeTypeName}}</view>
- <view class="content">
- <text class="text" wx:for="{{item.ladderInfoDtos}}" wx:key="index">{{item.ladderName}}:{{item.waterPrice}}</text>
- </view>
- </view>
- </view>
- </view>
- <view class="tips">
- <text>温馨提示:以上为{{priceInfo.customerName}}水价信息,实收费用以账单为准。</text>
- </view>
- </view>
|