查询
@@ -30,6 +30,17 @@
+
+
©2025 xiaozhi-esp32-server
@@ -50,7 +61,10 @@ export default {
{ userId: '123456', phone: '13800138000', status: '正常', deviceCount: 9 },
{ userId: '123456', phone: '13800138000', status: '正常', deviceCount: 7 },
{ userId: '123456', phone: '13800138000', status: '禁用', deviceCount: 7 }
- ]
+ ],
+ currentPage: 1,
+ pageSize: 4,
+ total: 20
};
},
methods: {
@@ -77,7 +91,11 @@ export default {
},
deleteUser(row) {
console.log('删除用户:', row);
- }
+ },
+ handleCurrentChange(page) {
+ this.currentPage = page;
+ console.log('当前页码:', page);
+ },
}
};
@@ -117,4 +135,11 @@ export default {
padding: 20px;
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}
+
+.pagination-container {
+ margin-top: 20px;
+ display: flex;
+ justify-content: flex-end;
+}
+
\ No newline at end of file
diff --git a/main/manager-web/src/views/roleConfig.vue b/main/manager-web/src/views/roleConfig.vue
index 77ecc85f..d0f0000e 100644
--- a/main/manager-web/src/views/roleConfig.vue
+++ b/main/manager-web/src/views/roleConfig.vue
@@ -125,11 +125,11 @@ export default {
],
models: [
{ label: '大语言模型(LLM)', key: 'llm' },
- { label: '语音转文本模型(ASR)', key: 'asr' },
+ { label: '语音识别(ASR)', key: 'asr' },
{ label: '语音活动检测模型(VAD)', key: 'vad' },
- { label: '语音生成模型(TTS)', key: 'tts' },
- { label: '意图分类模型(Intent)', key: 'intent' },
- { label: '记忆增强模型(Memory)', key: 'memory' }
+ { label: '语音合成模型(TTS)', key: 'tts' },
+ { label: '意图识别模型(Intent)', key: 'intent' },
+ { label: '记忆模型(Memory)', key: 'memory' }
],
templates: ['台湾女友', '土豆子', '英语老师', '好奇小男孩', '汪汪队队长']