Compare commits

..

3 Commits

Author SHA1 Message Date
longguancheng
d3ab2f2278 Merge branch 'refs/heads/main' into dev_20260130_RemoveRedis 2026-02-08 23:58:14 +08:00
Bingkun Li
d7af94032b Change button color and hint message 2026-02-06 15:58:32 +08:00
Bingkun Li
5623ddf0e8 Change icons for turnon sar and end all jobs 2026-02-06 15:45:02 +08:00
2 changed files with 6 additions and 6 deletions

View File

@ -134,7 +134,7 @@ export default {
} }
}) })
} else if (type === 2) { } else if (type === 2) {
const bool = await this.$confirm(`确认要关机吗?`, '提示', { const bool = await this.$confirm(`确认要结束所有任务吗?`, '提示', {
customClass: 'confirm-light', customClass: 'confirm-light',
confirmButtonText: '确定', confirmButtonText: '确定',
cancelButtonText: '取消', cancelButtonText: '取消',

View File

@ -114,12 +114,11 @@
<el-tooltip <el-tooltip
class="item" class="item"
effect="light" effect="light"
content="开机" content="手动开机"
placement="top" placement="top"
> >
<el-button <el-button
type="success" icon="el-icon-switch-button"
icon="el-icon-video-play"
size="mini" size="mini"
circle circle
@click="handleRadar(scope.row, 1)" @click="handleRadar(scope.row, 1)"
@ -129,11 +128,12 @@
<el-tooltip <el-tooltip
class="item" class="item"
effect="light" effect="light"
content="关机" content="结束所有任务"
placement="top" placement="top"
> >
<el-button <el-button
icon="el-icon-switch-button" type="danger"
icon="el-icon-close"
size="mini" size="mini"
circle circle
@click="handleRadar(scope.row, 2)" @click="handleRadar(scope.row, 2)"