删掉无用日志
This commit is contained in:
@@ -161,16 +161,10 @@ async function loadSelectedConfigGroup() {
|
||||
document.getElementById('test_password').value = config.test_config.password || '';
|
||||
document.getElementById('test_keyspace').value = config.test_config.keyspace || '';
|
||||
document.getElementById('test_table').value = config.test_config.table || '';
|
||||
|
||||
// 填充查询配置
|
||||
console.log('配置组查询配置:', config.query_config);
|
||||
|
||||
document.getElementById('keys').value = (config.query_config.keys || []).join(',');
|
||||
document.getElementById('fields_to_compare').value = (config.query_config.fields_to_compare || []).join(',');
|
||||
document.getElementById('exclude_fields').value = (config.query_config.exclude_fields || []).join(',');
|
||||
console.log('填充后的字段值:');
|
||||
console.log('keys:', document.getElementById('keys').value);
|
||||
console.log('fields_to_compare:', document.getElementById('fields_to_compare').value);
|
||||
console.log('exclude_fields:', document.getElementById('exclude_fields').value);
|
||||
|
||||
// 加载分表配置
|
||||
if (config.sharding_config) {
|
||||
@@ -406,7 +400,7 @@ async function loadConfigGroupById(groupId) {
|
||||
document.getElementById('test_password').value = config.test_config.password || '';
|
||||
document.getElementById('test_keyspace').value = config.test_config.keyspace || '';
|
||||
document.getElementById('test_table').value = config.test_config.table || '';
|
||||
|
||||
|
||||
document.getElementById('keys').value = (config.query_config.keys || []).join(',');
|
||||
document.getElementById('fields_to_compare').value = (config.query_config.fields_to_compare || []).join(',');
|
||||
document.getElementById('exclude_fields').value = (config.query_config.exclude_fields || []).join(',');
|
||||
|
Reference in New Issue
Block a user