[update] 流程审批记录增加状态查询条件
This commit is contained in:
@@ -5,7 +5,27 @@
|
||||
</div>
|
||||
<div class="approval-list">
|
||||
<!--查询区域-->
|
||||
<div class="table-page-search-submitButtons">
|
||||
<div class="table-page-search-wrapper">
|
||||
<a-form layout="inline" @keyup.enter.native="searchQuery">
|
||||
<a-row :gutter="24">
|
||||
<a-col :md="8" :sm="8">
|
||||
<!--状态-->
|
||||
<a-form-item :label="$t('status')" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
||||
<j-dict-select-tag
|
||||
:placeholder="$t('pleaseEnter') + $t('status')"
|
||||
dict-code="prc_node_status"
|
||||
v-model="queryParam.finishFlag"></j-dict-select-tag>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<div style="float: right;overflow: hidden;margin-right: 11px" class="table-page-search-submitButtons">
|
||||
<a-button class="box-button" type="primary" icon="search" @click="searchQuery">{{ $t('query') }}</a-button>
|
||||
<a-button class="box-button" icon="reload" style="margin-left: 8px" @click="searchReset">{{ $t('reset') }}</a-button>
|
||||
</div>
|
||||
</a-row>
|
||||
</a-form>
|
||||
</div>
|
||||
|
||||
<div class="table-page-oper-submitButtons">
|
||||
<!--催办-->
|
||||
<a-button type="primary" @click="handleUrge" icon="bell" v-if="showUrgeButton">
|
||||
{{ $t('workCenter.processDetail.urgeHandle') }}
|
||||
@@ -142,6 +162,12 @@ export default {
|
||||
},
|
||||
data () {
|
||||
return {
|
||||
labelCol: {
|
||||
span: 1
|
||||
},
|
||||
wrapperCol: {
|
||||
span: 14
|
||||
},
|
||||
columns: [
|
||||
// 任务节点
|
||||
{
|
||||
@@ -382,9 +408,13 @@ export default {
|
||||
color: #D52C26;
|
||||
}
|
||||
|
||||
.table-page-search-submitButtons {
|
||||
.table-page-oper-submitButtons {
|
||||
.ant-btn {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
/deep/ .ant-form-item-label {
|
||||
min-width: 90px !important;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user