fix: 添加用户来源列
This commit is contained in:
parent
d8383748fd
commit
4b11a3ff85
|
@ -32,6 +32,7 @@
|
|||
<span>{{ scope.row.createTime | timestampFormatDate }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="source" :label="$t('user.source')"/>
|
||||
<el-table-column :label="$t('commons.operating')">
|
||||
<template v-slot:default="scope">
|
||||
<ms-table-operator @editClick="edit(scope.row)" @deleteClick="del(scope.row)">
|
||||
|
|
|
@ -224,7 +224,8 @@ export default {
|
|||
email_format_is_incorrect: 'Email format is incorrect',
|
||||
delete_confirm: 'Are you sure you want to delete this User?',
|
||||
apikey_delete_confirm: 'Are you sure you want to delete this API Key?',
|
||||
input_id_placeholder: 'Please enter ID (only supports numbers and English letters)'
|
||||
input_id_placeholder: 'Please enter ID (only supports numbers and English letters)',
|
||||
source: 'Source'
|
||||
},
|
||||
role: {
|
||||
please_choose_role: 'Please Choose Role',
|
||||
|
|
|
@ -222,7 +222,8 @@ export default {
|
|||
email_format_is_incorrect: '邮箱格式不正确',
|
||||
delete_confirm: '这个用户确定要删除吗?',
|
||||
apikey_delete_confirm: '这个 API Key 确定要删除吗?',
|
||||
input_id_placeholder: '请输入ID (只支持数字、英文字母)'
|
||||
input_id_placeholder: '请输入ID (只支持数字、英文字母)',
|
||||
source: '用户来源'
|
||||
},
|
||||
role: {
|
||||
please_choose_role: '请选择角色',
|
||||
|
|
|
@ -221,7 +221,8 @@ export default {
|
|||
email_format_is_incorrect: '郵箱格式不正確',
|
||||
delete_confirm: '這個用戶確定要刪除嗎?',
|
||||
apikey_delete_confirm: '這個 API Key 確定要刪除嗎?',
|
||||
input_id_placeholder: '請輸入ID (只支持數字、英文字母)'
|
||||
input_id_placeholder: '請輸入ID (只支持數字、英文字母)',
|
||||
source: '用戶來源'
|
||||
},
|
||||
role: {
|
||||
please_choose_role: '請選擇角色',
|
||||
|
|
Loading…
Reference in New Issue