fix(系统设置): 工作空间列表描述字段及成员字段宽度调整

--bug=1028136 --user=宋昌昌 【系统设置】工作空间列表-描述字段和成员字段显示问题 https://www.tapd.cn/55049933/s/1397825
This commit is contained in:
song-cc-rock 2023-07-26 13:55:53 +08:00 committed by 刘瑞斌
parent d531082510
commit b17dd5b5c8

View File

@ -10,9 +10,9 @@
</template> </template>
<!-- workspace table start --> <!-- workspace table start -->
<el-table border class="adjust-table ws-table" :data="workspaces" :height="screenHeight"> <el-table border class="adjust-table ws-table" :data="workspaces" :height="screenHeight">
<el-table-column show-overflow-tooltip prop="name" :label="$t('commons.name')"/> <el-table-column show-overflow-tooltip prop="name" :label="$t('commons.name')" min-width="100"/>
<el-table-column prop="description" :label="$t('commons.description')"/> <el-table-column show-overflow-tooltip prop="description" :label="$t('commons.description')" min-width="100"/>
<el-table-column :label="$t('commons.member')"> <el-table-column :label="$t('commons.member')" width="150">
<template v-slot:default="scope"> <template v-slot:default="scope">
<el-link <el-link
type="primary" type="primary"
@ -22,8 +22,8 @@
{{ scope.row.memberSize }} {{ scope.row.memberSize }}
</el-link> </el-link>
</template> </template>
</el-table-column> </el-table-column >
<el-table-column :label="$t('commons.operating')"> <el-table-column :label="$t('commons.operating')" min-width="100">
<template v-slot:default="scope"> <template v-slot:default="scope">
<div> <div>
<ms-table-operator <ms-table-operator