feat(系统设置): 成员下拉展示成员ID

--story=1017104 --user=宋昌昌 github#33026 添加成员时,成员下拉框展示成员ID https://www.tapd.cn/55049933/s/1622206
This commit is contained in:
song-cc-rock 2024-12-02 14:05:09 +08:00 committed by Craftsman
parent fdbce0ecb7
commit 7c5750deb4
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
<template>
<div>
<span class="user-select-left">{{ user.name }}</span>
<span class="user-select-left">{{ user.name + ' (' + user.id + ')'}}</span>
<span class="user-select-right">{{ user.email }}</span>
</div>
</template>

View File

@ -1,6 +1,6 @@
<template>
<div>
<span class="user-select-left">{{ user.name }}</span>
<span class="user-select-left">{{ user.name + ' (' + user.id + ')' }}</span>
<span class="user-select-right">{{ user.email }}</span>
</div>
</template>