wujianwei
2025-12-24 faa02fa3487f765a03d3fc7e63c9be57ddd42c9e
ui/admin-ui3/src/main.ts
@@ -23,15 +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)
@@ -57,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')