微信小程序
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.

44 lines
2.4 KiB

  1. <!--pages/contract/add/add.wxml-->
  2. <view class="ns" style="height:{{isIPX?'88px':'64px'}};">
  3. <image src="../../../image/apply/back.png" style="top:{{isIPX?'54px':'30px'}};height: 19.0909px;" mode="widthFix" bindtap="back" referrer="no-referrer|origin|unsafe-url"></image>
  4. <text style="top:{{isIPX?'54px':'30px'}};">查看四议表决</text>
  5. </view>
  6. <view class="main-box table-box" style="margin-top:{{isIPX?'100px':'75px'}};">
  7. <view class="table-boxs">
  8. <van-cell title="事项名称" value="{{form.itemName}}" />
  9. <van-cell title="事项描述" border="{{false}}" />
  10. <van-cell label="{{form.itemContent}}" />
  11. <van-cell title="表决阶段" value="{{form.voteTypeText}}" />
  12. <van-cell title="事项状态" value="{{form.voteStatusText}}" />
  13. <van-cell title="表决附件" border="{{false}}" />
  14. <van-upload wx:for="{{form.fileList}}" deletable="{{false}}" file-list="{{ item.list }}" bind:click-preview="lookDown" data-idx="{{index}}" show-upload="{{false}}"></van-upload>
  15. <van-cell title="表决情况" value="{{form.itemAt}}" border="{{false}}" />
  16. <view>
  17. <view style="text-align: right;">
  18. <text style="color: rgb(26, 196, 111);margin-right: 10px;">{{form.yesForm.length}}人同意</text>
  19. <text style="color: red;margin-right: 10px;">{{form.noForm.length}}人不同意</text>
  20. <text style="color: #999999;">{{form.everForm.length}}人弃权</text>
  21. </view>
  22. <view style="background-color: #f8f8f8;padding: 0 20px;">
  23. <view style="color: rgb(26, 196, 111);">同意:
  24. <text wx:for="{{form.yesForm}}">{{item.voteBy}}</text>
  25. <text wx:if="{{form.yesForm.length == 0}}">无</text>
  26. </view>
  27. <view style="color: red;">不同意:
  28. <text wx:for="{{form.noForm}}">{{item.voteBy}}</text>
  29. <text wx:if="{{form.noForm.length == 0}}">无</text>
  30. </view>
  31. <view style="color: #999999;">弃权:
  32. <text wx:for="{{form.everForm}}">{{item.voteBy}}<block wx:if="{{form.everForm.length != (index + 1)}}">、</block></text>
  33. <text wx:if="{{form.everForm.length == 0}}">无</text>
  34. </view>
  35. </view>
  36. </view>
  37. <view class="btn2" wx:if="{{form.voteStatus == 1 && form.voteYN != 'Y'}}" bind:tap="goForm" data-id="{{form.id}}">
  38. 我要表决
  39. </view>
  40. </view>
  41. </view>
  42. <view class="ipXbtn"></view>