1、更新通道统计,可以查看每个通道的收入情况,可以查询指定时间段的通道收入情况

2、账号管理列表交互优化,添加操作下拉框
3、修复二维码图片上传功能可能导致的漏洞
This commit is contained in:
技术老胡
2025-06-03 11:15:12 +08:00
parent 98c90dffcf
commit 5826a7f6e1
11 changed files with 292 additions and 9 deletions

View File

@@ -219,6 +219,11 @@
let platformName = platforms[d.platform] || '已卸载';
return `${platformName} [${d.aid}:${d.cid}]`;
}
const urlParams = new URLSearchParams(window.location.search);
const where = {};
urlParams.forEach((value, key) => {
where[key] = value;
});
// 表格列参数
let cols = [[
{ type: 'checkbox' },
@@ -239,6 +244,7 @@
id: 'orders-table',
elem: '#orders-table',
url: '/api/Order/getOrders',
where: where,
page: true,
cols: cols,
skin: 'line',