refactor(xumu): 移除 AppInsuranceApply 组件中的 AiCard 引用

- 删除了 AiCard 组件的导入语句- 从 components 中移除了 AiCard 的注册

这个改动减少了组件的依赖,如果页面中没有使用 AiCard,这个改动是有益的。如果有使用 AiCard,需要检查并恢复相关功能。
This commit is contained in:
aixianling
2024-12-31 10:46:01 +08:00
parent 230f8c3b80
commit e283d6a650

View File

@@ -1,7 +1,6 @@
<script>
import {mapState} from "vuex"
import AiEartagPicker from "@project/xumu/components/AiEartagPicker.vue";
import AiCard from "dui/packages/layout/AiCard.vue";
const columns = [
{label: "序号", type: "index"},
@@ -18,7 +17,7 @@ const formImages = [
]
export default {
name: "iaAdd",
components: {AiCard, AiEartagPicker},
components: {AiEartagPicker},
props: {
instance: Function,
permissions: Function,