diff --git a/.env.development b/.env.development index 2c3d5f1b..aafdecb5 100644 --- a/.env.development +++ b/.env.development @@ -11,7 +11,7 @@ VITE_APP_NAME = "Core Network EMS" VITE_APP_CODE = "CN EMS" # 应用版本 -VITE_APP_VERSION = "2.240330.1" +VITE_APP_VERSION = "2.240418.1" # 接口基础URL地址-不带/后缀 VITE_API_BASE_URL = "/omc-api" diff --git a/.env.production b/.env.production index 9b719864..4e7562ef 100644 --- a/.env.production +++ b/.env.production @@ -11,7 +11,7 @@ VITE_APP_NAME = "Core Network EMS" VITE_APP_CODE = "CN EMS" # 应用版本 -VITE_APP_VERSION = "2.240330.1" +VITE_APP_VERSION = "2.240418.1" # 接口基础URL地址-不带/后缀 VITE_API_BASE_URL = "/omc-api" diff --git a/src/components/TableColumnsDnd/index.vue b/src/components/TableColumnsDnd/index.vue index e4a3ab30..c1433926 100644 --- a/src/components/TableColumnsDnd/index.vue +++ b/src/components/TableColumnsDnd/index.vue @@ -62,7 +62,7 @@ function fnTableColumnsCheckAllChange(e: any) { /**表格字段列拖拽操作 */ function fnTableColumnsDrop(dropResult: any) { const { removedIndex, addedIndex, payload } = dropResult; - if (!removedIndex || !addedIndex) { + if (removedIndex === null || addedIndex === null) { return; } let itemToAdd = payload; @@ -184,6 +184,7 @@ onMounted(() => { diff --git a/src/store/modules/app.ts b/src/store/modules/app.ts index 2eb5b5a8..e29f6a86 100644 --- a/src/store/modules/app.ts +++ b/src/store/modules/app.ts @@ -57,7 +57,7 @@ const useAppStore = defineStore('app', { loginBackground: '', helpDoc: '', officialUrl: '', - i18nOpen: true, + i18nOpen: false, i18nDefault: 'en_US', }), getters: {},