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

View File

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