components(xumu): 在 AppDeathAudit 和 AppOutAudit 组件中添加 AiAudit 组件引用
- 在 AppDeathAudit/add.vue 中引入并注册 AiAudit 组件 - 在 AppOutAudit/add.vue 中引入并注册 AiAudit 组件
This commit is contained in:
@@ -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 || {},
|
||||||
|
|||||||
@@ -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: [] }
|
||||||
|
|||||||
Reference in New Issue
Block a user