|
@@ -18,7 +18,7 @@
|
|
|
<InputText v-model="searchForm.id" placeholder="ID" size="small" class="w-32" @keyup.enter="handleSearch" />
|
|
<InputText v-model="searchForm.id" placeholder="ID" size="small" class="w-32" @keyup.enter="handleSearch" />
|
|
|
<InputText
|
|
<InputText
|
|
|
v-model="searchForm.name"
|
|
v-model="searchForm.name"
|
|
|
- placeholder="名称"
|
|
|
|
|
|
|
+ placeholder="用户名"
|
|
|
size="small"
|
|
size="small"
|
|
|
class="w-32"
|
|
class="w-32"
|
|
|
@keyup.enter="handleSearch"
|
|
@keyup.enter="handleSearch"
|
|
@@ -81,7 +81,7 @@
|
|
|
</template>
|
|
</template>
|
|
|
</Column>
|
|
</Column>
|
|
|
|
|
|
|
|
- <Column field="name" header="名称" style="min-width: 120px; max-width: 200px">
|
|
|
|
|
|
|
+ <Column field="name" header="用户名" style="min-width: 120px; max-width: 200px">
|
|
|
<template #body="slotProps">
|
|
<template #body="slotProps">
|
|
|
<span
|
|
<span
|
|
|
class="font-medium name-text copyable-text"
|
|
class="font-medium name-text copyable-text"
|
|
@@ -93,7 +93,7 @@
|
|
|
</template>
|
|
</template>
|
|
|
</Column>
|
|
</Column>
|
|
|
|
|
|
|
|
- <Column field="username" header="用户名" style="min-width: 120px; max-width: 200px">
|
|
|
|
|
|
|
+ <Column field="username" header="昵称" style="min-width: 120px; max-width: 200px">
|
|
|
<template #body="slotProps">
|
|
<template #body="slotProps">
|
|
|
<span
|
|
<span
|
|
|
class="username-text copyable-text"
|
|
class="username-text copyable-text"
|
|
@@ -219,12 +219,12 @@
|
|
|
<div class="p-fluid">
|
|
<div class="p-fluid">
|
|
|
<div class="grid grid-cols-3 gap-4">
|
|
<div class="grid grid-cols-3 gap-4">
|
|
|
<div class="field">
|
|
<div class="field">
|
|
|
- <label for="edit-name" class="font-medium text-sm mb-2 block">名称</label>
|
|
|
|
|
|
|
+ <label for="edit-name" class="font-medium text-sm mb-2 block">用户名</label>
|
|
|
<InputText id="edit-name" v-model="editForm.name" class="w-full" />
|
|
<InputText id="edit-name" v-model="editForm.name" class="w-full" />
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<div class="field">
|
|
<div class="field">
|
|
|
- <label for="edit-username" class="font-medium text-sm mb-2 block">用户名</label>
|
|
|
|
|
|
|
+ <label for="edit-username" class="font-medium text-sm mb-2 block">昵称</label>
|
|
|
<InputText id="edit-username" v-model="editForm.username" class="w-full" />
|
|
<InputText id="edit-username" v-model="editForm.username" class="w-full" />
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|