components(xumu): 在 AppDeathAudit 和 AppOutAudit 组件中添加 AiAudit 组件引用

- 在 AppDeathAudit/add.vue 中引入并注册 AiAudit 组件
- 在 AppOutAudit/add.vue 中引入并注册 AiAudit 组件
This commit is contained in:
aixianling
2025-01-21 10:36:10 +08:00
parent ebb28ed676
commit 4b26e6f5d0
2 changed files with 4 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
<script>
import { mapState } from "vuex"
import AiAudit from "../components/AiAudit.vue";
export default {
name: "deathAdd",
@@ -13,6 +14,7 @@ export default {
detail: { detailList: [] }
}
},
components:{AiAudit},
computed: {
...mapState(["user"]),
userinfo: v => v.user.info || {},

View File

@@ -1,5 +1,6 @@
<script>
import { mapState } from "vuex"
import AiAudit from "../components/AiAudit.vue";
export default {
name: "oaAdd",
@@ -8,6 +9,7 @@ export default {
permissions: Function,
dict: Object
},
components:{AiAudit},
data() {
return {
detail: { detailList: [] }