feat(AppAuthManage): 新增认证审核功能
- 添加认证审核列表和详细页面组件 - 实现认证材料上传和审核功能 - 优化页面布局和样式 - 增加审核状态和备注说明功能
This commit is contained in:
@@ -1,7 +1,14 @@
|
|||||||
<script>
|
<script>
|
||||||
import authAdd from "./authAdd.vue";
|
import authAdd from "./authAdd.vue";
|
||||||
import authList from "./authList.vue";
|
import authList from "./authList.vue";
|
||||||
|
const certificates = [
|
||||||
|
{label: "身份证(正面)", prop: "frontCard"},
|
||||||
|
{label: "身份证(反面)", prop: "reverseCard"},
|
||||||
|
{label: "营业执照", prop: "businessPic", permit: ["breed"]},
|
||||||
|
{label: "畜禽经营许可证", prop: "breedPic", permit: ["breed"]},
|
||||||
|
{label: "动物防疫条件许可证", prop: "prevention", permit: ["breed"]},
|
||||||
|
{label: "组织机构证明", prop: "orgPic", permit: ["bank", "insurance"]},
|
||||||
|
]
|
||||||
export default {
|
export default {
|
||||||
name: "AppAuthManage",
|
name: "AppAuthManage",
|
||||||
label: "认证审核",
|
label: "认证审核",
|
||||||
@@ -16,6 +23,11 @@ export default {
|
|||||||
return hash == "#add" ? authAdd : authList
|
return hash == "#add" ? authAdd : authList
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
data(){
|
||||||
|
return {
|
||||||
|
certificates
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -1,41 +1,55 @@
|
|||||||
<script>
|
<script>
|
||||||
import AiUploader from "dui/packages/basic/AiUploader.vue";
|
|
||||||
|
|
||||||
const certificates = [
|
|
||||||
{label: "身份证(正面)", prop: "frontCard"},
|
|
||||||
{label: "身份证(反面)", prop: "reverseCard"},
|
|
||||||
{label: "营业执照", prop: "businessPic", permit: ["breed"]},
|
|
||||||
{label: "畜禽经营许可证", prop: "breedPic", permit: ["breed"]},
|
|
||||||
{label: "动物防疫条件许可证", prop: "prevention", permit: ["breed"]},
|
|
||||||
{label: "组织机构证明", prop: "orgPic", permit: ["bank", "insurance"]},
|
|
||||||
]
|
|
||||||
export default {
|
export default {
|
||||||
name: "authAdd",
|
name: "authAdd",
|
||||||
components: {AiUploader},
|
|
||||||
props: {
|
props: {
|
||||||
instance: Function,
|
instance: Function,
|
||||||
permissions: Function
|
permissions: Function,
|
||||||
|
dict: Object
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
certificates,
|
|
||||||
detail: {},
|
detail: {},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
computed: {
|
||||||
|
isAuditing: v => v.detail.auditStatus == 1
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
back(params = {}) {
|
||||||
|
this.$router.push(params)
|
||||||
|
},
|
||||||
getDetail() {
|
getDetail() {
|
||||||
const {id} = this.$route.query
|
const {id} = this.$route.query
|
||||||
this.instance.post("/api/user/auth/page", null, {params: {id}}).then(res => {
|
this.instance.post("/api/user/auth/page", null, {params: {id}}).then(res => {
|
||||||
if (res?.data) {
|
if (res?.data?.records) {
|
||||||
this.detail = res.data|| {}
|
const detail = res.data.records[0] || {}
|
||||||
|
let {picture = "{}"} = detail
|
||||||
|
picture = JSON.parse(picture)
|
||||||
|
this.detail = {...detail, ...picture}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
getNeedCerts(type) {
|
getNeedCerts(type) {
|
||||||
return certificates.filter(e => !e.permit || e.permit.includes(type))
|
return this.$parent.certificates.filter(e => !e.permit || e.permit.includes(type))
|
||||||
},
|
},
|
||||||
|
handleAudit(auditStatus) {
|
||||||
|
const auditLabels = {
|
||||||
|
2: "同意通过", 3: "驳回"
|
||||||
|
}
|
||||||
|
this.$confirm(`是否要${auditLabels[auditStatus]}认证?`).then(() => {
|
||||||
|
this.instance.post("/api/user/audit", null, {params:{
|
||||||
|
id: this.detail.id, auditStatus
|
||||||
|
}}).then(res => {
|
||||||
|
if (res?.code == 0) {
|
||||||
|
this.$confirm("是否要返回列表?","提交成功").then(() => this.back())
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
this.dict.load("auditStatus")
|
||||||
this.getDetail()
|
this.getDetail()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -43,16 +57,25 @@ export default {
|
|||||||
|
|
||||||
<template>
|
<template>
|
||||||
<ai-page title="认证材料" class="authAdd" showBack content-string="detail">
|
<ai-page title="认证材料" class="authAdd" showBack content-string="detail">
|
||||||
<el-form size="small">
|
<el-form size="small" label-position="top" :model="detail" ref="detail">
|
||||||
<ai-card title="认证材料">
|
<ai-card title="认证材料">
|
||||||
<div class="grid">
|
<div class="grid">
|
||||||
<el-form-item v-for="(op,i) in getNeedCerts(detail.type)" :key="i" v-bind="op" :rules="{required:true,message:`请上传${op.label}`,trigger:'change'}">
|
<el-form-item v-for="(op,i) in getNeedCerts(detail.type)" :key="i" v-bind="op" :rules="{required:true,message:`请上传${op.label}`,trigger:'change'}">
|
||||||
<el-image v-model="detail[op.prop]" :preview-src-list="[detail[op.prop]]"/>
|
<el-image :src="detail[op.prop]" :preview-src-list="[detail[op.prop]]"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</div>
|
</div>
|
||||||
</ai-card>
|
</ai-card>
|
||||||
<ai-card title="审核意见"></ai-card>
|
<ai-card title="备注说明">
|
||||||
|
<div v-text="detail.remark"/>
|
||||||
|
</ai-card>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
<div slot="footer">
|
||||||
|
<template v-if="isAuditing">
|
||||||
|
<el-button type="primary" @click="handleAudit(2)">同意</el-button>
|
||||||
|
<el-button type="danger" @click="handleAudit(3)">拒绝</el-button>
|
||||||
|
</template>
|
||||||
|
<el-button @click="back">关闭</el-button>
|
||||||
|
</div>
|
||||||
</ai-page>
|
</ai-page>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
<script>
|
<script>
|
||||||
|
|
||||||
|
import AiSelect from "dui/packages/basic/AiSelect.vue";
|
||||||
|
|
||||||
const columns = [
|
const columns = [
|
||||||
{label: "序号", type: "index"},
|
{label: "序号", type: "index"},
|
||||||
{label: "账号", prop: "userName"},
|
{label: "账号", prop: "userName"},
|
||||||
@@ -9,16 +11,9 @@ const columns = [
|
|||||||
{label: "状态", prop: "authStatus", dict: "authStatus", width: 120, align: 'center'},
|
{label: "状态", prop: "authStatus", dict: "authStatus", width: 120, align: 'center'},
|
||||||
{label: "审核状态", prop: "auditStatus", dict: "auditStatus", width: 120, align: 'center'},
|
{label: "审核状态", prop: "auditStatus", dict: "auditStatus", width: 120, align: 'center'},
|
||||||
]
|
]
|
||||||
const certificates = [
|
|
||||||
{label: "身份证(正面)", prop: "frontCard"},
|
|
||||||
{label: "身份证(反面)", prop: "reverseCard"},
|
|
||||||
{label: "营业执照", prop: "businessPic", permit: ["breed"]},
|
|
||||||
{label: "畜禽经营许可证", prop: "breedPic", permit: ["breed"]},
|
|
||||||
{label: "动物防疫条件许可证", prop: "prevention", permit: ["breed"]},
|
|
||||||
{label: "组织机构证明", prop: "orgPic", permit: ["bank", "insurance"]},
|
|
||||||
]
|
|
||||||
export default {
|
export default {
|
||||||
name: "authList",
|
name: "authList",
|
||||||
|
components: {AiSelect},
|
||||||
props: {
|
props: {
|
||||||
instance: Function,
|
instance: Function,
|
||||||
dict: Object,
|
dict: Object,
|
||||||
@@ -46,11 +41,19 @@ export default {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
getNeedCerts(type) {
|
getNeedCerts(type) {
|
||||||
return certificates.filter(e => !e.permit || e.permit.includes(type))
|
return this.$parent.certificates.filter(e => !e.permit || e.permit.includes(type))
|
||||||
},
|
},
|
||||||
handleConfirm() {
|
handleConfirm() {
|
||||||
this.$refs.form.validate().then(() => {
|
this.$refs.form.validate().then(() => {
|
||||||
this.instance.post("/api/user/auth/update", this.form).then(res => {
|
const {id, remark} = this.form, picture = {}
|
||||||
|
this.$parent.certificates.forEach(e => {
|
||||||
|
picture[e.prop] = this.form[e.prop]
|
||||||
|
})
|
||||||
|
this.instance.post("/api/user/savePicture", null, {
|
||||||
|
params: {
|
||||||
|
id, remark, picture: JSON.stringify(picture)
|
||||||
|
}
|
||||||
|
}).then(res => {
|
||||||
if (res?.code == '0' && res?.data != 1) {
|
if (res?.code == '0' && res?.data != 1) {
|
||||||
this.dialog = false
|
this.dialog = false
|
||||||
this.$message.success("提交成功!")
|
this.$message.success("提交成功!")
|
||||||
@@ -58,6 +61,12 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
handleUploadPics(row = {}) {
|
||||||
|
let {id, type, remark, picture = "{}"} = row
|
||||||
|
picture = JSON.parse(picture)
|
||||||
|
this.form = {id, type, remark, ...picture}
|
||||||
|
this.dialog = true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
@@ -71,7 +80,8 @@ export default {
|
|||||||
<ai-page class="authList" title="认证审核">
|
<ai-page class="authList" title="认证审核">
|
||||||
<ai-search-bar>
|
<ai-search-bar>
|
||||||
<template #left>
|
<template #left>
|
||||||
<el-button type="primary" icon="iconfont iconAdd" @click="$router.push({hash:'#add'})">添加</el-button>
|
<ai-select v-model="search.authStatus" dict="authStatus" placeholder="状态"/>
|
||||||
|
<ai-select v-model="search.auditStatus" dict="auditStatus" placeholder="审核状态"/>
|
||||||
</template>
|
</template>
|
||||||
<template #right>
|
<template #right>
|
||||||
<el-input size="small" placeholder="搜索账号" v-model="search.name" clearable
|
<el-input size="small" placeholder="搜索账号" v-model="search.name" clearable
|
||||||
@@ -90,16 +100,16 @@ export default {
|
|||||||
@click="$router.push({query:{id:row.id},hash:'#add'})">审核
|
@click="$router.push({query:{id:row.id},hash:'#add'})">审核
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button type="text" v-if="'00|13'.includes(row.permit)"
|
<el-button type="text" v-if="'00|13'.includes(row.permit)"
|
||||||
@click="dialog=true,form=row">认证材料
|
@click="handleUploadPics(row)">认证材料
|
||||||
</el-button>
|
</el-button>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</ai-table>
|
</ai-table>
|
||||||
<ai-dialog v-model="dialog" title="认证材料" width="60%" @close="form=[]" @confirm="handleConfirm">
|
<ai-dialog v-model="dialog" title="认证材料" width="60%" @close="form={}" @confirm="handleConfirm">
|
||||||
<el-form class="grid c-3" :model="form" ref="form" label-width="160px">
|
<el-form class="grid c-3" :model="form" ref="form" label-width="160px">
|
||||||
<el-form-item v-for="(op,i) in getNeedCerts(form.type)" :key="i" v-bind="op" :rules="{required:true,message:`请上传${op.label}`,trigger:'change'}">
|
<el-form-item v-for="(op,i) in getNeedCerts(form.type)" :key="i" v-bind="op" :rules="{required:true,message:`请上传${op.label}`,trigger:'change'}">
|
||||||
<ai-uploader v-model="form[op.prop]" valueIsUrl :limit="1"/>
|
<ai-uploader v-model="form[op.prop]" valueIsUrl :limit="1" :instance="instance"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item class="row" label="备注说明" prop="remark">
|
<el-form-item class="row" label="备注说明" prop="remark">
|
||||||
<el-input type="textarea" :rows="2" v-model="form.remark" placeholder="备注说明具体情况"/>
|
<el-input type="textarea" :rows="2" v-model="form.remark" placeholder="备注说明具体情况"/>
|
||||||
|
|||||||
@@ -19,9 +19,12 @@ export default {
|
|||||||
<div v-if="$slots.left" class="left">
|
<div v-if="$slots.left" class="left">
|
||||||
<slot name="left"/>
|
<slot name="left"/>
|
||||||
</div>
|
</div>
|
||||||
<div class="fill" :class="[contentString]">
|
<el-scrollbar class="fill" :class="[contentString,$slots.footer?'hasFooter':'']">
|
||||||
<slot/>
|
<slot/>
|
||||||
|
</el-scrollbar>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="footer" v-if="$slots.footer">
|
||||||
|
<slot name="footer"/>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
@@ -35,6 +38,7 @@ export default {
|
|||||||
padding: 0 20px;
|
padding: 0 20px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
background: #f3f6f9;
|
background: #f3f6f9;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
.main {
|
.main {
|
||||||
display: flex;
|
display: flex;
|
||||||
@@ -43,6 +47,7 @@ export default {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|
||||||
|
|
||||||
& > .fill {
|
& > .fill {
|
||||||
&.card {
|
&.card {
|
||||||
padding: 12px 16px 12px;
|
padding: 12px 16px 12px;
|
||||||
@@ -55,8 +60,36 @@ export default {
|
|||||||
margin-left: 50%;
|
margin-left: 50%;
|
||||||
transform: translateX(-50%);
|
transform: translateX(-50%);
|
||||||
max-width: 1200px;
|
max-width: 1200px;
|
||||||
|
overflow-y: auto;
|
||||||
|
|
||||||
|
:deep(.el-scrollbar__wrap) {
|
||||||
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.hasFooter {
|
||||||
|
padding-bottom: 64px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
left:0;
|
||||||
|
right:0;
|
||||||
|
height: 64px;
|
||||||
|
background: #F5F5F5;
|
||||||
|
box-shadow: 0 1px 0 0 #E5E5E5;
|
||||||
|
|
||||||
|
.el-button {
|
||||||
|
width: 92px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.left {
|
.left {
|
||||||
|
|||||||
Reference in New Issue
Block a user