优化代客下单

This commit is contained in:
gyq
2025-11-14 09:14:34 +08:00
parent 65dd9d426b
commit 17e63a2400
2 changed files with 8 additions and 9 deletions

View File

@@ -36,9 +36,9 @@
</el-table-column>
<el-table-column label="手机号" prop="phone" width="160"></el-table-column>
<el-table-column label="会员" prop="isVip">
<el-table-column label="会员" prop="isVip" width="140">
<template v-slot="scope">
<el-tag type="warning" v-if="scope.row.isVip">会员等级{{ scope.row.isVip }}</el-tag>
<el-tag type="warning" v-if="scope.row.isVip">会员等级{{ scope.row.memberLevelName }}</el-tag>
<span v-else></span>
</template>
</el-table-column>