diff --git a/build/constant.ts b/build/constant.ts index 38ff0454..1d033f12 100644 --- a/build/constant.ts +++ b/build/constant.ts @@ -1,3 +1,4 @@ +import path from 'path' export const OUTPUT_DIR = 'dist' // monaco-editor 路径 @@ -6,7 +7,7 @@ export const prefix = `monaco-editor/esm/vs` // chunk 警告大小 export const chunkSizeWarningLimit = 2000 -// 禁用 brotli 压缩大小报告 +// 禁用 brotliSize 压缩大小报告 export const brotliSize = false // 分包 @@ -14,7 +15,12 @@ export const rollupOptions = { output: { chunkFileNames: 'static/js/[name]-[hash].js', entryFileNames: 'static/js/[name]-[hash].js', - assetFileNames: 'static/[ext]/[name]-[hash].[ext]', + assetFileNames: (chunkInfo) => { + if(['.png', '.jpg', '.jpeg'].includes(path.extname(chunkInfo.name))) { + return `static/[ext]/[name].[ext]` + } + return `static/[ext]/[name]-[hash].[ext]` + }, manualChunks: { jsonWorker: [`${prefix}/language/json/json.worker`], cssWorker: [`${prefix}/language/css/css.worker`], diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 682a81c7..9fa763c3 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -3074,7 +3074,7 @@ packages: source-map: 0.6.1 wordwrap: 1.0.0 optionalDependencies: - uglify-js: 3.16.0 + uglify-js: 3.17.4 dev: true /hard-rejection/2.1.0: @@ -5014,8 +5014,8 @@ packages: hasBin: true dev: true - /uglify-js/3.16.0: - resolution: {integrity: sha512-FEikl6bR30n0T3amyBh3LoiBdqHRy/f4H80+My34HOesOKyHfOsxAPAxOoqC0JUnC1amnO0IwkYC3sko51caSw==} + /uglify-js/3.17.4: + resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} engines: {node: '>=0.8.0'} hasBin: true requiresBuild: true diff --git a/src/api/http.ts b/src/api/http.ts index 83cc1183..a122d603 100644 --- a/src/api/http.ts +++ b/src/api/http.ts @@ -116,7 +116,6 @@ export const customizeHttp = (targetParams: RequestConfigType, globalParams: Req if (!targetParams || !globalParams) { return } - // 全局 const { // 全局请求源地址 diff --git a/src/assets/images/canvas/noData.png b/src/assets/images/canvas/noData.png new file mode 100644 index 00000000..d65bc8ed Binary files /dev/null and b/src/assets/images/canvas/noData.png differ diff --git a/src/components/GoSystemInfo/index.vue b/src/components/GoSystemInfo/index.vue index 5073c8b9..d38c1e03 100644 --- a/src/components/GoSystemInfo/index.vue +++ b/src/components/GoSystemInfo/index.vue @@ -42,15 +42,21 @@ diff --git a/src/packages/components/Decorates/Mores/FlipperNumber/index.ts b/src/packages/components/Decorates/Mores/FlipperNumber/index.ts index 16aa2137..b4fce9cd 100644 --- a/src/packages/components/Decorates/Mores/FlipperNumber/index.ts +++ b/src/packages/components/Decorates/Mores/FlipperNumber/index.ts @@ -6,7 +6,7 @@ export const FlipperNumberConfig: ConfigType = { key: 'FlipperNumber', chartKey: 'VFlipperNumber', conKey: 'VCFlipperNumber', - title: '数字翻牌', + title: '数字翻牌-需动态触发', category: ChatCategoryEnum.MORE, categoryName: ChatCategoryEnumName.MORE, package: PackagesCategoryEnum.DECORATES, diff --git a/src/packages/public/publicConfig.ts b/src/packages/public/publicConfig.ts index ab85be64..49dda2b0 100644 --- a/src/packages/public/publicConfig.ts +++ b/src/packages/public/publicConfig.ts @@ -20,7 +20,7 @@ import { chartInitConfig } from '@/settings/designSetting' import cloneDeep from 'lodash/cloneDeep' // 请求基础属性 -const requestConfig: RequestConfigType = { +export const requestConfig: RequestConfigType = { requestDataType: RequestDataTypeEnum.STATIC, requestHttpType: RequestHttpEnum.GET, requestUrl: '', diff --git a/src/plugins/naive.ts b/src/plugins/naive.ts index 9354a285..ab4dbb1f 100644 --- a/src/plugins/naive.ts +++ b/src/plugins/naive.ts @@ -7,6 +7,7 @@ import { NH2, NH3, NH4, + NH5, NCode, NCountdown, NText, @@ -109,6 +110,7 @@ const naive = create({ NH2, NH3, NH4, + NH5, NCode, NCountdown, NText, diff --git a/src/views/chart/ContentCharts/components/ChartsItemBox/index.vue b/src/views/chart/ContentCharts/components/ChartsItemBox/index.vue index e87e0bf6..655fe824 100644 --- a/src/views/chart/ContentCharts/components/ChartsItemBox/index.vue +++ b/src/views/chart/ContentCharts/components/ChartsItemBox/index.vue @@ -1,35 +1,41 @@ diff --git a/src/views/chart/ContentConfigurations/components/ChartAnimation/index.vue b/src/views/chart/ContentConfigurations/components/ChartAnimation/index.vue index b4b716fc..76143958 100644 --- a/src/views/chart/ContentConfigurations/components/ChartAnimation/index.vue +++ b/src/views/chart/ContentConfigurations/components/ChartAnimation/index.vue @@ -1,7 +1,7 @@