feat(assoc): v4.0.1 合伙人关联码、分佣账单与 H5 用户管理

订单佣金只认关联用户;合伙人备注写入独立表;H5 增加用户管理与首页统计。

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-08-30 14:35:39 +08:00
parent 3b669f7e38
commit 9c8d5f2cad
125 changed files with 6355 additions and 1436 deletions
+2 -1
View File
@@ -25,6 +25,7 @@ const MIME = {
'.css': 'text/css; charset=utf-8',
'.json': 'application/json; charset=utf-8',
'.png': 'image/png',
'.gif': 'image/gif',
'.jpg': 'image/jpeg',
'.jpeg': 'image/jpeg',
'.svg': 'image/svg+xml',
@@ -145,7 +146,7 @@ function watchSrc() {
fs.watch(srcDir, { recursive: true }, (_event, filename) => {
if (!filename) return;
if (/\.(tsx?|jsx?|css|scss|json|png|jpg|svg)$/i.test(filename)) {
if (/\.(tsx?|jsx?|css|scss|json|png|jpg|gif|svg)$/i.test(filename)) {
schedule();
}
});