合伙人运营小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.wxml 4.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <!-- 页面容器 -->
  2. <scroll-view class="page-container" scroll-y>
  3. <!-- 顶部项目基础信息区 -->
  4. <view class="project-header">
  5. <!-- 项目状态标签 -->
  6. <!-- <view class="status-tag {{projectInfo.statusType}}">{{projectInfo.status}}</view> -->
  7. <t-steps theme="dot" current="1" bind:change="onThirdChange">
  8. <t-step-item wx:for="{{projectList}}" wx:for-item="items" wx:key="indexs" content="{{items.title}}" />
  9. </t-steps>
  10. <!-- 项目名称 -->
  11. <view class="project-name">{{projectInfo.name}}</view>
  12. <!-- 项目核心信息行 -->
  13. <view class="base-info-row">
  14. <view class="base-info-item">
  15. <text class="info-label">项目地址:</text>
  16. <text class="info-value">{{projectInfo.address}}</text>
  17. </view>
  18. <view class="base-info-item">
  19. <text class="info-label">项目周期:</text>
  20. <text class="info-value">{{projectInfo.time}}</text>
  21. </view>
  22. </view>
  23. </view>
  24. <!-- 项目分成模块 -->
  25. <view class="module-card">
  26. <view class="module-title">项目成员</view>
  27. <view class="split-container">
  28. <view class="split-item" wx:for="{{projectInfo.splitList}}" wx:key="id">
  29. <view class="split-name">{{item.role}}</view>
  30. <view class="split-value">{{item.rate}}</view>
  31. </view>
  32. </view>
  33. </view>
  34. <!-- 项目主导方 -->
  35. <view class="module-card">
  36. <view class="module-title">项目负责方</view>
  37. <view class="party-info">
  38. <view class="party-item">
  39. <text class="info-label">企业名称:</text>
  40. <text class="info-value">{{projectInfo.leader.name}}</text>
  41. </view>
  42. <view class="party-item">
  43. <text class="info-label">联系人:</text>
  44. <text class="info-value">{{projectInfo.leader.contact}}</text>
  45. </view>
  46. <view class="party-item">
  47. <text class="info-label">联系方式:</text>
  48. <text class="info-value">{{projectInfo.leader.phone}}</text>
  49. </view>
  50. <view class="party-item">
  51. <text class="info-label">负责范围:</text>
  52. <text class="info-value">{{projectInfo.leader.scope}}</text>
  53. </view>
  54. </view>
  55. </view>
  56. <!-- 合伙人信息 -->
  57. <view class="module-card">
  58. <view class="module-title">合伙人信息</view>
  59. <view class="party-info">
  60. <view class="party-item">
  61. <text class="info-label">企业名称:</text>
  62. <text class="info-value">{{projectInfo.powerSupplier.name}}</text>
  63. </view>
  64. <view class="party-item">
  65. <text class="info-label">联系方式:</text>
  66. <text class="info-value">{{projectInfo.powerSupplier.phone}}</text>
  67. </view>
  68. <view class="party-item">
  69. <text class="info-label">出资比例:</text>
  70. <text class="info-value">{{projectInfo.powerSupplier.investRate}}</text>
  71. </view>
  72. <view class="party-item">
  73. <text class="info-label">负责内容:</text>
  74. <text class="info-value">{{projectInfo.powerSupplier.responsibility}}</text>
  75. </view>
  76. </view>
  77. </view>
  78. <!-- 供电方信息 -->
  79. <view class="module-card">
  80. <view class="module-title">供电方信息</view>
  81. <view class="partner-list">
  82. <view class="partner-item" wx:for="{{projectInfo.partners}}" wx:key="id">
  83. <view class="partner-name">{{item.name}}</view>
  84. <view class="partner-detail">
  85. <view class="party-item">
  86. <text class="info-label">供电类型:</text>
  87. <text class="info-value">{{item.type}}</text>
  88. </view>
  89. <view class="party-item">
  90. <text class="info-label">供电容量:</text>
  91. <text class="info-value">{{item.capacity}}</text>
  92. </view>
  93. <view class="party-item">
  94. <text class="info-label">合作期限:</text>
  95. <text class="info-value">{{item.term}}</text>
  96. </view>
  97. </view>
  98. </view>
  99. </view>
  100. </view>
  101. <!-- 用电方信息 -->
  102. <view class="module-card">
  103. <view class="module-title">用电方信息</view>
  104. <view class="party-info">
  105. <view class="party-item">
  106. <text class="info-label">企业名称:</text>
  107. <text class="info-value">{{projectInfo.powerConsumer.name}}</text>
  108. </view>
  109. <view class="party-item">
  110. <text class="info-label">用电规模:</text>
  111. <text class="info-value">{{projectInfo.powerConsumer.scale}}</text>
  112. </view>
  113. <view class="party-item">
  114. <text class="info-label">用电时段:</text>
  115. <text class="info-value">{{projectInfo.powerConsumer.timePeriod}}</text>
  116. </view>
  117. <view class="party-item">
  118. <text class="info-label">结算方式:</text>
  119. <text class="info-value">{{projectInfo.powerConsumer.settlement}}</text>
  120. </view>
  121. </view>
  122. </view>
  123. </scroll-view>