发出承诺页面承诺书显示是否已签字字段

pull/2/head
limingyu 2024-04-01 19:20:43 +08:00
parent 249e8fecac
commit 89d87af98c
2 changed files with 10 additions and 1 deletions

View File

@ -29,7 +29,7 @@
<view class="promiser">发状人{{ info.COVERPEOPLE }}</view> <view class="promiser">发状人{{ info.COVERPEOPLE }}</view>
<view class="time">{{ info.CREATTIME.substring(0,10) }}</view> <view class="time">{{ info.CREATTIME.substring(0,10) }}</view>
</view> </view>
<view class="respondent"> <view v-if="info.SIGNTIME != null" class="respondent">
<view class="promiser"> <view class="promiser">
<text> <text>
{{ info.TYPE === '0' ? '主要负责人签字' : '受状人' }} {{ info.TYPE === '0' ? '主要负责人签字' : '受状人' }}
@ -41,6 +41,13 @@
{{ info.SIGNTIME && info.SIGNTIME.substring(0,10) }} {{ info.SIGNTIME && info.SIGNTIME.substring(0,10) }}
</view> </view>
</view> </view>
<view v-else class="respondent">
<view class="promiser">
<text>
{{ info.TYPE === '0' ? '主要负责人未签字' : '受状人未签字' }}
</text>
</view>
</view>
</view> </view>
</view> </view>
</view> </view>

View File

@ -14,6 +14,8 @@
<view> <view>
<view class="fontstyle">被承诺人{{ item.coverpeople }}</view> <view class="fontstyle">被承诺人{{ item.coverpeople }}</view>
<view class="fontstyle">承诺人{{ item.NAME }}</view> <view class="fontstyle">承诺人{{ item.NAME }}</view>
<view v-if="item.SIGNTIME != null" class="fontstyle"></view>
<view v-else class="fontstyle">未签字</view>
<view class="message_time">{{ item.SIGNTIME }}</view> <view class="message_time">{{ item.SIGNTIME }}</view>
</view> </view>
<view class="font0" v-if="TYPE === '2'">{{ item.ISREAD == '0' ? '' : '' }}</view> <view class="font0" v-if="TYPE === '2'">{{ item.ISREAD == '0' ? '' : '' }}</view>