添加中心处,数据查询以及人员列表问题修复
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
0ba8739cb5
commit
fc6d0c7b35
|
@ -222,25 +222,25 @@
|
|||
</div>
|
||||
<el-table v-loading="userListLoading" :data="userList" height="400" size="small">
|
||||
<!-- 姓名 -->
|
||||
<el-table-column prop="UserRealName" :label="$t('trials:internalStaff:table:name')" width="100"
|
||||
<el-table-column prop="UserRealName" :label="$t('trials:internalStaff:table:name')" min-width="100"
|
||||
show-overflow-tooltip />
|
||||
<!-- 用户名 -->
|
||||
<el-table-column prop="UserName" :label="$t('trials:internalStaff:table:uid')" min-width="100"
|
||||
show-overflow-tooltip />
|
||||
<!-- 用户类型 -->
|
||||
<el-table-column prop="UserType" :label="$t('trials:internalStaff:table:userType')" width="100"
|
||||
<el-table-column prop="UserType" :label="$t('trials:internalStaff:table:userType')" min-width="100"
|
||||
show-overflow-tooltip />
|
||||
<!-- 电话 -->
|
||||
<el-table-column prop="Phone" :label="$t('trials:internalStaff:table:phone')" show-overflow-tooltip
|
||||
width="100" />
|
||||
min-width="100" />
|
||||
<!-- 邮箱 -->
|
||||
<el-table-column prop="EMail" :label="$t('trials:internalStaff:table:email')" show-overflow-tooltip
|
||||
width="100" />
|
||||
min-width="100" />
|
||||
<!-- 单位 -->
|
||||
<el-table-column prop="OrganizationName" :label="$t('trials:internalStaff:table:organization')" width="100" />
|
||||
<el-table-column prop="OrganizationName" :label="$t('trials:internalStaff:table:organization')" min-width="100" />
|
||||
<!-- 状态 -->
|
||||
<el-table-column prop="IsDeleted" :label="$t('trials:internalStaff:table:status')" show-overflow-tooltip
|
||||
width="100">
|
||||
min-width="100">
|
||||
<template slot-scope="scope">
|
||||
<el-tag v-if="scope.row.IsDeleted" type="danger">{{
|
||||
$fd("IsUserExitTrial", scope.row.IsDeleted)
|
||||
|
@ -251,9 +251,9 @@
|
|||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="CreateTime" :label="$t('trials:internalStaff:table:authorizationTime')"
|
||||
show-overflow-tooltip sortable="custom" width="210" />
|
||||
show-overflow-tooltip sortable="custom" min-width="210" />
|
||||
<el-table-column prop="DeletedTime" :label="$t('trials:internalStaff:table:disableTime')"
|
||||
show-overflow-tooltip sortable width="210" />
|
||||
show-overflow-tooltip sortable min-width="210" />
|
||||
<el-table-column v-hasPermi="[
|
||||
'trials:trials-panel:setting:personnel-manage:assign-staff',
|
||||
]" :label="$t('common:action:action')" width="100">
|
||||
|
@ -433,10 +433,10 @@ export default {
|
|||
return (
|
||||
TrialSiteSelectList.SiteName.toLowerCase().indexOf(
|
||||
queryString.toLowerCase()
|
||||
) === 0 ||
|
||||
) >= 0 ||
|
||||
TrialSiteSelectList.AliasName.toLowerCase().indexOf(
|
||||
queryString.toLowerCase()
|
||||
) === 0
|
||||
) >= 0
|
||||
);
|
||||
};
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue