chore: deleted debug logs.

This commit is contained in:
caixypromise
2025-05-29 01:28:07 +08:00
parent ec55de429c
commit ae1b90dfd7
2 changed files with 0 additions and 4 deletions
@@ -222,7 +222,6 @@ export default {
if (!key) {
return;
}
console.log(field);
const text = this.textCache[key] || '';
try {
const obj = JSON.parse(text);
@@ -297,7 +296,6 @@ export default {
: {...f.params}
}
});
console.log(selected);
this.$emit('update-functions', selected);
this.dialogVisible = false;
@@ -205,7 +205,6 @@ export default {
language: this.form.language,
sort: this.form.sort,
functions: this.currentFunctions.map(item => {
console.log(item)
return ({
pluginId: item.id,
paramInfo: item.params
@@ -432,7 +431,6 @@ export default {
},
handleUpdateFunctions(selected) {
this.currentFunctions = selected;
console.log('保存的功能列表:', selected);
this.$message.success('功能配置已保存');
},
handleDialogClosed(saved) {