This commit is contained in:
2023-11-06 18:47:50 +08:00
4 changed files with 8 additions and 6 deletions

View File

@@ -11,7 +11,7 @@ VITE_APP_NAME = "核心网管理平台"
VITE_APP_CODE = "CoreNet"
# 应用版本
VITE_APP_VERSION = "2.2311.7.1106"
VITE_APP_VERSION = "2.231106.7"
# 接口基础URL地址-不带/后缀
VITE_API_BASE_URL = "/omc-api"

View File

@@ -208,7 +208,7 @@ document.addEventListener('visibilitychange', function () {
</template>
<template v-if="appStore.logoType === 'brand'">
<img
:class="{ 'logo-brand': proConfig.layout !== 'side' }"
class="logo-brand"
:src="appStore.getLOGOBrand"
:alt="appStore.appName"
:title="appStore.appName"

View File

@@ -83,6 +83,8 @@ function fnTabActiveTopTag(key: string | number) {
.finally(() => {
tableState.arrayNewIndex = -1;
tableState.editRecord = {};
tableState.arrayChildNewIndex = -1;
tableState.arrayChildEditRecord = {};
tableState.loading = false;
});
}

View File

@@ -38,11 +38,11 @@ function fnBeforeUpload(file: FileType) {
if (!isJpgOrPng) {
message.error('只支持上传图片格式jpg、png、svg、webp', 3);
}
const isLt2M = file.size / 1024 / 1024 < 2;
if (!isLt2M) {
message.error('图片文件大小必须小于 2MB', 3);
const isLt10M = file.size / 1024 / 1024 < 10;
if (!isLt10M) {
message.error('图片文件大小必须小于 10MB', 3);
}
return isJpgOrPng && isLt2M;
return isJpgOrPng && isLt10M;
}
/**上传变更 */