Compare commits

..

No commits in common. "5775ba365b29ca817525e687f15ffa29df3d8bf3" and "8b9e0bc03f3df58253c8841851c36203df3cf54c" have entirely different histories.

8 changed files with 10243 additions and 10286 deletions

View File

@ -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>gisbi</artifactId>
<artifactId>core</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

View File

@ -6,7 +6,6 @@ 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'
@ -28,9 +27,7 @@ const setupAll = async () => {
setupElementPlus(app)
setupCustomComponent(app)
setupElementPlusIcons(app)
app.use(WebSocketPlugin).use(FcDesigner).use(ElementPlus, {
locale: zhCn,
})
app.use(WebSocketPlugin).use(FcDesigner).use(ElementPlus)
app.mount('#app')
}

View File

@ -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: {

View File

@ -13,7 +13,7 @@
import { onMounted, ref } from 'vue';
import { ElMessage } from 'element-plus-secondary'
import formCreate from '@/fcDesignerPro/render/element-plus/form-create.es.js'
import formCreate from "@form-create/element-ui";
import { useRoute } from 'vue-router'
import { moduleById,moduleUpdate } from '@/api/application/module'
const basePath = import.meta.env.VITE_API_BASEPATH