refactor(xumu): 修正 AppOutAudit 组件的名称

- 将组件名称从 AppSellAudit 修改为 AppOutAudit
- 更新相应的样式类名和模板选择器
This commit is contained in:
aixianling
2025-01-08 14:33:49 +08:00
parent d1a8800a9b
commit 2abdab1b20

View File

@@ -3,7 +3,7 @@ import add from "./add.vue";
import list from "./list.vue";
export default {
name: "AppSellAudit",
name: "AppOutAudit",
label: "淘汰审核",
props: {
instance: Function,
@@ -23,13 +23,13 @@ export default {
</script>
<template>
<section class="AppSellAudit">
<section class="AppOutAudit">
<component :is="currentPage" v-bind="$props"/>
</section>
</template>
<style scoped lang="scss">
.AppSellAudit {
.AppOutAudit {
height: 100%;
}
</style>