兴安出门证优化
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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">
|
||||
@@ -545,7 +545,7 @@ export default {
|
||||
if(reg.test(val)){
|
||||
setTimeout(() => {
|
||||
this.phoneToPerson(val)
|
||||
},80)
|
||||
},80)
|
||||
}
|
||||
},
|
||||
// 取消按钮
|
||||
@@ -642,7 +642,7 @@ export default {
|
||||
this.$modal.msgError('随访人相关信息不能为空!');
|
||||
this.subFlag = 0;
|
||||
}
|
||||
})
|
||||
})
|
||||
}else{
|
||||
this.subFlag = 1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user