fix(shop): 更新经销商资金类型显示并移除三级分销设置

- 将资金流水类型50从"新人注册奖"更改为"佣金解冻"
- 注释掉经销商设置中的三级分销选项
- 保持原有的分销层级选择功能结构
This commit is contained in:
2026-02-10 14:59:36 +08:00
parent ca85df386b
commit 353916a081
2 changed files with 2 additions and 2 deletions

View File

@@ -145,7 +145,7 @@
20: { text: '提现支出', color: 'warning' },
30: { text: '转账支出', color: 'error' },
40: { text: '转账收入', color: 'processing' },
50: { text: '新人注册奖', color: 'processing' }
50: { text: '佣金解冻', color: 'processing' }
};
const type = typeMap[text] || { text: '未知', color: 'default' };
return {

View File

@@ -24,7 +24,7 @@
<a-radio-group v-model:value="basicSettings.distributionLevel">
<a-radio :value="1">一级</a-radio>
<a-radio :value="2">二级</a-radio>
<a-radio :value="3">三级</a-radio>
<!-- <a-radio :value="3">三级</a-radio>-->
</a-radio-group>
<div class="setting-desc">设置分销商推荐层级关系</div>
</a-form-item>