- 添加出栏审核相关的三个子页面:add、list 和 AppSellAudit - 实现出umu栏审核的添加、列表展示和审批功能 - 集成字典加载、权限控制和用户信息获取 - 优化表格数据加载和搜索过滤
36 lines
665 B
Vue
36 lines
665 B
Vue
<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>
|