Merge remote-tracking branch 'origin/main' into lichang
This commit is contained in:
@@ -11,7 +11,7 @@ VITE_APP_NAME = "Core Network EMS"
|
|||||||
VITE_APP_CODE = "CN EMS"
|
VITE_APP_CODE = "CN EMS"
|
||||||
|
|
||||||
# 应用版本
|
# 应用版本
|
||||||
VITE_APP_VERSION = "2.240330.1"
|
VITE_APP_VERSION = "2.240418.1"
|
||||||
|
|
||||||
# 接口基础URL地址-不带/后缀
|
# 接口基础URL地址-不带/后缀
|
||||||
VITE_API_BASE_URL = "/omc-api"
|
VITE_API_BASE_URL = "/omc-api"
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ VITE_APP_NAME = "Core Network EMS"
|
|||||||
VITE_APP_CODE = "CN EMS"
|
VITE_APP_CODE = "CN EMS"
|
||||||
|
|
||||||
# 应用版本
|
# 应用版本
|
||||||
VITE_APP_VERSION = "2.240330.1"
|
VITE_APP_VERSION = "2.240418.1"
|
||||||
|
|
||||||
# 接口基础URL地址-不带/后缀
|
# 接口基础URL地址-不带/后缀
|
||||||
VITE_API_BASE_URL = "/omc-api"
|
VITE_API_BASE_URL = "/omc-api"
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ function fnTableColumnsCheckAllChange(e: any) {
|
|||||||
/**表格字段列拖拽操作 */
|
/**表格字段列拖拽操作 */
|
||||||
function fnTableColumnsDrop(dropResult: any) {
|
function fnTableColumnsDrop(dropResult: any) {
|
||||||
const { removedIndex, addedIndex, payload } = dropResult;
|
const { removedIndex, addedIndex, payload } = dropResult;
|
||||||
if (!removedIndex || !addedIndex) {
|
if (removedIndex === null || addedIndex === null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
let itemToAdd = payload;
|
let itemToAdd = payload;
|
||||||
@@ -184,6 +184,7 @@ onMounted(() => {
|
|||||||
<a-button
|
<a-button
|
||||||
v-if="c.fixed !== undefined"
|
v-if="c.fixed !== undefined"
|
||||||
size="small"
|
size="small"
|
||||||
|
:title="c.fixed ? `Fixed ${c.fixed} side` : ''"
|
||||||
:type="c.fixed ? 'primary' : 'dashed'"
|
:type="c.fixed ? 'primary' : 'dashed'"
|
||||||
@click="fnTableColumnsFixed(c)"
|
@click="fnTableColumnsFixed(c)"
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ const useAppStore = defineStore('app', {
|
|||||||
loginBackground: '',
|
loginBackground: '',
|
||||||
helpDoc: '',
|
helpDoc: '',
|
||||||
officialUrl: '',
|
officialUrl: '',
|
||||||
i18nOpen: true,
|
i18nOpen: false,
|
||||||
i18nDefault: 'en_US',
|
i18nDefault: 'en_US',
|
||||||
}),
|
}),
|
||||||
getters: {},
|
getters: {},
|
||||||
|
|||||||
Reference in New Issue
Block a user