1、企业基础信息中新增审批状态查询功能
This commit is contained in:
parent
21f8ad9061
commit
5b6f0d8556
|
@ -114,7 +114,7 @@
|
|||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="是否涉及危化证" prop="operateState">
|
||||
<el-form-item label="是否涉及危化证" prop="isSecure">
|
||||
<el-select
|
||||
v-model="queryParams.isSecure"
|
||||
placeholder="请选择是否涉及危化证"
|
||||
|
@ -129,6 +129,21 @@
|
|||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="审批状态" prop="status">
|
||||
<el-select
|
||||
v-model="queryParams.status"
|
||||
placeholder="请选择审批状态"
|
||||
clearable
|
||||
class="!w-240px"
|
||||
>
|
||||
<el-option
|
||||
v-for="dict in getIntDictOptions(DICT_TYPE.BPM_PROCESS_INSTANCE_STATUS)"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="dict.value"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button>
|
||||
<el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button>
|
||||
|
@ -267,6 +282,7 @@ const queryParams = reactive({
|
|||
enterpriseBelongingToIndustry: undefined,
|
||||
registerOffice: undefined,
|
||||
operatePermitRange: undefined,
|
||||
status: undefined
|
||||
})
|
||||
const queryFormRef = ref() // 搜索的表单
|
||||
const exportLoading = ref(false) // 导出的加载中
|
||||
|
|
Loading…
Reference in New Issue