fix(shop): 修复经销商用户类型显示和表单验证问题

- 将用户类型中的企业改为门店
- 注释掉集团类型的显示选项
- 将表单项姓名改为真实姓名
- 更新输入框提示文字为请输入真实姓名
- 修改表单验证消息为请填写真实姓名
This commit is contained in:
2026-01-26 23:54:46 +08:00
parent 26978de65c
commit f3a59f9755
3 changed files with 8 additions and 8 deletions

View File

@@ -25,8 +25,8 @@
</template>
<template v-if="column.key === 'type'">
<a-tag v-if="record.type === 0">经销商</a-tag>
<a-tag v-if="record.type === 1" color="orange">企业</a-tag>
<a-tag v-if="record.type === 2" color="purple">集团</a-tag>
<a-tag v-if="record.type === 1" color="orange">门店</a-tag>
<!-- <a-tag v-if="record.type === 2" color="purple">集团</a-tag>-->
</template>
<template v-if="column.key === 'qrcode'">
<QrcodeOutlined :style="{fontSize: '24px'}" @click="openQrCode(record)" />