发出承诺页面承诺书显示是否已签字字段
parent
249e8fecac
commit
89d87af98c
|
@ -29,7 +29,7 @@
|
|||
<view class="promiser">发状人:{{ info.COVERPEOPLE }}</view>
|
||||
<view class="time">{{ info.CREATTIME.substring(0,10) }}</view>
|
||||
</view>
|
||||
<view class="respondent">
|
||||
<view v-if="info.SIGNTIME != null" class="respondent">
|
||||
<view class="promiser">
|
||||
<text>
|
||||
{{ info.TYPE === '0' ? '主要负责人签字' : '受状人' }}:
|
||||
|
@ -41,6 +41,13 @@
|
|||
{{ info.SIGNTIME && info.SIGNTIME.substring(0,10) }}
|
||||
</view>
|
||||
</view>
|
||||
<view v-else class="respondent">
|
||||
<view class="promiser">
|
||||
<text>
|
||||
{{ info.TYPE === '0' ? '主要负责人未签字' : '受状人未签字' }}
|
||||
</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
|
|
@ -14,6 +14,8 @@
|
|||
<view>
|
||||
<view class="fontstyle">被承诺人:{{ item.coverpeople }}</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>
|
||||
<view class="font0" v-if="TYPE === '2'">{{ item.ISREAD == '0' ? '待阅' : '已阅' }}</view>
|
||||
|
|
Loading…
Reference in New Issue