@@ -547,8 +547,7 @@ const html = `
// 修改加载价格数据函数
async function loadPrices() {
console.log('Starting to load prices...');
- const priceTable = document.getElementById('priceTable');
- const tbody = priceTable?.querySelector('tbody');
+ const tbody = document.getElementById('priceTableBody');
if (!tbody) {
console.error('Price table body not found');
return;
|