From e732f79fb39ca207464705308c9ee2deb3a79307 Mon Sep 17 00:00:00 2001 From: hcong <1050828145@qq.com> Date: 星期二, 03 十二月 2024 11:21:41 +0800 Subject: [PATCH] 后台任务状态实时刷新同步后台更改 1. startTime和endTime对象结构修改 2. runTime根据后端逻辑生成runTime --- src/App.vue | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/App.vue b/src/App.vue index 05d5a06..3f44321 100644 --- a/src/App.vue +++ b/src/App.vue @@ -21,9 +21,9 @@ <Content></Content> <!-- <el-backtop target=".el-main .el-scrollbar__wrap" - :right="40" + :right="10" :bottom="100" - style="width: 120px;z-index: 1000;" + style="z-index: 1000;" > <div class="back-top"> <el-icon><ArrowUpBold /></el-icon> @@ -40,13 +40,13 @@ <script> import zhCn from 'element-plus/dist/locale/zh-cn.mjs'; - export default { data() { return { isCollapsed: false, navTitles: [], locale: zhCn, + socket: null, }; }, methods: { @@ -56,7 +56,7 @@ navPage(titles) { this.navTitles = titles; }, - }, + } }; </script> -- Gitblit v1.9.3