mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-22 15:13:55 +08:00
463 lines
10 KiB
Vue
463 lines
10 KiB
Vue
<template>
|
|
<div class="welcome">
|
|
<HeaderBar />
|
|
|
|
<div class="operation-bar">
|
|
<h2 class="page-title">{{ $t('serverSideManager.pageTitle') }}</h2>
|
|
</div>
|
|
|
|
<div class="main-wrapper">
|
|
<div class="content-panel">
|
|
<div class="content-area">
|
|
<el-card class="params-card" shadow="never">
|
|
<el-table ref="paramsTable" :data="paramsList" class="transparent-table" v-loading="loading"
|
|
:element-loading-text="$t('serverSideManager.loading')" element-loading-spinner="el-icon-loading"
|
|
element-loading-background="rgba(255, 255, 255, 0.7)" :header-cell-class-name="headerCellClassName">
|
|
<el-table-column :label="$t('modelConfig.select')" align="center" width="120">
|
|
<template slot-scope="scope">
|
|
<el-checkbox v-model="scope.row.selected"></el-checkbox>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column :label="$t('serverSideManager.wsAddress')" prop="address" align="center"></el-table-column>
|
|
<el-table-column :label="$t('serverSideManager.operation')" prop="operator" align="center" show-overflow-tooltip>
|
|
<template slot-scope="scope">
|
|
<el-button size="medium" type="text" @click="emitAction(scope.row, actionMap.restart)">{{ $t('serverSideManager.restart') }}</el-button>
|
|
<el-button size="medium" type="text"
|
|
@click="emitAction(scope.row, actionMap.update_config)">{{ $t('serverSideManager.updateConfig') }}</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-card>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<el-footer>
|
|
<version-footer />
|
|
</el-footer>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Api from "@/apis/api";
|
|
import HeaderBar from "@/components/HeaderBar.vue";
|
|
import ParamDialog from "@/components/ParamDialog.vue";
|
|
import VersionFooter from "@/components/VersionFooter.vue";
|
|
import i18n from '@/i18n';
|
|
|
|
export default {
|
|
components: { HeaderBar, ParamDialog, VersionFooter },
|
|
data() {
|
|
return {
|
|
paramsList: [],
|
|
currentPage: 1,
|
|
loading: false,
|
|
pageSize: 10,
|
|
pageSizeOptions: [10, 20, 50, 100],
|
|
total: 0,
|
|
dialogVisible: false,
|
|
dialogTitle: '',
|
|
isAllSelected: false,
|
|
sensitive_keys: ["api_key", "personal_access_token", "access_token", "token", "secret", "access_key_secret", "secret_key"],
|
|
paramForm: {
|
|
id: null,
|
|
paramCode: "",
|
|
paramValue: "",
|
|
remark: ""
|
|
},
|
|
};
|
|
},
|
|
created() {
|
|
this.fetchParams();
|
|
},
|
|
mounted() {
|
|
this.dialogTitle = this.$t('paramManagement.addParam');
|
|
},
|
|
|
|
computed: {
|
|
pageCount() {
|
|
return Math.ceil(this.total / this.pageSize);
|
|
},
|
|
visiblePages() {
|
|
const pages = [];
|
|
const maxVisible = 3;
|
|
let start = Math.max(1, this.currentPage - 1);
|
|
let end = Math.min(this.pageCount, start + maxVisible - 1);
|
|
|
|
if (end - start + 1 < maxVisible) {
|
|
start = Math.max(1, end - maxVisible + 1);
|
|
}
|
|
|
|
for (let i = start; i <= end; i++) {
|
|
pages.push(i);
|
|
}
|
|
return pages;
|
|
},
|
|
actionMap() {
|
|
return {
|
|
restart: {
|
|
value: 'restart',
|
|
title: this.$t('serverSideManager.restartServer'),
|
|
message: this.$t('serverSideManager.confirmRestart'),
|
|
confirmText: this.$t('serverSideManager.restart'),
|
|
},
|
|
update_config: {
|
|
value: 'update_config',
|
|
title: this.$t('serverSideManager.updateConfigTitle'),
|
|
message: this.$t('serverSideManager.confirmUpdateConfig'),
|
|
confirmText: this.$t('serverSideManager.updateConfig'),
|
|
}
|
|
};
|
|
}
|
|
},
|
|
methods: {
|
|
handlePageSizeChange(val) {
|
|
this.pageSize = val;
|
|
this.currentPage = 1;
|
|
this.fetchParams();
|
|
},
|
|
fetchParams() {
|
|
this.loading = true;
|
|
Api.admin.getWsServerList(
|
|
{},
|
|
({ data }) => {
|
|
this.loading = false;
|
|
if (data.code === 0) {
|
|
this.paramsList = data.data.map(item => ({ address: item }));
|
|
this.total = data.data.length;
|
|
} else {
|
|
this.$message.error({
|
|
message: data.msg || this.$t('serverSideManager.getServerListFailed'),
|
|
showClose: true
|
|
});
|
|
}
|
|
}
|
|
);
|
|
},
|
|
emitAction(rowItem, actionItem) {
|
|
if (actionItem === undefined || rowItem.address === undefined) {
|
|
return;
|
|
}
|
|
// 弹开询问框
|
|
this.$confirm(actionItem.message, actionItem.title, {
|
|
confirmButtonText: actionItem.confirmText, // 确认按钮文本
|
|
cancelButtonText: this.$t('common.cancel') // 取消按钮文本
|
|
}).then(() => {
|
|
// 用户点击了确认按钮
|
|
Api.admin.sendWsServerAction({
|
|
targetWs: rowItem.address,
|
|
action: actionItem.value
|
|
}, ({ data }) => {
|
|
if (data.code !== 0) {
|
|
this.$message.error({
|
|
message: data.msg || this.$t('serverSideManager.operationFailed'),
|
|
showClose: true
|
|
});
|
|
return;
|
|
}
|
|
this.$message.success({
|
|
message: actionItem.value === 'restart' ? this.$t('serverSideManager.restartSuccess') : this.$t('serverSideManager.updateConfigSuccess'),
|
|
showClose: true
|
|
})
|
|
})
|
|
})
|
|
},
|
|
headerCellClassName({ columnIndex }) {
|
|
if (columnIndex === 0) {
|
|
return "custom-selection-header";
|
|
}
|
|
return "";
|
|
}
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.welcome {
|
|
min-width: 900px;
|
|
min-height: 506px;
|
|
height: 100vh;
|
|
display: flex;
|
|
position: relative;
|
|
flex-direction: column;
|
|
background-size: cover;
|
|
background: linear-gradient(to bottom right, #dce8ff, #e4eeff, #e6cbfd) center;
|
|
-webkit-background-size: cover;
|
|
-o-background-size: cover;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.main-wrapper {
|
|
// 顶部 63px 底部 35px 查询58px
|
|
height: calc(100vh - 63px - 35px - 58px);
|
|
margin: 0 22px;
|
|
border-radius: 15px;
|
|
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
|
|
position: relative;
|
|
background: rgba(237, 242, 255, 0.5);
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.operation-bar {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 16px 24px;
|
|
}
|
|
|
|
.page-title {
|
|
font-size: 24px;
|
|
margin: 0;
|
|
}
|
|
|
|
.right-operations {
|
|
display: flex;
|
|
gap: 10px;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.search-input {
|
|
width: 240px;
|
|
}
|
|
|
|
.btn-search {
|
|
background: linear-gradient(135deg, #6b8cff, #a966ff);
|
|
border: none;
|
|
color: white;
|
|
}
|
|
|
|
.content-panel {
|
|
flex: 1;
|
|
display: flex;
|
|
overflow: hidden;
|
|
height: 100%;
|
|
border-radius: 15px;
|
|
background: transparent;
|
|
border: 1px solid #fff;
|
|
}
|
|
|
|
.content-area {
|
|
flex: 1;
|
|
height: 100%;
|
|
min-width: 600px;
|
|
overflow: auto;
|
|
background-color: white;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.params-card {
|
|
background: white;
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
border: none;
|
|
box-shadow: none;
|
|
overflow: hidden;
|
|
|
|
::v-deep .el-card__body {
|
|
padding: 15px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
|
|
.table_bottom {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-top: 10px;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.ctrl_btn {
|
|
display: flex;
|
|
gap: 8px;
|
|
padding-left: 26px;
|
|
|
|
.el-button {
|
|
min-width: 72px;
|
|
height: 32px;
|
|
padding: 7px 12px 7px 10px;
|
|
font-size: 12px;
|
|
border-radius: 4px;
|
|
line-height: 1;
|
|
font-weight: 500;
|
|
border: none;
|
|
transition: all 0.3s ease;
|
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
|
|
|
|
&:hover {
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
|
|
}
|
|
}
|
|
|
|
.el-button--primary {
|
|
background: #5f70f3;
|
|
color: white;
|
|
}
|
|
|
|
.el-button--danger {
|
|
background: #fd5b63;
|
|
color: white;
|
|
}
|
|
}
|
|
|
|
:deep(.transparent-table) {
|
|
background: white;
|
|
flex: 1;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.el-table__body-wrapper {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
max-height: none !important;
|
|
}
|
|
|
|
.el-table__header-wrapper {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.el-table__header th {
|
|
background: white !important;
|
|
color: black;
|
|
}
|
|
|
|
&::before {
|
|
display: none;
|
|
}
|
|
|
|
.el-table__body tr {
|
|
background-color: white;
|
|
|
|
td {
|
|
border-top: 1px solid rgba(0, 0, 0, 0.04);
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.04);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
:deep(.el-checkbox__inner) {
|
|
background-color: #ffffff !important;
|
|
border-color: #cccccc !important;
|
|
}
|
|
|
|
:deep(.el-checkbox__inner:hover) {
|
|
border-color: #cccccc !important;
|
|
}
|
|
|
|
:deep(.el-checkbox__input.is-checked .el-checkbox__inner) {
|
|
background-color: #5f70f3 !important;
|
|
border-color: #5f70f3 !important;
|
|
}
|
|
|
|
@media (min-width: 1144px) {
|
|
.table_bottom {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-top: 40px;
|
|
}
|
|
|
|
:deep(.transparent-table) {
|
|
.el-table__body tr {
|
|
td {
|
|
padding-top: 16px;
|
|
padding-bottom: 16px;
|
|
}
|
|
|
|
&+tr {
|
|
margin-top: 10px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
:deep(.el-table .el-button--text) {
|
|
color: #7079aa;
|
|
}
|
|
|
|
:deep(.el-table .el-button--text:hover) {
|
|
color: #5a64b5;
|
|
}
|
|
|
|
.el-button--success {
|
|
background: #5bc98c;
|
|
color: white;
|
|
}
|
|
|
|
:deep(.el-table .cell) {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.page-size-select {
|
|
width: 100px;
|
|
margin-right: 10px;
|
|
|
|
:deep(.el-input__inner) {
|
|
height: 32px;
|
|
line-height: 32px;
|
|
border-radius: 4px;
|
|
border: 1px solid #e4e7ed;
|
|
background: #dee7ff;
|
|
color: #606266;
|
|
font-size: 14px;
|
|
}
|
|
|
|
:deep(.el-input__suffix) {
|
|
right: 6px;
|
|
width: 15px;
|
|
height: 20px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
top: 6px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
:deep(.el-input__suffix-inner) {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
}
|
|
|
|
:deep(.el-icon-arrow-up:before) {
|
|
content: "";
|
|
display: inline-block;
|
|
border-left: 6px solid transparent;
|
|
border-right: 6px solid transparent;
|
|
border-top: 9px solid #606266;
|
|
position: relative;
|
|
transform: rotate(0deg);
|
|
transition: transform 0.3s;
|
|
}
|
|
}
|
|
|
|
:deep(.el-table) {
|
|
.el-table__body-wrapper {
|
|
transition: height 0.3s ease;
|
|
}
|
|
}
|
|
|
|
.el-table {
|
|
--table-max-height: calc(100vh - 40vh);
|
|
max-height: var(--table-max-height);
|
|
|
|
.el-table__body-wrapper {
|
|
max-height: calc(var(--table-max-height) - 40px);
|
|
overflow-y: auto;
|
|
}
|
|
}
|
|
</style>
|