fix_操作日志_日志标题过长显示不全--bug=1006765 --user=王孝刚 【系统设置-操作日志】导入接口过多时操作日志标题过长导致超出屏幕边界,建议优化 https://www.tapd.cn/55049933/s/1049184

This commit is contained in:
wxg0103 2021-09-22 14:28:36 +08:00 committed by fit2-zhao
parent 7896af41eb
commit 37e9263ff4
2 changed files with 4 additions and 4 deletions

File diff suppressed because one or more lines are too long

View File

@ -94,13 +94,13 @@
</el-table-column>
<el-table-column prop="userName" :label="$t('operating_log.user')"/>
<el-table-column prop="projectName" :label="$t('commons.project')"/>
<el-table-column prop="operType" :label="$t('operating_log.type')">
<el-table-column prop="operType" :label="$t('operating_log.type')" width="100px">
<template v-slot:default="scope">
<span>{{ getType(scope.row.operType) }}</span>
</template>
</el-table-column>
<el-table-column prop="operModule" :label="$t('operating_log.object')" show-overflow-tooltip width="120px"/>
<el-table-column prop="operTitle" :label="$t('operating_log.name')" show-overflow-tooltip width="150px">
<el-table-column prop="operTitle" :label="$t('operating_log.name')" :show-overflow-tooltip="true" width="180px">
<template v-slot:default="scope">
<el-link v-if="isLink(scope.row)" style="color: #409EFF" @click="clickResource(scope.row)">
{{ scope.row.operTitle }}
@ -108,7 +108,7 @@
<span v-else>{{ scope.row.operTitle }}</span>
</template>
</el-table-column>
<el-table-column :label="$t('report.test_log_details')">
<el-table-column :label="$t('report.test_log_details')" width="100px">
<template v-slot:default="scope">
<el-link style="color: #409EFF" @click="openDetail(scope.row)">{{ $t('operating_log.info') }}</el-link>
</template>