去重总数据国家限定五国并优化筛选布局

- 国家仅保留德国/英国/法国/意大利/西班牙,移除美国及US映射
- 保留服务器已有 V90 迁移,新增 V91 添加 country 列及索引
- ASIN列表筛选区改为两行布局:查询条件+按钮在上,日期+导出在下
This commit is contained in:
2026-08-24 00:03:28 +08:00
parent 8712df2645
commit a659132469
6 changed files with 80 additions and 13 deletions
+1 -1
View File
@@ -2192,7 +2192,7 @@
}
function getDedupeTotalDataCountryLabel(countryCodes) {
var countryLabels = {
DE: '德国', UK: '英国', FR: '法国', IT: '意大利', ES: '西班牙', US: '美国'
DE: '德国', UK: '英国', FR: '法国', IT: '意大利', ES: '西班牙'
};
if (Array.isArray(countryCodes)) {
return countryCodes.map(function (code) { return countryLabels[code] || code; }).join('、');