电速宝
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

index.wxml 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <!--pages/user/index.wxml-->
  2. <view wx:if="{{msg=='成功'}}">
  3. <view class="user_user">
  4. <view class="user_box">
  5. <view class="allocation_box1">
  6. <view class="allocation_boxc">电站图片</view>
  7. <image class="user_to" src="{{infolist.stationPicArray[0].absoluteUrl}}" mode=""/>
  8. </view>
  9. <view class="allocation_box">
  10. <view class="allocation_boxc">电站名称</view>
  11. <view>{{infolist.stationName}}</view>
  12. </view>
  13. </view>
  14. <view class="user_box">
  15. <view class="allocation_box">
  16. <view class="allocation_boxc">装机总容量</view>
  17. <view>{{infolist.installedCap}}MWh</view>
  18. </view>
  19. <view class="allocation_box">
  20. <view class="allocation_boxc">装机功率</view>
  21. <view>{{infolist.installedPower}}MW</view>
  22. </view>
  23. <view class="allocation_box">
  24. <view class="allocation_boxc">投运时间</view>
  25. <view>{{infolist.operationDate}}</view>
  26. </view>
  27. <view class="allocation_box">
  28. <view class="allocation_boxc">安装人</view>
  29. <view>{{infolist.installerName}}</view>
  30. </view>
  31. <view class="allocation_box">
  32. <view class="allocation_boxc">电站联系电话</view>
  33. <view>{{infolist.contactPhone}}</view>
  34. </view>
  35. <view class="allocation_box">
  36. <view class="allocation_boxc">电站地址</view>
  37. <view>{{infolist.country}}-{{infolist.province}}-{{infolist.city}}</view>
  38. </view>
  39. <view class="allocation_box">
  40. <view class="allocation_boxc">创建时间:</view>
  41. <view>{{user.user.createTime}}</view>
  42. </view>
  43. </view>
  44. </view>
  45. <view class="buttom_" wx:if="{{infolist.unbindStart==0}}">
  46. <view class="buttom" bind:tap="signout">
  47. 绑定
  48. </view>
  49. </view>
  50. </view>
  51. <view class="box_image" wx:else>
  52. <image class="tag_image" src="https://esos-iot.bjdexn.cn/wx_images/no_data.png" mode=""/>
  53. <view class="textmsg">{{msg}}</view>
  54. <view class="textmsgs">设备编码:{{options.id}}</view>
  55. </view>