doctor-admin-components 1.0.14-beta.73 → 1.0.14-beta.74
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -4,8 +4,24 @@
|
|
|
4
4
|
<el-table v-loading="loading" :data="changeLogList">
|
|
5
5
|
<el-table-column label="模块标题" align="center" prop="changeTitle" />
|
|
6
6
|
<el-table-column label="操作人员" align="center" prop="operName" />
|
|
7
|
-
<el-table-column label="旧参数" align="center" prop="oldParam"
|
|
8
|
-
|
|
7
|
+
<el-table-column label="旧参数" align="center" prop="oldParam">
|
|
8
|
+
<template #default="{ row }">
|
|
9
|
+
<el-tooltip effect="dark" :content="row.oldParam" placement="top-start">
|
|
10
|
+
<div class="el-table-column-param-content">
|
|
11
|
+
{{ row.oldParam }}
|
|
12
|
+
</div>
|
|
13
|
+
</el-tooltip>
|
|
14
|
+
</template>
|
|
15
|
+
</el-table-column>
|
|
16
|
+
<el-table-column label="新参数" align="center" prop="newParam">
|
|
17
|
+
<template #default="{ row }">
|
|
18
|
+
<el-tooltip effect="dark" :content="row.newParam" placement="top-start">
|
|
19
|
+
<div class="el-table-column-param-content">
|
|
20
|
+
{{ row.newParam }}
|
|
21
|
+
</div>
|
|
22
|
+
</el-tooltip>
|
|
23
|
+
</template>
|
|
24
|
+
</el-table-column>
|
|
9
25
|
<el-table-column label="操作时间" align="center" prop="changeTime" width="180">
|
|
10
26
|
<template slot-scope="scope">
|
|
11
27
|
<span>{{ utc2local(scope.row.changeTime, 'yyyy-MM-DD HH:mm:ss') }}</span>
|
|
@@ -86,3 +102,14 @@ export default {
|
|
|
86
102
|
}
|
|
87
103
|
}
|
|
88
104
|
</script>
|
|
105
|
+
<style scoped>
|
|
106
|
+
.el-table-column-param-content {
|
|
107
|
+
white-space: pre-wrap;
|
|
108
|
+
word-break: break-word;
|
|
109
|
+
text-align: left;
|
|
110
|
+
display: -webkit-box;
|
|
111
|
+
-webkit-box-orient: vertical;
|
|
112
|
+
-webkit-line-clamp: 3;
|
|
113
|
+
overflow: hidden;
|
|
114
|
+
}
|
|
115
|
+
</style>
|