From 05c8eba11c51ca928eee9c041de1a4192e590aec Mon Sep 17 00:00:00 2001
From: nianjiuhuiyi <64776403+nianjiuhuiyi@users.noreply.github.com>
Date: 星期五, 27 六月 2025 09:57:45 +0800
Subject: [PATCH] Fix: 修复c++后端服务因为空数组的异常退出,以及c++的http服务在收到Ctrl+C信号后无法正常退出 (#2571)
---
web-pages/src/views/app/index.vue | 19 +------------------
1 files changed, 1 insertions(+), 18 deletions(-)
diff --git a/web-pages/src/views/app/index.vue b/web-pages/src/views/app/index.vue
index 44e067c..a06a853 100644
--- a/web-pages/src/views/app/index.vue
+++ b/web-pages/src/views/app/index.vue
@@ -2,10 +2,6 @@
<a-config-provider :locale="locale">
<div
class="app-container"
- v-uiloading="isLoading"
- :ui-loading-text="loadingText"
- :ui-loading-spinner="loadingSpinner"
- :ui-loading-background="loadingBackground"
>
<div class="app-content" ref="app-content">
<ui-scrollbar class="app-content-scrollbar" style="height: 100%;" :childOverWidth="false" :wrapStyle="[{ overflowX: 'hidden' }]">
@@ -28,20 +24,7 @@
contentMinHeight: 0
}
},
- computed: {
- isLoading () {
- return this.$store.state.common.isLoading
- },
- loadingText () {
- return this.$store.state.common.loadingText
- },
- loadingSpinner () {
- return this.$store.state.common.loadingSpinner
- },
- loadingBackground () {
- return this.$store.state.common.loadingBackground
- }
- },
+ computed: {},
beforeCreate () {
const setHtmlFontSize = function () {
const deviceWidth =
--
Gitblit v1.9.1