style(项目管理): 修改项目管理成员列表style&用例编辑titleStyle

This commit is contained in:
xinxin.wu 2024-08-16 10:14:00 +08:00 committed by Craftsman
parent e56f978d7d
commit de0a17d331
3 changed files with 4 additions and 4 deletions

View File

@ -34,7 +34,7 @@
<div
:class="`${
hasAnyPermission(['FUNCTIONAL_CASE:READ+UPDATE']) ? 'hover-title-name' : ''
} one-line-text max-w-[200px]`"
} one-line-text max-w-[200px] cursor-pointer`"
@click="clickTitleHandler"
>{{ detailInfo.name }}
</div>

View File

@ -51,7 +51,7 @@
v-model="record.selectUserList"
:popup-visible="record.showUserSelect"
multiple
class="w-[260px]"
class="w-full max-w-[300px]"
:max-tag-count="2"
@popup-visible-change="(value) => userGroupChange(value, record)"
>

View File

@ -51,7 +51,7 @@
multiple
:max-tag-count="2"
size="small"
class="w-[260px]"
class="w-full max-w-[300px]"
:popup-visible="record.showProjectSelect"
@change="(value) => selectUserOrProject(value, record, 'project')"
@popup-visible-change="visibleChange($event, record, 'project')"
@ -74,7 +74,7 @@
v-model="record.selectUserList"
multiple
:max-tag-count="2"
class="w-[260px]"
class="w-full max-w-[300px]"
:popup-visible="record.showUserSelect"
@change="(value) => selectUserOrProject(value, record, 'user')"
@popup-visible-change="(value) => visibleChange(value, record, 'user')"