wujianwei
2026-01-14 9274558ec37f5d46a182d6ed13d74717df2dfd1a
ui/admin-ui3/src/main.ts
@@ -23,19 +23,22 @@
const app = createApp(App);
app.use(pinia)
import Pagination from '@/components/Pagination/index.vue'
import DictTag from "/src/components/DictTag/index.vue";
import FileUpload from "/src/components/FileUpload/index.vue";
import basicContainer from '/src/components/basic-container/main.vue';
import flowLog from './components/flowLog/index.vue';
// 通用导入组件
import XlsFileImport from "@/components/XlsFileImport/index.vue"
import SvgIcon from "/src/components/SvgIcon/index.vue";
app.component("DictTag", DictTag);
app.component('Pagination', Pagination);
app.component('FileUpload', FileUpload);
app.component('basicContainer', basicContainer)
app.component('XlsFileImport', XlsFileImport);
app.component('flowLog', flowLog)
app.component('svg-icon', SvgIcon)
@@ -61,13 +64,19 @@
        viewBtn: true,
        selection: true,
        searchSpan: 5,
        height: 600,
        props: {
            label: 'dictLabel',
            value: 'dictValue'
        },
        searchMenuSpan: 4,
    },
    formOption:{
        props: {
            label: 'dictLabel',
            value: 'dictValue'
        },
    }
})
app.mount('#app')