mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-22 07:03:53 +08:00
@@ -31,6 +31,7 @@ export default {
|
||||
transition: all 0.3s ease;
|
||||
|
||||
&.el-button--small {
|
||||
padding: 10px;
|
||||
font-size: 14px;
|
||||
}
|
||||
&.el-button--medium {
|
||||
@@ -91,7 +92,7 @@ export default {
|
||||
|
||||
.custom-button--delete {
|
||||
width: fit-content;
|
||||
background: linear-gradient(to right, #ff6b6b, #ff8e8e);
|
||||
background: #ff6b6b;
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 6px;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div class="custom-table-wrapper">
|
||||
<div class="table-container">
|
||||
<div class="table-container" :style="{ height: tableContainerHeight }">
|
||||
<el-table
|
||||
ref="tableRef"
|
||||
:data="data"
|
||||
@@ -79,10 +79,9 @@
|
||||
</div>
|
||||
|
||||
<!-- 分页 -->
|
||||
<div class="table-footer">
|
||||
<div class="table-footer" v-if="showPagination">
|
||||
<slot name="footer-btns"></slot>
|
||||
<CustomPagination
|
||||
v-if="showPagination"
|
||||
:total="total"
|
||||
:current-page="currentPage"
|
||||
:page-size="pageSize"
|
||||
@@ -182,26 +181,13 @@ export default {
|
||||
type: [String, Function],
|
||||
default: ''
|
||||
},
|
||||
// 敏感值相关
|
||||
hideText: {
|
||||
type: String,
|
||||
default: '隐藏'
|
||||
},
|
||||
viewText: {
|
||||
type: String,
|
||||
default: '查看'
|
||||
},
|
||||
computed: {
|
||||
tableContainerHeight() {
|
||||
return this.showPagination ? 'calc(100% - 48px)' : '100%';
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
// 掩码处理
|
||||
maskValue(value) {
|
||||
if (!value) return '';
|
||||
return '*'.repeat(Math.min(value.length, 8));
|
||||
},
|
||||
// 切换显示/隐藏
|
||||
toggleValue(row, prop) {
|
||||
this.$set(row, 'showValue', !row.showValue);
|
||||
},
|
||||
// 复选框变化
|
||||
handleCheckboxChange(row) {
|
||||
this.$set(row, 'selected', !row.selected);
|
||||
@@ -221,10 +207,6 @@ export default {
|
||||
handleRowClick(row, column, event) {
|
||||
this.$emit('row-click', row, column, event);
|
||||
},
|
||||
// 获取表格实例
|
||||
getTable() {
|
||||
return this.$refs.tableRef;
|
||||
},
|
||||
// 清除选择
|
||||
clearSelection() {
|
||||
this.$refs.tableRef && this.$refs.tableRef.clearSelection();
|
||||
@@ -244,7 +226,6 @@ export default {
|
||||
flex-direction: column;
|
||||
min-height: 0;
|
||||
.table-container {
|
||||
height: calc(100% - 48px);
|
||||
width: 100%;
|
||||
box-shadow: 0 2px 12px rgba(74, 124, 253, 0.12);
|
||||
border-radius: 6px;
|
||||
|
||||
@@ -1,116 +1,117 @@
|
||||
<template>
|
||||
<el-dialog :title="title" :visible.sync="dialogVisible" width="30%" @close="handleClose">
|
||||
<el-form :model="form" :rules="rules" ref="form" label-width="auto">
|
||||
<el-form-item :label="$t('dictDataDialog.dictLabel')" prop="dictLabel">
|
||||
<el-input v-model="form.dictLabel" :placeholder="$t('dictDataDialog.dictLabelPlaceholder')"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item :label="$t('dictDataDialog.dictValue')" prop="dictValue">
|
||||
<el-input v-model="form.dictValue" :placeholder="$t('dictDataDialog.dictValuePlaceholder')"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item :label="$t('dictDataDialog.sort')" prop="sort">
|
||||
<el-input-number v-model="form.sort" :min="0" :max="999" style="width: 100%;"></el-input-number>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button @click="handleClose">{{ $t('button.cancel') }}</el-button>
|
||||
<el-button type="primary" @click="handleSave">{{ $t('button.save') }}</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
<CustomDialog
|
||||
:title="title"
|
||||
:visible.sync="dialogVisible"
|
||||
width="600px"
|
||||
@confirm="submit"
|
||||
@close="cancel"
|
||||
:confirmLoading="saving"
|
||||
>
|
||||
<el-form :model="form" :rules="rules" ref="form" label-width="auto" label-position="left">
|
||||
<el-form-item :label="$t('dictDataDialog.dictLabel')" prop="dictLabel" class="form-item">
|
||||
<el-input v-model="form.dictLabel" :placeholder="$t('dictDataDialog.dictLabelPlaceholder')" />
|
||||
</el-form-item>
|
||||
<el-form-item :label="$t('dictDataDialog.dictValue')" prop="dictValue" class="form-item">
|
||||
<el-input v-model="form.dictValue" :placeholder="$t('dictDataDialog.dictValuePlaceholder')" />
|
||||
</el-form-item>
|
||||
<el-form-item :label="$t('dictDataDialog.sort')" prop="sort" class="form-item">
|
||||
<el-input-number v-model="form.sort" :min="0" :max="999" class="custom-input-number"></el-input-number>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</CustomDialog>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import CustomDialog from './CustomDialog.vue';
|
||||
export default {
|
||||
name: 'DictDataDialog',
|
||||
props: {
|
||||
visible: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
title: {
|
||||
type: String,
|
||||
default: () => this.$t('dictDataDialog.addDictData')
|
||||
},
|
||||
dictData: {
|
||||
type: Object,
|
||||
default: () => ({})
|
||||
},
|
||||
dictTypeId: {
|
||||
type: [Number, String],
|
||||
default: null
|
||||
}
|
||||
name: 'DictDataDialog',
|
||||
props: {
|
||||
visible: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
dialogVisible: this.visible,
|
||||
form: {
|
||||
id: null,
|
||||
dictTypeId: null,
|
||||
dictLabel: '',
|
||||
dictValue: '',
|
||||
sort: 0
|
||||
},
|
||||
rules: {
|
||||
dictLabel: [{ required: true, message: this.$t('dictDataDialog.requiredDictLabel'), trigger: 'blur' }],
|
||||
dictValue: [{ required: true, message: this.$t('dictDataDialog.requiredDictValue'), trigger: 'blur' }]
|
||||
}
|
||||
}
|
||||
title: {
|
||||
type: String,
|
||||
default: () => this.$t('dictDataDialog.addDictData')
|
||||
},
|
||||
watch: {
|
||||
dictData: {
|
||||
handler(val) {
|
||||
if (val) {
|
||||
this.form = { ...val }
|
||||
}
|
||||
},
|
||||
immediate: true
|
||||
},
|
||||
dictTypeId: {
|
||||
handler(val) {
|
||||
if (val) {
|
||||
this.form.dictTypeId = val
|
||||
}
|
||||
},
|
||||
immediate: true
|
||||
},
|
||||
visible(val) {
|
||||
this.dialogVisible = val;
|
||||
},
|
||||
dialogVisible(val) {
|
||||
this.$emit('update:visible', val);
|
||||
}
|
||||
dictData: {
|
||||
type: Object,
|
||||
default: () => ({})
|
||||
},
|
||||
methods: {
|
||||
handleClose() {
|
||||
this.dialogVisible = false;
|
||||
this.resetForm();
|
||||
},
|
||||
resetForm() {
|
||||
this.form = {
|
||||
id: null,
|
||||
dictTypeId: this.dictTypeId,
|
||||
dictLabel: '',
|
||||
dictValue: '',
|
||||
sort: 0
|
||||
}
|
||||
this.$refs.form?.resetFields()
|
||||
},
|
||||
handleSave() {
|
||||
this.$refs.form.validate(valid => {
|
||||
if (valid) {
|
||||
this.$emit('save', this.form)
|
||||
}
|
||||
})
|
||||
}
|
||||
dictTypeId: {
|
||||
type: [Number, String],
|
||||
default: null
|
||||
}
|
||||
}
|
||||
},
|
||||
components: {
|
||||
CustomDialog
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
dialogVisible: this.visible,
|
||||
saving: false,
|
||||
form: {
|
||||
id: null,
|
||||
dictTypeId: null,
|
||||
dictLabel: '',
|
||||
dictValue: '',
|
||||
sort: 0
|
||||
},
|
||||
rules: {
|
||||
dictLabel: [{ required: true, message: this.$t('dictDataDialog.requiredDictLabel'), trigger: 'blur' }],
|
||||
dictValue: [{ required: true, message: this.$t('dictDataDialog.requiredDictValue'), trigger: 'blur' }]
|
||||
}
|
||||
};
|
||||
},
|
||||
watch: {
|
||||
visible(val) {
|
||||
this.dialogVisible = val;
|
||||
},
|
||||
dialogVisible(val) {
|
||||
this.$emit('update:visible', val);
|
||||
if (!val) {
|
||||
this.saving = false;
|
||||
}
|
||||
},
|
||||
dictData: {
|
||||
handler(val) {
|
||||
if (val) {
|
||||
this.form = { ...val };
|
||||
}
|
||||
},
|
||||
immediate: true
|
||||
},
|
||||
dictTypeId: {
|
||||
handler(val) {
|
||||
if (val) {
|
||||
this.form.dictTypeId = val;
|
||||
}
|
||||
},
|
||||
immediate: true
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
submit() {
|
||||
this.$refs.form.validate((valid) => {
|
||||
if (valid) {
|
||||
this.saving = true;
|
||||
this.$emit('save', this.form);
|
||||
}
|
||||
});
|
||||
},
|
||||
cancel() {
|
||||
this.saving = false;
|
||||
this.$emit('cancel');
|
||||
},
|
||||
resetSaving() {
|
||||
this.saving = false;
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.dialog-footer {
|
||||
text-align: right;
|
||||
<style scoped lang="scss">
|
||||
.custom-input-number {
|
||||
width: 100%;
|
||||
}
|
||||
:deep(.el-dialog) {
|
||||
border-radius: 15px;
|
||||
}
|
||||
|
||||
</style>
|
||||
</style>
|
||||
|
||||
@@ -1,97 +1,94 @@
|
||||
<template>
|
||||
<el-dialog :title="title" :visible.sync="dialogVisible" width="30%" @close="handleClose">
|
||||
<el-form :model="form" :rules="rules" ref="form" label-width="auto">
|
||||
<el-form-item :label="$t('dictTypeDialog.dictName')" prop="dictName">
|
||||
<el-input v-model="form.dictName" :placeholder="$t('dictTypeDialog.dictNamePlaceholder')"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item :label="$t('dictTypeDialog.dictType')" prop="dictType">
|
||||
<el-input v-model="form.dictType" :placeholder="$t('dictTypeDialog.dictTypePlaceholder')"></el-input>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button @click="handleClose">{{ $t('button.cancel') }}</el-button>
|
||||
<el-button type="primary" @click="handleSave">{{ $t('button.save') }}</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
<CustomDialog
|
||||
:title="title"
|
||||
:visible.sync="dialogVisible"
|
||||
width="600px"
|
||||
@confirm="submit"
|
||||
@close="cancel"
|
||||
:confirmLoading="saving"
|
||||
>
|
||||
<el-form :model="form" :rules="rules" ref="form" label-width="auto" label-position="left">
|
||||
<el-form-item :label="$t('dictTypeDialog.dictName')" prop="dictName" class="form-item">
|
||||
<el-input v-model="form.dictName" :placeholder="$t('dictTypeDialog.dictNamePlaceholder')" />
|
||||
</el-form-item>
|
||||
<el-form-item :label="$t('dictTypeDialog.dictType')" prop="dictType" class="form-item">
|
||||
<el-input v-model="form.dictType" :placeholder="$t('dictTypeDialog.dictTypePlaceholder')" />
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</CustomDialog>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import CustomDialog from './CustomDialog.vue';
|
||||
export default {
|
||||
name: 'DictTypeDialog',
|
||||
props: {
|
||||
visible: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
title: {
|
||||
type: String,
|
||||
default: () => this.$t('dictTypeDialog.addDictType')
|
||||
},
|
||||
dictTypeData: {
|
||||
type: Object,
|
||||
default: () => ({})
|
||||
}
|
||||
name: 'DictTypeDialog',
|
||||
props: {
|
||||
visible: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
dialogVisible: this.visible,
|
||||
form: {
|
||||
id: null,
|
||||
dictName: '',
|
||||
dictType: ''
|
||||
},
|
||||
rules: {
|
||||
dictName: [{ required: true, message: this.$t('dictTypeDialog.requiredDictName'), trigger: 'blur' }],
|
||||
dictType: [{ required: true, message: this.$t('dictTypeDialog.requiredDictType'), trigger: 'blur' }]
|
||||
}
|
||||
}
|
||||
title: {
|
||||
type: String,
|
||||
default: () => this.$t('dictTypeDialog.addDictType')
|
||||
},
|
||||
watch: {
|
||||
visible(val) {
|
||||
this.dialogVisible = val;
|
||||
},
|
||||
dialogVisible(val) {
|
||||
this.$emit('update:visible', val);
|
||||
},
|
||||
dictTypeData: {
|
||||
handler(val) {
|
||||
if (val) {
|
||||
this.form = { ...val }
|
||||
}
|
||||
},
|
||||
immediate: true
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
handleClose() {
|
||||
this.dialogVisible = false;
|
||||
this.resetForm()
|
||||
},
|
||||
resetForm() {
|
||||
this.form = {
|
||||
id: null,
|
||||
dictName: '',
|
||||
dictType: ''
|
||||
}
|
||||
this.$refs.form?.resetFields()
|
||||
},
|
||||
handleSave() {
|
||||
this.$refs.form.validate(valid => {
|
||||
if (valid) {
|
||||
this.$emit('save', this.form)
|
||||
}
|
||||
})
|
||||
}
|
||||
dictTypeData: {
|
||||
type: Object,
|
||||
default: () => ({})
|
||||
}
|
||||
}
|
||||
},
|
||||
components: {
|
||||
CustomDialog
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
dialogVisible: this.visible,
|
||||
saving: false,
|
||||
form: {
|
||||
id: null,
|
||||
dictName: '',
|
||||
dictType: ''
|
||||
},
|
||||
rules: {
|
||||
dictName: [{ required: true, message: this.$t('dictTypeDialog.requiredDictName'), trigger: 'blur' }],
|
||||
dictType: [{ required: true, message: this.$t('dictTypeDialog.requiredDictType'), trigger: 'blur' }]
|
||||
}
|
||||
};
|
||||
},
|
||||
watch: {
|
||||
visible(val) {
|
||||
this.dialogVisible = val;
|
||||
},
|
||||
dialogVisible(val) {
|
||||
this.$emit('update:visible', val);
|
||||
if (!val) {
|
||||
this.saving = false;
|
||||
}
|
||||
},
|
||||
dictTypeData: {
|
||||
handler(val) {
|
||||
if (val) {
|
||||
this.form = { ...val };
|
||||
}
|
||||
},
|
||||
immediate: true
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
submit() {
|
||||
this.$refs.form.validate((valid) => {
|
||||
if (valid) {
|
||||
this.saving = true;
|
||||
this.$emit('save', this.form);
|
||||
}
|
||||
});
|
||||
},
|
||||
cancel() {
|
||||
this.saving = false;
|
||||
this.$emit('cancel');
|
||||
},
|
||||
resetSaving() {
|
||||
this.saving = false;
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.dialog-footer {
|
||||
text-align: right;
|
||||
}
|
||||
:deep(.el-dialog) {
|
||||
border-radius: 15px;
|
||||
}
|
||||
|
||||
</style>
|
||||
@@ -1,76 +1,67 @@
|
||||
<template>
|
||||
<el-dialog :title="title" :visible.sync="visible" width="700px" class="param-dialog-wrapper" :append-to-body="true"
|
||||
:close-on-click-modal="false" :key="dialogKey" custom-class="custom-param-dialog" :show-close="false">
|
||||
<div class="dialog-container">
|
||||
<div class="dialog-header">
|
||||
<h2 class="dialog-title">{{ title }}</h2>
|
||||
<button class="custom-close-btn" @click="cancel">
|
||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13 1L1 13M1 1L13 13" stroke="currentColor" stroke-width="2" stroke-linecap="round" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
<CustomDialog
|
||||
:title="title"
|
||||
:visible.sync="visible"
|
||||
width="700px"
|
||||
class="param-dialog-wrapper"
|
||||
@confirm="submit"
|
||||
@close="cancel"
|
||||
:confirmLoading="saving"
|
||||
>
|
||||
<el-form :model="localForm" :rules="rules" ref="form" label-width="auto" label-position="left" class="param-form">
|
||||
<el-form-item :label="$t('replacementDialog.fileName')" prop="fileName">
|
||||
<el-input v-model="localForm.fileName" :placeholder="$t('replacementDialog.fileNamePlaceholder')"
|
||||
@input="clearFieldError('fileName')"></el-input>
|
||||
</el-form-item>
|
||||
|
||||
<el-form :model="localForm" :rules="rules" ref="form" label-width="auto" label-position="left" class="param-form">
|
||||
<el-form-item :label="$t('replacementDialog.fileName')" prop="fileName" class="form-item">
|
||||
<el-input v-model="localForm.fileName" :placeholder="$t('replacementDialog.fileNamePlaceholder')"
|
||||
class="custom-input" @input="clearFieldError('fileName')"></el-input>
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item :label="$t('replacementDialog.content')" prop="content" class="form-item content-item">
|
||||
<div class="content-wrapper">
|
||||
<el-input
|
||||
type="textarea"
|
||||
v-model="localForm.content"
|
||||
:placeholder="$t('replacementDialog.contentPlaceholder')"
|
||||
:rows="8"
|
||||
class="custom-textarea"
|
||||
@input="clearFieldError('content')"
|
||||
></el-input>
|
||||
<p class="format-tip">{{ $t('replacementDialog.formatTip') }}</p>
|
||||
<div class="upload-section">
|
||||
<el-upload
|
||||
class="upload-btn"
|
||||
action=""
|
||||
:auto-upload="false"
|
||||
:show-file-list="false"
|
||||
accept=".txt"
|
||||
:on-change="handleFileChange"
|
||||
>
|
||||
<el-button size="small" type="primary" class="upload-file-btn">
|
||||
<div class="upload-file-content">
|
||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" style="margin-right: 4px;">
|
||||
<path d="M7 1V13M1 7H13" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
|
||||
</svg>
|
||||
<div>
|
||||
<p>{{ $t('replacementDialog.clickUploadTip') }}</p>
|
||||
<p>{{ $t('replacementDialog.uploadCoverTip') }}</p>
|
||||
</div>
|
||||
<el-form-item :label="$t('replacementDialog.content')" prop="content" class="content-item">
|
||||
<div class="content-wrapper">
|
||||
<el-input
|
||||
type="textarea"
|
||||
v-model="localForm.content"
|
||||
:placeholder="$t('replacementDialog.contentPlaceholder')"
|
||||
:rows="8"
|
||||
@input="clearFieldError('content')"
|
||||
></el-input>
|
||||
<p class="format-tip">{{ $t('replacementDialog.formatTip') }}</p>
|
||||
<div class="upload-section">
|
||||
<el-upload
|
||||
class="upload-btn"
|
||||
action=""
|
||||
:auto-upload="false"
|
||||
:show-file-list="false"
|
||||
accept=".txt"
|
||||
:on-change="handleFileChange"
|
||||
>
|
||||
<el-button size="small" type="primary" class="upload-file-btn">
|
||||
<div class="upload-file-content">
|
||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" style="margin-right: 4px;">
|
||||
<path d="M7 1V13M1 7H13" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
|
||||
</svg>
|
||||
<div>
|
||||
<p>{{ $t('replacementDialog.clickUploadTip') }}</p>
|
||||
<p>{{ $t('replacementDialog.uploadCoverTip') }}</p>
|
||||
</div>
|
||||
</el-button>
|
||||
</el-upload>
|
||||
<span class="word-count" :class="{ 'over-limit': isOverLimit }">
|
||||
{{ wordCountText }}{{ $t('replacementDialog.wordCountUnit') }}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</el-button>
|
||||
</el-upload>
|
||||
<span class="word-count" :class="{ 'over-limit': isOverLimit }">
|
||||
{{ wordCountText }}{{ $t('replacementDialog.wordCountUnit') }}
|
||||
</span>
|
||||
</div>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
<div class="dialog-footer">
|
||||
<el-button type="primary" @click="submit" class="save-btn" :loading="saving" :disabled="saving">
|
||||
{{ $t('replacementDialog.save') }}
|
||||
</el-button>
|
||||
<el-button @click="cancel" class="cancel-btn">
|
||||
{{ $t('replacementDialog.cancel') }}
|
||||
</el-button>
|
||||
</div>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</CustomDialog>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import CustomDialog from './CustomDialog.vue';
|
||||
|
||||
export default {
|
||||
components: {
|
||||
CustomDialog
|
||||
},
|
||||
props: {
|
||||
title: {
|
||||
type: String,
|
||||
@@ -270,155 +261,21 @@ export default {
|
||||
};
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.custom-param-dialog {
|
||||
border-radius: 16px !important;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
|
||||
border: none !important;
|
||||
|
||||
.el-dialog__header {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.el-dialog__body {
|
||||
padding: 0 !important;
|
||||
border-radius: 16px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.param-dialog-wrapper {
|
||||
.dialog-container {
|
||||
padding: 24px 32px;
|
||||
background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
|
||||
}
|
||||
|
||||
.dialog-header {
|
||||
position: relative;
|
||||
margin-bottom: 24px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.dialog-title {
|
||||
font-size: 20px;
|
||||
color: #1e293b;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.5px;
|
||||
}
|
||||
|
||||
.custom-close-btn {
|
||||
position: absolute;
|
||||
top: -8px;
|
||||
right: -8px;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 50%;
|
||||
border: none;
|
||||
background: #f1f5f9;
|
||||
color: #64748b;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 0;
|
||||
outline: none;
|
||||
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||||
|
||||
&:hover {
|
||||
color: #ffffff;
|
||||
background: #ef4444;
|
||||
transform: rotate(90deg);
|
||||
box-shadow: 0 4px 6px rgba(239, 68, 68, 0.2);
|
||||
}
|
||||
|
||||
svg {
|
||||
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
}
|
||||
}
|
||||
|
||||
.param-form {
|
||||
.form-item {
|
||||
margin-bottom: 20px;
|
||||
|
||||
:deep(.el-form-item__label) {
|
||||
color: #475569;
|
||||
font-weight: 500;
|
||||
padding-right: 12px;
|
||||
text-align: right;
|
||||
font-size: 14px;
|
||||
letter-spacing: 0.2px;
|
||||
}
|
||||
}
|
||||
|
||||
.content-item {
|
||||
:deep(.el-form-item__content) {
|
||||
line-height: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.custom-input {
|
||||
:deep(.el-input__inner) {
|
||||
background-color: #ffffff;
|
||||
border-radius: 8px;
|
||||
border: 1px solid #e2e8f0;
|
||||
height: 42px;
|
||||
padding: 0 14px;
|
||||
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
font-size: 14px;
|
||||
color: #334155;
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
||||
|
||||
&:focus {
|
||||
border-color: #3b82f6;
|
||||
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
&::placeholder {
|
||||
color: #94a3b8;
|
||||
font-weight: 400;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.content-wrapper {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.custom-textarea {
|
||||
:deep(.el-textarea__inner) {
|
||||
background-color: #ffffff;
|
||||
border-radius: 8px;
|
||||
border: 1px solid #e2e8f0;
|
||||
padding: 12px 14px;
|
||||
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
font-size: 14px;
|
||||
color: #334155;
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
||||
line-height: 1.8;
|
||||
resize: none;
|
||||
white-space: pre;
|
||||
overflow-x: auto;
|
||||
word-wrap: normal;
|
||||
|
||||
&:focus {
|
||||
border-color: #3b82f6;
|
||||
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
&::placeholder {
|
||||
color: #94a3b8;
|
||||
font-weight: 400;
|
||||
}
|
||||
}
|
||||
}
|
||||
.format-tip {
|
||||
text-align: left;
|
||||
font-size: 12px;
|
||||
color: #5778ff;
|
||||
}
|
||||
@@ -472,65 +329,5 @@ export default {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.dialog-footer {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding: 16px 0 0;
|
||||
margin-top: 16px;
|
||||
|
||||
.save-btn {
|
||||
width: 120px;
|
||||
height: 42px;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
border-radius: 8px;
|
||||
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
background: #3b82f6;
|
||||
color: white;
|
||||
border: none;
|
||||
letter-spacing: 0.5px;
|
||||
box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
|
||||
|
||||
&:hover {
|
||||
background: #2563eb;
|
||||
transform: translateY(-1px);
|
||||
box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3);
|
||||
}
|
||||
|
||||
&:active {
|
||||
transform: translateY(0);
|
||||
box-shadow: 0 2px 3px rgba(59, 130, 246, 0.2);
|
||||
}
|
||||
}
|
||||
|
||||
.cancel-btn {
|
||||
width: 120px;
|
||||
height: 42px;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
border-radius: 8px;
|
||||
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
background: #ffffff;
|
||||
color: #64748b;
|
||||
border: 1px solid #e2e8f0;
|
||||
margin-left: 16px;
|
||||
letter-spacing: 0.5px;
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
||||
|
||||
&:hover {
|
||||
background: #f8fafc;
|
||||
color: #475569;
|
||||
border-color: #cbd5e1;
|
||||
transform: translateY(-1px);
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
&:active {
|
||||
transform: translateY(0);
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -352,6 +352,8 @@ export default {
|
||||
|
||||
// Replacement word management page related
|
||||
'replacementWordManagement.pageTitle': 'Ersetzungswortverwaltung',
|
||||
'replacementWordManagement.searchPlaceholder': 'Bitte geben Sie den Dateinamen zur Suche ein',
|
||||
'replacementWordManagement.search': 'Suchen',
|
||||
'replacementWordManagement.fileName': 'Dateiname',
|
||||
'replacementWordManagement.replacementWordCount': 'Anzahl der Ersetzungswörter',
|
||||
'replacementWordManagement.replacementWordContent': 'Ersetzungswortinhalt',
|
||||
@@ -706,6 +708,9 @@ export default {
|
||||
'common.cancel': 'Abbrechen',
|
||||
'common.sensitive': 'Sensibel',
|
||||
'common.loading': 'Lädt',
|
||||
'common.copySuccess': 'Erfolgreich kopiert',
|
||||
'common.copyFailed': 'Kopieren fehlgeschlagen',
|
||||
'common.copyAddress': 'Adresse kopieren',
|
||||
|
||||
// Language switch
|
||||
'language.zhCN': '中文简体',
|
||||
|
||||
@@ -352,6 +352,8 @@ export default {
|
||||
|
||||
// Replacement word management page related
|
||||
'replacementWordManagement.pageTitle': 'Replacement Word Management',
|
||||
'replacementWordManagement.searchPlaceholder': 'Please enter file name to search',
|
||||
'replacementWordManagement.search': 'Search',
|
||||
'replacementWordManagement.fileName': 'File Name',
|
||||
'replacementWordManagement.replacementWordCount': 'Replacement Word Count',
|
||||
'replacementWordManagement.replacementWordContent': 'Replacement Word Content',
|
||||
@@ -706,6 +708,9 @@ export default {
|
||||
'common.cancel': 'Cancel',
|
||||
'common.sensitive': 'Sensitive',
|
||||
'common.loading': 'Loading',
|
||||
'common.copySuccess': 'Copy successful',
|
||||
'common.copyFailed': 'Copy failed',
|
||||
'common.copyAddress': 'Copy address',
|
||||
|
||||
// Language switch
|
||||
'language.zhCN': '中文简体',
|
||||
|
||||
@@ -352,6 +352,8 @@ export default {
|
||||
|
||||
// Replacement word management page related
|
||||
'replacementWordManagement.pageTitle': 'Gerenciamento de Palavras de Substituição',
|
||||
'replacementWordManagement.searchPlaceholder': 'Digite o nome do arquivo para pesquisar',
|
||||
'replacementWordManagement.search': 'Pesquisar',
|
||||
'replacementWordManagement.fileName': 'Nome do Arquivo',
|
||||
'replacementWordManagement.replacementWordCount': 'Quantidade de Palavras de Substituição',
|
||||
'replacementWordManagement.replacementWordContent': 'Conteúdo Substituto',
|
||||
@@ -706,6 +708,9 @@ export default {
|
||||
'common.cancel': 'Cancelar',
|
||||
'common.sensitive': 'Sensível',
|
||||
'common.loading': 'Carregando',
|
||||
'common.copySuccess': 'Cópia bem-sucedida',
|
||||
'common.copyFailed': 'Falha ao copiar',
|
||||
'common.copyAddress': 'Copiar endereço',
|
||||
|
||||
// Troca de idioma
|
||||
'language.zhCN': '中文简体',
|
||||
|
||||
@@ -352,6 +352,8 @@ export default {
|
||||
|
||||
// Replacement word management page related
|
||||
'replacementWordManagement.pageTitle': 'Quản lý từ thay thế',
|
||||
'replacementWordManagement.searchPlaceholder': 'Vui lòng nhập tên tệp để tìm kiếm',
|
||||
'replacementWordManagement.search': 'Tìm kiếm',
|
||||
'replacementWordManagement.fileName': 'Tên tệp',
|
||||
'replacementWordManagement.replacementWordCount': 'Số lượng từ thay thế',
|
||||
'replacementWordManagement.replacementWordContent': 'Nội dung từ thay thế',
|
||||
@@ -706,6 +708,9 @@ export default {
|
||||
'common.cancel': 'Hủy bỏ',
|
||||
'common.sensitive': 'Nhạy cảm',
|
||||
'common.loading': 'Đang tải',
|
||||
'common.copySuccess': 'Sao chép thành công',
|
||||
'common.copyFailed': 'Sao chép thất bại',
|
||||
'common.copyAddress': 'Sao chép địa chỉ',
|
||||
|
||||
// Language switch
|
||||
'language.zhCN': '中文简体',
|
||||
|
||||
@@ -352,6 +352,8 @@ export default {
|
||||
|
||||
// 替换词对话框相关
|
||||
'replacementWordManagement.pageTitle': '替换词管理',
|
||||
'replacementWordManagement.searchPlaceholder': '请输入文件名称查询',
|
||||
'replacementWordManagement.search': '搜索',
|
||||
'replacementWordManagement.fileName': '文件名称',
|
||||
'replacementWordManagement.replacementWordCount': '替换词数量',
|
||||
'replacementWordManagement.replacementWordContent': '替换词内容',
|
||||
@@ -706,6 +708,9 @@ export default {
|
||||
'common.cancel': '取消',
|
||||
'common.sensitive': '敏感',
|
||||
'common.loading': '加载中',
|
||||
'common.copySuccess': '复制成功',
|
||||
'common.copyFailed': '复制失败',
|
||||
'common.copyAddress': '复制地址',
|
||||
|
||||
// 语言切换
|
||||
'language.zhCN': '中文简体',
|
||||
|
||||
@@ -352,6 +352,8 @@ export default {
|
||||
|
||||
// 替換詞管理頁面相關
|
||||
'replacementWordManagement.pageTitle': '替換詞管理',
|
||||
'replacementWordManagement.searchPlaceholder': '請輸入檔案名稱查詢',
|
||||
'replacementWordManagement.search': '搜尋',
|
||||
'replacementWordManagement.fileName': '檔案名稱',
|
||||
'replacementWordManagement.replacementWordCount': '替換詞數量',
|
||||
'replacementWordManagement.replacementWordContent': '替換詞內容',
|
||||
@@ -706,6 +708,9 @@ export default {
|
||||
'common.cancel': '取消',
|
||||
'common.sensitive': '敏感',
|
||||
'common.loading': '載入中',
|
||||
'common.copySuccess': '複製成功',
|
||||
'common.copyFailed': '複製失敗',
|
||||
'common.copyAddress': '複製地址',
|
||||
|
||||
// 語言切換
|
||||
'language.zhCN': '中文简体',
|
||||
|
||||
@@ -78,7 +78,7 @@
|
||||
@confirm="handleDialogConfirm"
|
||||
@cancel="dialogVisible = false"
|
||||
>
|
||||
<el-form ref="dialogForm" :model="form" label-width="100px">
|
||||
<el-form ref="dialogForm" :model="form" :rules="formRules" label-width="100px">
|
||||
<el-form-item :label="$t('templateQuickConfig.agentSettings.agentName')" prop="agentName">
|
||||
<el-input
|
||||
v-model="form.agentName"
|
||||
@@ -155,6 +155,14 @@ export default {
|
||||
sort: 0,
|
||||
model: { ...DEFAULT_MODEL_CONFIG }
|
||||
},
|
||||
formRules: {
|
||||
agentName: [
|
||||
{ required: true, message: "请输入助手昵称", trigger: "blur" }
|
||||
],
|
||||
systemPrompt: [
|
||||
{ required: true, message: "请输入角色介绍", trigger: "blur" }
|
||||
]
|
||||
},
|
||||
originalForm: null
|
||||
};
|
||||
},
|
||||
@@ -263,20 +271,23 @@ export default {
|
||||
});
|
||||
},
|
||||
handleDialogConfirm() {
|
||||
const configData = {
|
||||
id: this.form.id || "",
|
||||
agentCode: this.form.agentCode,
|
||||
agentName: this.form.agentName,
|
||||
systemPrompt: this.form.systemPrompt,
|
||||
sort: this.form.sort,
|
||||
functions: [],
|
||||
...this.form.model
|
||||
};
|
||||
this.$refs.dialogForm.validate((valid) => {
|
||||
if (!valid) return;
|
||||
|
||||
this.confirmLoading = true;
|
||||
const apiCall = this.form.id
|
||||
? agentApi.updateAgentTemplate
|
||||
: agentApi.addAgentTemplate;
|
||||
const configData = {
|
||||
id: this.form.id || "",
|
||||
agentCode: this.form.agentCode,
|
||||
agentName: this.form.agentName,
|
||||
systemPrompt: this.form.systemPrompt,
|
||||
sort: this.form.sort,
|
||||
functions: [],
|
||||
...this.form.model
|
||||
};
|
||||
|
||||
this.confirmLoading = true;
|
||||
const apiCall = this.form.id
|
||||
? agentApi.updateAgentTemplate
|
||||
: agentApi.addAgentTemplate;
|
||||
|
||||
apiCall(configData, (res) => {
|
||||
this.confirmLoading = false;
|
||||
@@ -297,6 +308,7 @@ export default {
|
||||
this.confirmLoading = false;
|
||||
this.$message.error(this.$t("common.networkError"));
|
||||
});
|
||||
});
|
||||
},
|
||||
deleteTemplate(row) {
|
||||
this.$confirm(
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,100 +1,89 @@
|
||||
<template>
|
||||
<div class="welcome">
|
||||
<HeaderBar/>
|
||||
<div class="operation-bar">
|
||||
<h2 class="page-title">{{ $t('replacementWordManagement.pageTitle') }}</h2>
|
||||
</div>
|
||||
<HeaderBar />
|
||||
<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)"
|
||||
>
|
||||
<el-table-column :label="$t('modelConfig.select')" align="center" width="120">
|
||||
<template slot-scope="scope">
|
||||
<el-checkbox v-model="scope.row.selected" @change="handleCheckboxChange(scope.row)"></el-checkbox>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column :label="$t('replacementWordManagement.fileName')" prop="fileName" align="center"/>
|
||||
<el-table-column :label="$t('replacementWordManagement.replacementWordCount')" prop="wordCount" align="center"/>
|
||||
<el-table-column :label="$t('replacementWordManagement.replacementWordContent')" prop="content" align="center">
|
||||
<template slot-scope="scope">
|
||||
<el-tooltip placement="right" effect="light" popper-class="replace-word-tooltip">
|
||||
<div slot="content" class="replace-word-content">
|
||||
<el-tag v-for="(item, index) in scope.row.content" :key="index" size="mini" class="custom-tag">{{ item }}</el-tag>
|
||||
</div>
|
||||
<span class="content-text">{{ formatContent(scope.row.content) }}</span>
|
||||
</el-tooltip>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column :label="$t('replacementWordManagement.createTime')" prop="createdAt" align="center"/>
|
||||
<el-table-column :label="$t('replacementWordManagement.updateTime')" prop="updatedAt" align="center"/>
|
||||
<el-table-column :label="$t('replacementWordManagement.operation')" prop="operator" align="center">
|
||||
<template slot-scope="scope">
|
||||
<el-button size="medium" type="text" @click="handleEdit(scope.row)">
|
||||
{{ $t('replacementWordManagement.edit') }}
|
||||
</el-button>
|
||||
<el-button size="medium" type="text" @click="handleDownload(scope.row)">
|
||||
{{ $t('replacementWordManagement.download') }}
|
||||
</el-button>
|
||||
<el-button size="medium" type="text" @click="handleDelete(scope.row)">
|
||||
{{ $t('replacementWordManagement.delete') }}
|
||||
</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<div class="table_bottom">
|
||||
<div class="ctrl_btn">
|
||||
<el-button size="mini" type="primary" class="select-all-btn" @click="handleSelectAll">
|
||||
{{ allSelected ? $t('user.deselectAll') : $t('user.selectAll') }}
|
||||
</el-button>
|
||||
<el-button size="mini" type="success" @click="handleAdd">{{ $t('replacementWordManagement.addFile') }}</el-button>
|
||||
<el-button size="mini" type="danger" :disabled="!hasAnySelected" @click="handleBatchDelete">
|
||||
{{ $t('replacementWordManagement.batchDelete') }}
|
||||
</el-button>
|
||||
<div class="operation-header">
|
||||
<h2 class="page-title">{{ $t('replacementWordManagement.pageTitle') }}</h2>
|
||||
<div class="right-operations">
|
||||
<el-input
|
||||
:placeholder="$t('replacementWordManagement.searchPlaceholder')"
|
||||
v-model="searchKeyword"
|
||||
class="search-input"
|
||||
@keyup.enter.native="handleSearch"
|
||||
clearable
|
||||
/>
|
||||
<CustomButton icon="el-icon-search" type="confirm" size="small" @click="handleSearch">
|
||||
{{ $t('replacementWordManagement.search') }}
|
||||
</CustomButton>
|
||||
</div>
|
||||
<div class="custom-pagination">
|
||||
<el-select v-model="pageSize" @change="handlePageSizeChange" class="page-size-select">
|
||||
<el-option
|
||||
v-for="item in pageSizeOptions"
|
||||
:key="item"
|
||||
:label="`${item}${$t('paramManagement.itemsPerPage')}`"
|
||||
:value="item"
|
||||
>
|
||||
</el-option>
|
||||
</el-select>
|
||||
<button class="pagination-btn" :disabled="currentPage === 1" @click="goFirst">
|
||||
{{ $t('paramManagement.firstPage') }}
|
||||
</button>
|
||||
<button class="pagination-btn" :disabled="currentPage === 1" @click="goPrev">
|
||||
{{ $t('paramManagement.prevPage') }}
|
||||
</button>
|
||||
<button
|
||||
v-for="page in visiblePages"
|
||||
:key="page"
|
||||
class="pagination-btn"
|
||||
:class="{ active: page === currentPage }" @click="goToPage(page)"
|
||||
>
|
||||
{{ page }}
|
||||
</button>
|
||||
<button class="pagination-btn" :disabled="currentPage === pageCount" @click="goNext">
|
||||
{{ $t('paramManagement.nextPage') }}
|
||||
</button>
|
||||
<span class="total-text">{{ $t('paramManagement.totalRecords', { total }) }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<CustomTable
|
||||
ref="paramsTable"
|
||||
:data="filteredParamsList"
|
||||
:columns="tableColumns"
|
||||
:loading="loading"
|
||||
:show-selection="true"
|
||||
:show-operations="true"
|
||||
:operations-label="$t('replacementWordManagement.operation')"
|
||||
:total="total"
|
||||
:current-page="currentPage"
|
||||
:page-size="pageSize"
|
||||
:page-size-options="pageSizeOptions"
|
||||
@size-change="handlePageSizeChange"
|
||||
@page-change="goToPage"
|
||||
>
|
||||
<template slot="content" slot-scope="scope">
|
||||
<el-tooltip placement="right" effect="light" popper-class="replace-word-tooltip">
|
||||
<div slot="content" class="replace-word-content">
|
||||
<el-tag
|
||||
v-for="(item, index) in scope.row.content"
|
||||
:key="index"
|
||||
size="mini"
|
||||
class="custom-tag"
|
||||
>
|
||||
{{ item }}
|
||||
</el-tag>
|
||||
</div>
|
||||
<span class="content-text">{{ formatContent(scope.row.content) }}</span>
|
||||
</el-tooltip>
|
||||
</template>
|
||||
<template slot="operations" slot-scope="scope">
|
||||
<el-button size="mini" type="text" @click="handleEdit(scope.row)">
|
||||
{{ $t('replacementWordManagement.edit') }}
|
||||
</el-button>
|
||||
<el-button size="mini" type="text" @click="handleDownload(scope.row)">
|
||||
{{ $t('replacementWordManagement.download') }}
|
||||
</el-button>
|
||||
<el-button size="mini" type="text" @click="handleDelete(scope.row)">
|
||||
{{ $t('replacementWordManagement.delete') }}
|
||||
</el-button>
|
||||
</template>
|
||||
<template slot="footer-btns">
|
||||
<div class="ctrl_btn">
|
||||
<CustomButton
|
||||
:icon="allSelected ? 'el-icon-circle-close' : 'el-icon-circle-check'"
|
||||
size="small"
|
||||
@click="handleSelectAll"
|
||||
>
|
||||
{{ allSelected ? $t('user.deselectAll') : $t('user.selectAll') }}
|
||||
</CustomButton>
|
||||
<CustomButton icon="el-icon-plus" size="small" @click="handleAdd">
|
||||
{{ $t('replacementWordManagement.addFile') }}
|
||||
</CustomButton>
|
||||
<CustomButton size="small" type="delete" icon="el-icon-delete" @click="handleBatchDelete">
|
||||
{{ $t('replacementWordManagement.batchDelete') }}
|
||||
</CustomButton>
|
||||
</div>
|
||||
</template>
|
||||
</CustomTable>
|
||||
</el-card>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<el-footer><VersionFooter/></el-footer>
|
||||
|
||||
<ReplacementWordDialog
|
||||
ref="paramDialog"
|
||||
:title="dialogTitle"
|
||||
@@ -103,20 +92,23 @@
|
||||
@submit="handleSubmit"
|
||||
@cancel="dialogVisible = false"
|
||||
/>
|
||||
<el-footer><VersionFooter/></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 ReplacementWordDialog from "@/components/ReplacementWordDialog.vue";
|
||||
import CustomButton from "@/components/CustomButton.vue";
|
||||
import CustomTable from "@/components/CustomTable.vue";
|
||||
|
||||
export default {
|
||||
components: { HeaderBar, ParamDialog, VersionFooter, ReplacementWordDialog },
|
||||
components: { HeaderBar, VersionFooter, ReplacementWordDialog, CustomButton, CustomTable },
|
||||
data() {
|
||||
return {
|
||||
searchKeyword: "",
|
||||
paramsList: [],
|
||||
selectedRows: new Set(),
|
||||
currentPage: 1,
|
||||
@@ -127,33 +119,18 @@ export default {
|
||||
dialogVisible: false,
|
||||
dialogTitle: '',
|
||||
dialogForm: {},
|
||||
tableColumns: []
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.fetchFileList();
|
||||
},
|
||||
mounted() {
|
||||
this.dialogTitle = this.$t('replacementWordManagement.addFile');
|
||||
},
|
||||
|
||||
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;
|
||||
filteredParamsList() {
|
||||
if (!this.searchKeyword) {
|
||||
return this.paramsList;
|
||||
}
|
||||
const keyword = this.searchKeyword.toLowerCase();
|
||||
return this.paramsList.filter(row =>
|
||||
(row.fileName || '').toLowerCase().includes(keyword)
|
||||
);
|
||||
},
|
||||
|
||||
hasAnySelected() {
|
||||
@@ -161,13 +138,51 @@ export default {
|
||||
},
|
||||
|
||||
allSelected() {
|
||||
if (this.paramsList.length === 0) {
|
||||
if (this.filteredParamsList.length === 0) {
|
||||
return false;
|
||||
}
|
||||
return this.paramsList.every(row => this.selectedRows.has(row.id));
|
||||
},
|
||||
return this.filteredParamsList.every(row => this.selectedRows.has(row.id));
|
||||
}
|
||||
},
|
||||
created() {
|
||||
this.initTableColumns();
|
||||
this.fetchFileList();
|
||||
},
|
||||
mounted() {
|
||||
this.dialogTitle = this.$t('replacementWordManagement.addFile');
|
||||
},
|
||||
methods: {
|
||||
initTableColumns() {
|
||||
this.tableColumns = [
|
||||
{
|
||||
prop: 'fileName',
|
||||
label: this.$t('replacementWordManagement.fileName'),
|
||||
align: 'center'
|
||||
},
|
||||
{
|
||||
prop: 'wordCount',
|
||||
label: this.$t('replacementWordManagement.replacementWordCount'),
|
||||
align: 'center'
|
||||
},
|
||||
{
|
||||
prop: 'content',
|
||||
label: this.$t('replacementWordManagement.replacementWordContent'),
|
||||
align: 'center',
|
||||
slot: 'content'
|
||||
},
|
||||
{
|
||||
prop: 'createdAt',
|
||||
label: this.$t('replacementWordManagement.createTime'),
|
||||
align: 'center'
|
||||
},
|
||||
{
|
||||
prop: 'updatedAt',
|
||||
label: this.$t('replacementWordManagement.updateTime'),
|
||||
align: 'center'
|
||||
}
|
||||
];
|
||||
},
|
||||
|
||||
formatContent(content) {
|
||||
if (!content) return '';
|
||||
if (Array.isArray(content)) {
|
||||
@@ -176,34 +191,21 @@ export default {
|
||||
return content;
|
||||
},
|
||||
|
||||
handleSearch() {
|
||||
this.currentPage = 1;
|
||||
},
|
||||
|
||||
handlePageSizeChange(val) {
|
||||
this.pageSize = val;
|
||||
this.currentPage = 1;
|
||||
this.fetchFileList();
|
||||
},
|
||||
|
||||
goToPage(page) {
|
||||
if (page !== this.currentPage) {
|
||||
this.currentPage = page;
|
||||
this.fetchFileList();
|
||||
}
|
||||
},
|
||||
goFirst() {
|
||||
if (this.currentPage !== 1) {
|
||||
this.currentPage = 1;
|
||||
this.fetchFileList();
|
||||
}
|
||||
},
|
||||
goPrev() {
|
||||
if (this.currentPage > 1) {
|
||||
this.currentPage--;
|
||||
this.fetchFileList();
|
||||
}
|
||||
},
|
||||
goNext() {
|
||||
if (this.currentPage < this.pageCount) {
|
||||
this.currentPage++;
|
||||
this.fetchFileList();
|
||||
}
|
||||
if (page !== this.currentPage) {
|
||||
this.currentPage = page;
|
||||
this.fetchFileList();
|
||||
}
|
||||
},
|
||||
|
||||
handleCheckboxChange(row) {
|
||||
@@ -218,20 +220,20 @@ export default {
|
||||
|
||||
handleSelectAll() {
|
||||
if (this.allSelected) {
|
||||
this.paramsList.forEach(row => {
|
||||
this.filteredParamsList.forEach(row => {
|
||||
this.$set(row, 'selected', false);
|
||||
});
|
||||
this.selectedRows = new Set();
|
||||
} else {
|
||||
this.paramsList.forEach(row => {
|
||||
this.filteredParamsList.forEach(row => {
|
||||
this.$set(row, 'selected', true);
|
||||
});
|
||||
this.selectedRows = new Set(this.paramsList.map(row => row.id));
|
||||
this.selectedRows = new Set(this.filteredParamsList.map(row => row.id));
|
||||
}
|
||||
},
|
||||
|
||||
handleBatchDelete() {
|
||||
const ids = Array.from(this.paramsList)
|
||||
const ids = Array.from(this.filteredParamsList)
|
||||
.filter(row => row.selected)
|
||||
.map(row => row.id);
|
||||
|
||||
@@ -273,15 +275,10 @@ export default {
|
||||
}, ({ data }) => {
|
||||
this.loading = false;
|
||||
if (data.code === 0) {
|
||||
this.paramsList = data.data.list || [];
|
||||
|
||||
this.paramsList.forEach(row => {
|
||||
if (this.selectedRows.has(row.id)) {
|
||||
this.$set(row, 'selected', true);
|
||||
} else {
|
||||
this.$set(row, 'selected', false);
|
||||
}
|
||||
});
|
||||
this.paramsList = (data.data.list || []).map(row => ({
|
||||
...row,
|
||||
selected: this.selectedRows.has(row.id)
|
||||
}));
|
||||
|
||||
this.total = data.data.total || 0;
|
||||
} else {
|
||||
@@ -325,10 +322,14 @@ export default {
|
||||
},
|
||||
|
||||
handleDelete(row) {
|
||||
this.$confirm(this.$t('replacementWordManagement.confirmDelete'), this.$t('replacementWordManagement.deleteHint'), {
|
||||
confirmButtonText: this.$t('common.confirm'),
|
||||
cancelButtonText: this.$t('common.cancel')
|
||||
}).then(() => {
|
||||
this.$confirm(
|
||||
this.$t('replacementWordManagement.confirmDelete'),
|
||||
this.$t('replacementWordManagement.deleteHint'),
|
||||
{
|
||||
confirmButtonText: this.$t('common.confirm'),
|
||||
cancelButtonText: this.$t('common.cancel')
|
||||
}
|
||||
).then(() => {
|
||||
Api.correctWord.deleteFile(row.id, ({ data }) => {
|
||||
if (data.code === 0) {
|
||||
this.$message.success(this.$t('common.deleteSuccess'));
|
||||
@@ -372,7 +373,7 @@ export default {
|
||||
});
|
||||
}
|
||||
}
|
||||
},
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
@@ -392,24 +393,23 @@ export default {
|
||||
}
|
||||
|
||||
.main-wrapper {
|
||||
height: calc(100vh - 63px - 35px - 72px);
|
||||
margin: 0 22px;
|
||||
border-radius: 15px;
|
||||
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
|
||||
height: calc(100vh - 63px - 35px);
|
||||
padding: 20px 22px 0;
|
||||
position: relative;
|
||||
background: rgba(237, 242, 255, 0.5);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.operation-bar {
|
||||
.operation-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 22px 24px;
|
||||
justify-content: space-between;
|
||||
padding: 0 0 16px 0;
|
||||
}
|
||||
|
||||
.page-title {
|
||||
font-weight: 500;
|
||||
font-size: 24px;
|
||||
margin: 0;
|
||||
}
|
||||
@@ -424,14 +424,7 @@ export default {
|
||||
width: 240px;
|
||||
}
|
||||
|
||||
.btn-search {
|
||||
background: linear-gradient(135deg, #6b8cff, #a966ff);
|
||||
border: none;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.content-panel {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
overflow: hidden;
|
||||
height: 100%;
|
||||
@@ -460,7 +453,7 @@ export default {
|
||||
overflow: hidden;
|
||||
|
||||
::v-deep .el-card__body {
|
||||
padding: 15px;
|
||||
padding: 14px 20px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: 1;
|
||||
@@ -468,185 +461,8 @@ export default {
|
||||
}
|
||||
}
|
||||
|
||||
.table_bottom {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-top: 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;
|
||||
}
|
||||
}
|
||||
|
||||
.custom-pagination {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
|
||||
.el-select {
|
||||
margin-right: 8px;
|
||||
}
|
||||
|
||||
.pagination-btn:first-child,
|
||||
.pagination-btn:nth-child(2),
|
||||
.pagination-btn:nth-last-child(2),
|
||||
.pagination-btn:nth-child(3) {
|
||||
min-width: 60px;
|
||||
height: 32px;
|
||||
padding: 0 12px;
|
||||
border-radius: 4px;
|
||||
border: 1px solid #e4e7ed;
|
||||
background: #dee7ff;
|
||||
color: #606266;
|
||||
font-size: 14px;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
|
||||
&:hover {
|
||||
background: #d7dce6;
|
||||
}
|
||||
|
||||
&:disabled {
|
||||
opacity: 0.6;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
}
|
||||
|
||||
.pagination-btn:not(:first-child):not(:nth-child(3)):not(:nth-child(2)):not(:nth-last-child(2)) {
|
||||
min-width: 28px;
|
||||
height: 32px;
|
||||
padding: 0;
|
||||
border-radius: 4px;
|
||||
border: 1px solid transparent;
|
||||
background: transparent;
|
||||
color: #606266;
|
||||
font-size: 14px;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
|
||||
&:hover {
|
||||
background: rgba(245, 247, 250, 0.3);
|
||||
}
|
||||
}
|
||||
|
||||
.pagination-btn.active {
|
||||
background: #5f70f3 !important;
|
||||
color: #ffffff !important;
|
||||
border-color: #5f70f3 !important;
|
||||
|
||||
&:hover {
|
||||
background: #6d7cf5 !important;
|
||||
}
|
||||
}
|
||||
|
||||
.total-text {
|
||||
color: #909399;
|
||||
font-size: 14px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
: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) {
|
||||
@@ -657,16 +473,7 @@ export default {
|
||||
color: #5a64b5;
|
||||
}
|
||||
|
||||
.el-button--success {
|
||||
background: #5bc98c;
|
||||
color: white;
|
||||
}
|
||||
|
||||
:deep(.el-table .cell) {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
|
||||
.content-text {
|
||||
display: block;
|
||||
max-width: 300px;
|
||||
@@ -676,64 +483,6 @@ export default {
|
||||
}
|
||||
}
|
||||
|
||||
.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 {
|
||||
max-height: var(--table-max-height);
|
||||
|
||||
.el-table__body-wrapper {
|
||||
max-height: calc(var(--table-max-height) - 40px);
|
||||
overflow-y: auto;
|
||||
}
|
||||
}
|
||||
.custom-tag {
|
||||
background: #e6ebff;
|
||||
color: #5778ff;
|
||||
|
||||
@@ -1,38 +1,37 @@
|
||||
<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>
|
||||
<div class="operation-header">
|
||||
<h2 class="page-title">{{ $t('serverSideManager.pageTitle') }}</h2>
|
||||
</div>
|
||||
<el-card class="server-list-card">
|
||||
<div v-for="(item, index) in paramsList" :key="index" class="server-list" v-loading="loading">
|
||||
<div class="server-card">
|
||||
<div class="server-info">
|
||||
<span class="server-label">{{ $t('serverSideManager.wsAddress') }}</span>
|
||||
<span class="server-value">{{ item.address }}</span>
|
||||
</div>
|
||||
<el-button class="copy-button" type="text" size="small" @click="copyAddress(item.address)">{{ $t('common.copyAddress') }}</el-button>
|
||||
</div>
|
||||
<el-divider />
|
||||
<div class="header-actions">
|
||||
<CustomButton icon="el-icon-refresh-right" size="small" @click="emitAction(item, actionMap.restart)">{{
|
||||
$t('serverSideManager.restart') }}</CustomButton>
|
||||
<CustomButton icon="el-icon-setting" size="small" type="confirm" @click="emitAction(item, actionMap.update_config)">
|
||||
{{ $t('serverSideManager.updateConfig') }}
|
||||
</CustomButton>
|
||||
</div>
|
||||
<el-empty v-if="paramsList.length === 0 && !loading" :description="$t('common.noData')"></el-empty>
|
||||
</div>
|
||||
</el-card>
|
||||
</el-card>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<el-footer>
|
||||
<version-footer />
|
||||
</el-footer>
|
||||
@@ -41,59 +40,22 @@
|
||||
|
||||
<script>
|
||||
import Api from "@/apis/api";
|
||||
import CustomButton from "@/components/CustomButton.vue";
|
||||
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 },
|
||||
components: { HeaderBar, VersionFooter, CustomButton },
|
||||
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: {
|
||||
@@ -112,11 +74,6 @@ export default {
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
handlePageSizeChange(val) {
|
||||
this.pageSize = val;
|
||||
this.currentPage = 1;
|
||||
this.fetchParams();
|
||||
},
|
||||
fetchParams() {
|
||||
this.loading = true;
|
||||
Api.admin.getWsServerList(
|
||||
@@ -125,7 +82,6 @@ export default {
|
||||
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'),
|
||||
@@ -139,12 +95,10 @@ export default {
|
||||
if (actionItem === undefined || rowItem.address === undefined) {
|
||||
return;
|
||||
}
|
||||
// 弹开询问框
|
||||
this.$confirm(actionItem.message, actionItem.title, {
|
||||
confirmButtonText: actionItem.confirmText, // 确认按钮文本
|
||||
cancelButtonText: this.$t('common.cancel') // 取消按钮文本
|
||||
confirmButtonText: actionItem.confirmText,
|
||||
cancelButtonText: this.$t('common.cancel')
|
||||
}).then(() => {
|
||||
// 用户点击了确认按钮
|
||||
Api.admin.sendWsServerAction({
|
||||
targetWs: rowItem.address,
|
||||
action: actionItem.value
|
||||
@@ -163,13 +117,14 @@ export default {
|
||||
})
|
||||
})
|
||||
},
|
||||
headerCellClassName({ columnIndex }) {
|
||||
if (columnIndex === 0) {
|
||||
return "custom-selection-header";
|
||||
}
|
||||
return "";
|
||||
copyAddress(address) {
|
||||
navigator.clipboard.writeText(address).then(() => {
|
||||
this.$message.success(this.$t('common.copySuccess'));
|
||||
}).catch(() => {
|
||||
this.$message.error(this.$t('common.copyFailed'));
|
||||
});
|
||||
}
|
||||
},
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
@@ -189,47 +144,21 @@ export default {
|
||||
}
|
||||
|
||||
.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);
|
||||
height: calc(100vh - 63px - 35px);
|
||||
padding: 20px 22px 0;
|
||||
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;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.page-title {
|
||||
font-weight: 500;
|
||||
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%;
|
||||
@@ -258,7 +187,7 @@ export default {
|
||||
overflow: hidden;
|
||||
|
||||
::v-deep .el-card__body {
|
||||
padding: 15px;
|
||||
padding: 14px 20px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: 1;
|
||||
@@ -266,197 +195,78 @@ export default {
|
||||
}
|
||||
}
|
||||
|
||||
.table_bottom {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
.server-list {
|
||||
padding: 16px 20px;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 0 8px #ececec;
|
||||
}
|
||||
|
||||
.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;
|
||||
.server-list-card {
|
||||
flex: 1;
|
||||
width: 100%;
|
||||
border: none;
|
||||
border-radius: 8px;
|
||||
box-shadow: none;
|
||||
|
||||
::v-deep .el-card__body {
|
||||
gap: 20px;
|
||||
overflow: auto;
|
||||
padding: 16px;
|
||||
height: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
::v-deep .el-divider {
|
||||
margin: 16px 0 !important;
|
||||
background: #ecf2fb !important;
|
||||
}
|
||||
}
|
||||
|
||||
.header-actions {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.operation-header {
|
||||
height: 56px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 0 0 16px 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.server-card {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 16px;
|
||||
border-radius: 10px;
|
||||
background: rgba(239, 243, 252, 0.4);
|
||||
border: 1px solid #ecf2fb;
|
||||
}
|
||||
|
||||
.server-info {
|
||||
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);
|
||||
}
|
||||
}
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
|
||||
:deep(.el-checkbox__inner) {
|
||||
background-color: #ffffff !important;
|
||||
border-color: #cccccc !important;
|
||||
.server-label {
|
||||
font-size: 16px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
:deep(.el-checkbox__inner:hover) {
|
||||
border-color: #cccccc !important;
|
||||
.server-value {
|
||||
margin-top: 10px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
:deep(.el-checkbox__input.is-checked .el-checkbox__inner) {
|
||||
background-color: #5f70f3 !important;
|
||||
border-color: #5f70f3 !important;
|
||||
.server-actions {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
@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;
|
||||
}
|
||||
.copy-button {
|
||||
font-size: 14px;
|
||||
color: #5778ff;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user