detail.wxml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. <view class="init">
  2. <view class="init_lawyer">
  3. <view class="one_lawyer" wx:for="{{cloudCardOrder.lawyes}}">
  4. <i-row>
  5. <i-col span="6" i-class="col-class">
  6. <view class="lawyer_head">
  7. <image src="{{item.headPortrait}}"/>
  8. </view>
  9. </i-col>
  10. <i-col span="18" i-class="col-class">
  11. <view class="lawyer_msg">
  12. <view class="lawyer_name">云证律师 | {{item.userName}} <text class="lawyer_state">证明</text></view>
  13. <view class="lawyer_address">{{item.lawyerInstitute}}</view>
  14. <view class="lawyer_address"><image src="/images/detail/phone.png"/> {{item.lawOfficePhone}}</view>
  15. </view>
  16. </i-col>
  17. <!-- <i-col span="6" i-class="col-class">
  18. <view class="lawyer_state">
  19. <view>证明</view>
  20. </view>
  21. </i-col> -->
  22. </i-row>
  23. </view>
  24. </view>
  25. <view class="init_info">
  26. <view>
  27. <view class="init_title">发起人</view>
  28. <!-- <text>已证明</text> -->
  29. <view class="input">
  30. <image src="/images/detail/mobile_u.png" />
  31. <text>{{cloudCardOrder.initiatorName}}</text>
  32. </view>
  33. <view class="input">
  34. <image class="mobile" src="/images/detail/mobile.png" />
  35. <text>{{cloudCardOrder.initiatorMobile}}</text>
  36. </view>
  37. </view>
  38. </view>
  39. <view class="init_info">
  40. <view>
  41. <view class="init_title">接收人</view>
  42. <!-- <text wx:if="{{cloudCardOrder.receiverName == '' && cloudCardOrder.receiverMobile == '' }}">已证明</text> -->
  43. <view class="input">
  44. <image src="/images/detail/mobil_u.png" />
  45. <text>{{cloudCardOrder.receiverName == null ? "暂无" : cloudCardOrder.receiverName }}</text>
  46. </view>
  47. <view class="input">
  48. <image class="mobile" src="/images/detail/mobil.png" />
  49. <text>{{cloudCardOrder.receiverMobile == null ? "暂无" : cloudCardOrder.receiverMobile }}</text>
  50. </view>
  51. </view>
  52. </view>
  53. <view class="init_st">
  54. <view>
  55. <view>合意状态 <text>{{cloudCardOrder.statusName}}</text></view>
  56. </view>
  57. </view>
  58. <view class="init_st">
  59. <view>
  60. <view>合意时间 <text>{{cloudCardOrder.createTime}}</text></view>
  61. </view>
  62. </view>
  63. <view class="init_content">
  64. <view>
  65. <view class="init_title">合意内容</view>
  66. <view>{{cloudCardOrder.content == null ? '暂无合意内容' : cloudCardOrder.content }}</view>
  67. </view>
  68. </view>
  69. <view class="init_img" wx:if="{{imageList.length!=0}}">
  70. <view>
  71. <view class="init_title">图片</view>
  72. <view class="imgs">
  73. <view wx:for="{{imageList}}">
  74. <image class="image" src="{{item}}" data-index="{{index}}" bindtap="handleImagePreview"/>
  75. <!-- <image src="/images/initCloud/del.png" data-index="{{index}}" bindtap="removeImage"/> -->
  76. </view>
  77. </view>
  78. </view>
  79. </view>
  80. <view class="init_img" wx:if="{{fileList.length!=0}}">
  81. <view>
  82. <view class="init_title">文件</view>
  83. <view class="">
  84. <view class="fileList">
  85. <view class="one_file" wx:for="{{fileList}}">
  86. <view bindtap="showFile" data-index="{{index}}">{{index+1}} . {{item.name}}</view>
  87. </view>
  88. </view>
  89. </view>
  90. </view>
  91. </view>
  92. <view class="init_jump" wx:if="{{cloudCardOrder.statusName == '已签署'}}">
  93. <view>
  94. <view>
  95. 证明书预览
  96. <view class="jump" bindtap="preview">
  97. <text>点击预览</text>
  98. <image src="/images/detail/right.png"/>
  99. </view>
  100. </view>
  101. </view>
  102. </view>
  103. <view class="init_jump" wx:if="{{cloudCardOrder.statusName == '已签署' && (cloudCardOrder.initiatorId == userInfo.id || cloudCardOrder.receiverId == userInfo.id)}}">
  104. <view>
  105. <view>
  106. 出具书面证明书
  107. <view class="jump" bindtap="prove">
  108. <text>点击{{cloudCardOrder.alreadyAppFlag?'查看':'申请'}}</text>
  109. <image src="/images/detail/right.png"/>
  110. </view>
  111. </view>
  112. </view>
  113. </view>
  114. <view class="init_pay" wx:if="{{cloudCardOrder.statusName == '未支付' }}">
  115. <view>
  116. <view class="pay_title">本次需支付</view>
  117. <view class="pay_num">¥ {{totalFee}}</view>
  118. <view class="pay_btn">
  119. <button bindtap="toPay">
  120. 支付
  121. </button>
  122. </view>
  123. <view class="pay_check">
  124. <checkbox-group bindchange="checkboxChange">
  125. <checkbox color="#6b223e" checked="{{isCheck}}"/>
  126. </checkbox-group>
  127. <text class="text">我已阅读并同意</text>
  128. <text class="text a" bindtap="book">《网律云证用户确认书》</text>
  129. </view>
  130. </view>
  131. </view>
  132. <!-- <button wx:if="{{(cloudCardOrder.orderStatus == 'NOT_SIGN' && userInfo.id != cloudCardOrder.initiatorId && cloudCardOrder.isOpen != 1)}}" class="btn agree" bindtap="agree"> 接收 </button> -->
  133. <button wx:if="{{cloudCardOrder.orderStatus == 'NOT_SIGN' && userInfo.id != cloudCardOrder.initiatorId && lawyeIds && cloudCardOrder.isOpen != 1}}"
  134. class="btn agree" bindtap="agree"> 接收 </button>
  135. </view>
  136. <view class="cloud_back" bindtap="back" wx:if="{{fromReceiver == 1}}">
  137. <image src="/images/detail/back.png"/>
  138. </view>