feat(AppAuthManage): 新增认证审核功能

- 添加认证审核列表和详细页面组件
- 实现认证材料上传和审核功能
- 优化页面布局和样式
- 增加审核状态和备注说明功能
This commit is contained in:
aixianling
2024-12-24 16:04:18 +08:00
parent 4d96417661
commit b1c0beb8f6
4 changed files with 113 additions and 35 deletions

View File

@@ -1,7 +1,14 @@
<script>
import authAdd from "./authAdd.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 {
name: "AppAuthManage",
label: "认证审核",
@@ -16,6 +23,11 @@ export default {
return hash == "#add" ? authAdd : authList
}
},
data(){
return {
certificates
}
}
}
</script>