兴安出门证优化

This commit is contained in:
zc
2025-08-08 17:44:51 +08:00
parent d08dbd48c3
commit 9c0f7a1d19
3 changed files with 23 additions and 8 deletions

View File

@@ -407,7 +407,7 @@
<el-col :span="12" >
<el-form-item label="是否出门证审核人" prop="guid" label-width="100px">
<el-select v-model="form.carryStuffExamine" placeholder="请选择">
<el-select v-model="form.carryStuffExamineList" placeholder="请选择" multiple>
<el-option
v-for="dict in dict.type.vis_stuff_examine_level"
:key="dict.value"

View File

@@ -48,6 +48,15 @@
<el-option key=1 label="是" value=1></el-option>
</el-select>
</el-form-item>
<el-form-item label="审核状态" prop="examineState">
<el-select v-model="queryParams.examineStateList" multiple clearable placeholder="请选择" @keyup.enter.native="handleQuery">
<el-option key="0" label="通过" value="0"></el-option>
<el-option key="2" label="驳回" value="1"></el-option>
<el-option key="2" label="审核中" value="2"></el-option>
<el-option key="2" label="已取消" value="4"></el-option>
<el-option key="2" label="已失效" value="5"></el-option>
</el-select>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
@@ -123,6 +132,11 @@
<span>{{ scope.row.reviewerName3 }}</span>
</template>
</el-table-column>
<el-table-column label="放行人" align="center" prop="examineState" width="90">
<template slot-scope="scope">
<span>{{ scope.row.releaseName }}</span>
</template>
</el-table-column>
<el-table-column label="审核状态" align="center" prop="examineState" width="90">
<template slot-scope="scope">
<template v-if="scope.row.examineState === '0'">通过</template>
@@ -492,6 +506,7 @@ export default {
examineState: null,
isExistBack: null,
ids: null,
examineStateList: [],
},
queryParams1: {
branchId: undefined,

View File

@@ -150,11 +150,11 @@
</el-table-column>
<el-table-column label="审核状态" align="center" prop="examine" width="180">
<template slot-scope="scope">
<template v-if="scope.row.examine.examine == null">未审核</template>
<template v-else>
<template v-if="scope.row.examine.examine == 0">通过</template>
<template v-else-if="scope.row.examine.examine == 1">驳回</template>
</template>
<template v-if="scope.row.examineState === '0'">通过</template>
<template v-if="scope.row.examineState === '1'">驳回</template>
<template v-if="scope.row.examineState === '2'">审核中</template>
<template v-if="scope.row.examineState === '4'">已取消</template>
<template v-if="scope.row.examineState === '5'">已失效</template>
</template>
</el-table-column>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">