feat(x): 新增出栏审核功能

- 添加出栏审核相关的三个子页面:add、list 和 AppSellAudit
- 实现出umu栏审核的添加、列表展示和审批功能
- 集成字典加载、权限控制和用户信息获取
- 优化表格数据加载和搜索过滤
This commit is contained in:
aixianling
2025-01-03 17:35:41 +08:00
parent dad169496c
commit 6feaeb22bf
3 changed files with 286 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
<script>
import add from "./add.vue";
import list from "./list.vue";
export default {
name: "AppSellAudit",
label: "出栏审核",
props: {
instance: Function,
dict: Object,
permissions: Function
},
computed: {
currentPage() {
let {hash} = this.$route
return ["#audit", "#add"].includes(hash) ? add : list
}
},
created() {
this.dict.load("auditStatus", "loanProduct", "loanStatus", "category", "variety")
},
}
</script>
<template>
<section class="AppSellAudit">
<component :is="currentPage" v-bind="$props"/>
</section>
</template>
<style scoped lang="scss">
.AppSellAudit {
height: 100%;
}
</style>