From 13eac5a3ac7e9d19c0e318cc39551aced16f5007 Mon Sep 17 00:00:00 2001 From: qz_cx Date: Fri, 10 Oct 2025 10:20:02 +0800 Subject: [PATCH] Add Stroe component --- templates/front-project/src/App.vue | 3 + .../src/components/TableHeader.vue | 6 - .../src/views/dataViews/EnvTable.vue | 1 - .../src/views/dataViews/StoreTable.vue | 368 ++++++++++++++++++ .../src/views/dataViews/UnxibenchTable.vue | 1 - .../src/views/errorViews/ErrorList.vue | 6 +- 6 files changed, 376 insertions(+), 9 deletions(-) create mode 100644 templates/front-project/src/views/dataViews/StoreTable.vue diff --git a/templates/front-project/src/App.vue b/templates/front-project/src/App.vue index 10703d2..5075192 100644 --- a/templates/front-project/src/App.vue +++ b/templates/front-project/src/App.vue @@ -18,3 +18,6 @@ export default { }; + + diff --git a/templates/front-project/src/components/TableHeader.vue b/templates/front-project/src/components/TableHeader.vue index 76a4a54..a9c2804 100644 --- a/templates/front-project/src/components/TableHeader.vue +++ b/templates/front-project/src/components/TableHeader.vue @@ -14,7 +14,6 @@ {{ showAllData ? '隐藏数据' : '显示全部数据' }} 返回上一步 - 返回数据首页 修改数据 环境信息 stream @@ -201,11 +200,6 @@ export default { }); return foundZero ? 'warning' : 'success'; }, - goToHome() { - this.$nextTick(() => { - this.$router.push({path: '/storeData'}) - }) - }, goTo(name) { this.$router.push({ name: name, diff --git a/templates/front-project/src/views/dataViews/EnvTable.vue b/templates/front-project/src/views/dataViews/EnvTable.vue index 32feb45..f422c67 100644 --- a/templates/front-project/src/views/dataViews/EnvTable.vue +++ b/templates/front-project/src/views/dataViews/EnvTable.vue @@ -20,7 +20,6 @@ diff --git a/templates/front-project/src/views/dataViews/StoreTable.vue b/templates/front-project/src/views/dataViews/StoreTable.vue new file mode 100644 index 0000000..84e74c0 --- /dev/null +++ b/templates/front-project/src/views/dataViews/StoreTable.vue @@ -0,0 +1,368 @@ + + + + + + + + diff --git a/templates/front-project/src/views/dataViews/UnxibenchTable.vue b/templates/front-project/src/views/dataViews/UnxibenchTable.vue index e349c2c..3328fcb 100644 --- a/templates/front-project/src/views/dataViews/UnxibenchTable.vue +++ b/templates/front-project/src/views/dataViews/UnxibenchTable.vue @@ -160,7 +160,6 @@ export default { -- Gitee