123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- <view class="init">
- <view class="init_lawyer">
- <view class="one_lawyer" wx:for="{{cloudCardOrder.lawyes}}">
- <i-row>
- <i-col span="6" i-class="col-class">
- <view class="lawyer_head">
- <image src="{{item.headPortrait}}"/>
- </view>
- </i-col>
- <i-col span="18" i-class="col-class">
- <view class="lawyer_msg">
- <view class="lawyer_name">云证律师 | {{item.userName}} <text class="lawyer_state">证明</text></view>
- <view class="lawyer_address">{{item.lawyerInstitute}}</view>
- <view class="lawyer_address"><image src="/images/detail/phone.png"/> {{item.lawOfficePhone}}</view>
- </view>
- </i-col>
- <!-- <i-col span="6" i-class="col-class">
- <view class="lawyer_state">
- <view>证明</view>
- </view>
- </i-col> -->
- </i-row>
- </view>
- </view>
- <view class="init_info">
- <view>
- <view class="init_title">发起人</view>
- <!-- <text>已证明</text> -->
- <view class="input">
- <image src="/images/detail/mobile_u.png" />
- <text>{{cloudCardOrder.initiatorName}}</text>
- </view>
- <view class="input">
- <image class="mobile" src="/images/detail/mobile.png" />
- <text>{{cloudCardOrder.initiatorMobile}}</text>
- </view>
- </view>
- </view>
- <view class="init_info">
- <view>
- <view class="init_title">接收人</view>
- <!-- <text wx:if="{{cloudCardOrder.receiverName == '' && cloudCardOrder.receiverMobile == '' }}">已证明</text> -->
- <view class="input">
- <image src="/images/detail/mobil_u.png" />
- <text>{{cloudCardOrder.receiverName == null ? "暂无" : cloudCardOrder.receiverName }}</text>
- </view>
- <view class="input">
- <image class="mobile" src="/images/detail/mobil.png" />
- <text>{{cloudCardOrder.receiverMobile == null ? "暂无" : cloudCardOrder.receiverMobile }}</text>
- </view>
- </view>
- </view>
- <view class="init_st">
- <view>
- <view>合意状态 <text>{{cloudCardOrder.statusName}}</text></view>
- </view>
- </view>
- <view class="init_st">
- <view>
- <view>合意时间 <text>{{cloudCardOrder.createTime}}</text></view>
- </view>
- </view>
- <view class="init_content">
- <view>
- <view class="init_title">合意内容</view>
- <view>{{cloudCardOrder.content == null ? '暂无合意内容' : cloudCardOrder.content }}</view>
- </view>
- </view>
- <view class="init_img" wx:if="{{imageList.length!=0}}">
- <view>
- <view class="init_title">图片</view>
- <view class="imgs">
- <view wx:for="{{imageList}}">
- <image class="image" src="{{item}}" data-index="{{index}}" bindtap="handleImagePreview"/>
- <!-- <image src="/images/initCloud/del.png" data-index="{{index}}" bindtap="removeImage"/> -->
- </view>
- </view>
- </view>
- </view>
- <view class="init_img" wx:if="{{fileList.length!=0}}">
- <view>
- <view class="init_title">文件</view>
- <view class="">
- <view class="fileList">
- <view class="one_file" wx:for="{{fileList}}">
- <view bindtap="showFile" data-index="{{index}}">{{index+1}} . {{item.name}}</view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="init_jump" wx:if="{{cloudCardOrder.statusName == '已签署'}}">
- <view>
- <view>
- 证明书预览
- <view class="jump" bindtap="preview">
- <text>点击预览</text>
- <image src="/images/detail/right.png"/>
- </view>
- </view>
- </view>
- </view>
- <view class="init_jump" wx:if="{{cloudCardOrder.statusName == '已签署' && (cloudCardOrder.initiatorId == userInfo.id || cloudCardOrder.receiverId == userInfo.id)}}">
- <view>
- <view>
- 出具书面证明书
- <view class="jump" bindtap="prove">
- <text>点击{{cloudCardOrder.alreadyAppFlag?'查看':'申请'}}</text>
- <image src="/images/detail/right.png"/>
- </view>
- </view>
- </view>
- </view>
- <view class="init_pay" wx:if="{{cloudCardOrder.statusName == '未支付' }}">
- <view>
- <view class="pay_title">本次需支付</view>
- <view class="pay_num">¥ {{totalFee}}</view>
- <view class="pay_btn">
- <button bindtap="toPay">
- 支付
- </button>
- </view>
- <view class="pay_check">
- <checkbox-group bindchange="checkboxChange">
- <checkbox color="#6b223e" checked="{{isCheck}}"/>
- </checkbox-group>
- <text class="text">我已阅读并同意</text>
- <text class="text a" bindtap="book">《网律云证用户确认书》</text>
- </view>
- </view>
- </view>
- <!-- <button wx:if="{{(cloudCardOrder.orderStatus == 'NOT_SIGN' && userInfo.id != cloudCardOrder.initiatorId && cloudCardOrder.isOpen != 1)}}" class="btn agree" bindtap="agree"> 接收 </button> -->
- <button wx:if="{{cloudCardOrder.orderStatus == 'NOT_SIGN' && userInfo.id != cloudCardOrder.initiatorId && lawyeIds && cloudCardOrder.isOpen != 1}}"
- class="btn agree" bindtap="agree"> 接收 </button>
- </view>
- <view class="cloud_back" bindtap="back" wx:if="{{fromReceiver == 1}}">
- <image src="/images/detail/back.png"/>
- </view>
|