兴安出门证优化

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-col :span="12" >
<el-form-item label="是否出门证审核人" prop="guid" label-width="100px"> <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 <el-option
v-for="dict in dict.type.vis_stuff_examine_level" v-for="dict in dict.type.vis_stuff_examine_level"
:key="dict.value" :key="dict.value"

View File

@@ -48,6 +48,15 @@
<el-option key=1 label="是" value=1></el-option> <el-option key=1 label="是" value=1></el-option>
</el-select> </el-select>
</el-form-item> </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-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button> <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> <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
@@ -123,6 +132,11 @@
<span>{{ scope.row.reviewerName3 }}</span> <span>{{ scope.row.reviewerName3 }}</span>
</template> </template>
</el-table-column> </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"> <el-table-column label="审核状态" align="center" prop="examineState" width="90">
<template slot-scope="scope"> <template slot-scope="scope">
<template v-if="scope.row.examineState === '0'">通过</template> <template v-if="scope.row.examineState === '0'">通过</template>
@@ -492,6 +506,7 @@ export default {
examineState: null, examineState: null,
isExistBack: null, isExistBack: null,
ids: null, ids: null,
examineStateList: [],
}, },
queryParams1: { queryParams1: {
branchId: undefined, branchId: undefined,

View File

@@ -150,11 +150,11 @@
</el-table-column> </el-table-column>
<el-table-column label="审核状态" align="center" prop="examine" width="180"> <el-table-column label="审核状态" align="center" prop="examine" width="180">
<template slot-scope="scope"> <template slot-scope="scope">
<template v-if="scope.row.examine.examine == null">未审核</template> <template v-if="scope.row.examineState === '0'">通过</template>
<template v-else> <template v-if="scope.row.examineState === '1'">驳回</template>
<template v-if="scope.row.examine.examine == 0">通过</template> <template v-if="scope.row.examineState === '2'">审核中</template>
<template v-else-if="scope.row.examine.examine == 1">驳回</template> <template v-if="scope.row.examineState === '4'">已取消</template>
</template> <template v-if="scope.row.examineState === '5'">已失效</template>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width"> <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
@@ -545,7 +545,7 @@ export default {
if(reg.test(val)){ if(reg.test(val)){
setTimeout(() => { setTimeout(() => {
this.phoneToPerson(val) this.phoneToPerson(val)
},80) },80)
} }
}, },
// 取消按钮 // 取消按钮
@@ -642,7 +642,7 @@ export default {
this.$modal.msgError('随访人相关信息不能为空!'); this.$modal.msgError('随访人相关信息不能为空!');
this.subFlag = 0; this.subFlag = 0;
} }
}) })
}else{ }else{
this.subFlag = 1; this.subFlag = 1;
} }