MicroCommunityWeb/public/pages/property/newOaWorkflowDetail/newOaWorkflowDetail.html
2021-08-25 22:52:36 +08:00

83 lines
4.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>工单详情</h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_goBack()">返回</button>
</div>
</div>
<div class="ibox-content">
<div>
<div>
<div class="row" v-if="newOaWorkflowDetailInfo.pools">
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label">申请人:</label>
<label class="">{{newOaWorkflowDetailInfo.pools.create_user_name}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label">申请时间:</label>
<label class="">{{newOaWorkflowDetailInfo.pools.create_time}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label">状态:</label>
<label
class="">{{_getNewOaWorkflowDetailState(newOaWorkflowDetailInfo.pools)}}</label>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4" v-for="(item,index) in newOaWorkflowDetailInfo.formJson"
v-if="item.type != 'text' && item.type != 'button' ">
<div class="form-group">
<label class="col-form-label">{{item.label}}</label>
<label class="">{{newOaWorkflowDetailInfo.pools[item.key]}}</label>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>工单流转</h5>
<div class="ibox-tools" style="top:10px;">
</div>
</div>
<div class="ibox-content">
<table class="table table-stripped">
<thead>
<tr>
<th scope="col" class="text-center">序号</th>
<th scope="col" class="text-center">处理人</th>
<th scope="col" class="text-center">状态</th>
<th scope="col" class="text-center">耗时</th>
<th scope="col" class="text-center">意见</th>
</tr>
</thead>
<tbody>
<tr v-for="(item,index) in newOaWorkflowDetailInfo.comments">
<td scope="row" class="text-center">{{index+1}}</td>
<td class="text-center">{{item.auditName}}</td>
<td class="text-center">{{item.stateName}}</td>
<td class="text-center">{{item.duration}}</td>
<td class="text-center">{{item.message}}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>