baseInfoTemplate.wxml 812 B

12345678910111213141516171819202122232425262728
  1. <template name="baseInfoTemplate">
  2. <view style="margin-top:20rpx">
  3. <view class="rtu-baseinfo-title">RTU编码:</view>
  4. <view class="rtu-baseinfo-text">{{rtuCode}}</view>
  5. </view>
  6. <view style="margin-top:20rpx">
  7. <view class="rtu-baseinfo-title">RTU名称:</view>
  8. <view class="rtu-baseinfo-text">{{rtuName}}</view>
  9. </view>
  10. <view style="margin-top:20rpx">
  11. <view class="rtu-baseinfo-title">项目名称:</view>
  12. <view class="rtu-baseinfo-text">{{projectName}}</view>
  13. </view>
  14. <view style="margin-top:20rpx">
  15. <view class="rtu-baseinfo-title">机构名称:</view>
  16. <view class="rtu-baseinfo-text">{{orgName}}</view>
  17. </view>
  18. <view style="margin-top:20rpx">
  19. <view class="rtu-baseinfo-title">规约:</view>
  20. <view class="rtu-baseinfo-text">{{agreement}}</view>
  21. </view>
  22. </template>