waterprice.wxml 941 B

12345678910111213141516171819202122232425262728
  1. <!--pages/waterprice/waterprice.wxml-->
  2. <view class="container water-price">
  3. <view class="box">
  4. <view class="title">用水类别</view>
  5. <view class="wrap">
  6. <view class="item">
  7. <view class="label">类别名称</view>
  8. <view class="content">
  9. <text>{{priceInfo.waterTypeName}}</text>
  10. </view>
  11. </view>
  12. </view>
  13. </view>
  14. <view class="box">
  15. <view class="title">费用类型及价格<text class="unit">(单位:元/吨)</text></view>
  16. <view class="wrap">
  17. <view class="item" wx:for="{{priceInfo.feeTypeDtos}}" wx:key="index">
  18. <view class="label">{{item.feeTypeName}}</view>
  19. <view class="content">
  20. <text class="text" wx:for="{{item.ladderInfoDtos}}" wx:key="index">{{item.ladderName}}:{{item.waterPrice}}</text>
  21. </view>
  22. </view>
  23. </view>
  24. </view>
  25. <view class="tips">
  26. <text>温馨提示:以上为{{priceInfo.customerName}}水价信息,实收费用以账单为准。</text>
  27. </view>
  28. </view>