feat(distribution): 实现分销员中心完整功能

- 新增分销业绩统计页面,包含时间范围筛选和自定义日期选择功能
- 重构分销认证页面,改为跳转至招募页面申请分销员身份
- 添加分销商品访问记录功能,支持分享追踪和佣金计算
- 更新分销历史记录页面,优化数据结构和显示字段
- 完全重写分销员首页,包含用户信息、收益统计、等级系统等功能
This commit is contained in:
pikachu1995@126.com
2026-08-05 18:07:27 +08:00
parent 6754a54f1b
commit 7d3daf2f02
34 changed files with 10053 additions and 2530 deletions

View File

@@ -1,20 +1,7 @@
const path = require('path')
// module.exports = {
// /**
// * 此处为发行h5,微信小程序app中删除console
// * 如需显示console 需要注释此处重新运行
// */
// chainWebpack: (config) => {
// // 发行或运行时启用了压缩时会生效
// config.optimization.minimizer('terser').tap((args) => {
// const compress = args[0].terserOptions.compress
// // 非 App 平台移除 console 代码(包含所有 console 方法,如 log,debug,info...)
// compress.drop_console = true
// compress.pure_funcs = [
// '__f__', // App 平台 vue 移除日志代码
// // 'console.debug' // 可移除指定的 console 方法
// ]
// return args
// })
// }
// }
module.exports = {
transpileDependencies: [
path.join(__dirname, 'js_sdk/u-draw-poster'),
],
}