Compare commits
2 Commits
8b9e0bc03f
...
5775ba365b
Author | SHA1 | Date | |
---|---|---|---|
5775ba365b | |||
9269665e0a |
@ -3,7 +3,7 @@
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<parent>
|
||||
<artifactId>core</artifactId>
|
||||
<artifactId>gisbi</artifactId>
|
||||
<groupId>io.gisbi</groupId>
|
||||
<version>1.0.0</version>
|
||||
</parent>
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
@ -6,6 +6,7 @@ import App from './App.vue'
|
||||
import FcDesigner from '@/fcDesignerPro/index.es.js'
|
||||
|
||||
import ElementPlus from 'element-plus';
|
||||
import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
|
||||
import 'element-plus/theme-chalk/index.css';
|
||||
import { setupI18n } from '@/plugins/vue-i18n'
|
||||
import { setupStore } from '@/store'
|
||||
@ -27,7 +28,9 @@ const setupAll = async () => {
|
||||
setupElementPlus(app)
|
||||
setupCustomComponent(app)
|
||||
setupElementPlusIcons(app)
|
||||
app.use(WebSocketPlugin).use(FcDesigner).use(ElementPlus)
|
||||
app.use(WebSocketPlugin).use(FcDesigner).use(ElementPlus, {
|
||||
locale: zhCn,
|
||||
})
|
||||
app.mount('#app')
|
||||
}
|
||||
|
||||
|
@ -11,9 +11,9 @@
|
||||
|
||||
<script lang="ts" setup>
|
||||
import {onMounted,ref,watch} from "vue";
|
||||
import formCreate from "@form-create/element-ui";
|
||||
// import formCreate from "@form-create/element-ui";
|
||||
import { moduleById } from '@/api/application/module'
|
||||
|
||||
import formCreate from '@/fcDesignerPro/render/element-plus/form-create.es.js'
|
||||
const moduleInfo:any = ref({})
|
||||
const props:any = defineProps({
|
||||
moduleInfo: {
|
||||
|
@ -13,7 +13,7 @@
|
||||
import { onMounted, ref } from 'vue';
|
||||
import { ElMessage } from 'element-plus-secondary'
|
||||
|
||||
import formCreate from "@form-create/element-ui";
|
||||
import formCreate from '@/fcDesignerPro/render/element-plus/form-create.es.js'
|
||||
import { useRoute } from 'vue-router'
|
||||
import { moduleById,moduleUpdate } from '@/api/application/module'
|
||||
const basePath = import.meta.env.VITE_API_BASEPATH
|
||||
|
Loading…
Reference in New Issue
Block a user