|
@@ -4,7 +4,7 @@
|
|
|
* @Description: 负面标签
|
|
|
* @Author: Cheney
|
|
|
*/
|
|
|
-import { Delete, DocumentCopy, Edit, InfoFilled, Plus } from '@element-plus/icons-vue';
|
|
|
+import { CopyDocument, Delete, InfoFilled, Plus } from '@element-plus/icons-vue';
|
|
|
import * as api from '../api';
|
|
|
import PermissionButton from '/@/components/PermissionButton/index.vue';
|
|
|
import { usePagination } from '/@/utils/usePagination';
|
|
@@ -37,7 +37,7 @@ const gridRef = ref();
|
|
|
const gridOptions: any = reactive({
|
|
|
// id: 'NegativeLabel-table',
|
|
|
// keepSource: true,
|
|
|
- height: 620,
|
|
|
+ height: 800,
|
|
|
size: 'mini',
|
|
|
border: false,
|
|
|
round: true,
|
|
@@ -135,12 +135,17 @@ onMounted(() => {
|
|
|
</el-descriptions-item>
|
|
|
<el-descriptions-item>
|
|
|
<template #label>
|
|
|
- <div class="title-item">评论内容</div>
|
|
|
+ <div class="title-item flex items-center">
|
|
|
+ <span>
|
|
|
+ 评论内容
|
|
|
+ </span>
|
|
|
+ <el-icon class="ml-2 cursor-pointer" @click="handleCopy(rowData.content)">
|
|
|
+ <CopyDocument />
|
|
|
+ </el-icon>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
<span class="cell-item">{{ rowData.content }}</span>
|
|
|
- <el-icon class="ml-2 cursor-pointer" @click="handleCopy(rowData.content)">
|
|
|
- <DocumentCopy />
|
|
|
- </el-icon>
|
|
|
+
|
|
|
</el-descriptions-item>
|
|
|
</el-descriptions>
|
|
|
</el-card>
|
|
@@ -218,11 +223,11 @@ onMounted(() => {
|
|
|
}
|
|
|
|
|
|
.drawer-container :deep(.el-drawer__header) {
|
|
|
- border-bottom: none;
|
|
|
- font-weight: 500;
|
|
|
+ border-bottom: none;
|
|
|
+ font-weight: 500;
|
|
|
}
|
|
|
|
|
|
.drawer-container :deep(.el-drawer__title) {
|
|
|
- font-size: 18px;
|
|
|
+ font-size: 18px;
|
|
|
}
|
|
|
</style>
|