|
@@ -2,7 +2,7 @@
|
|
<el-dialog v-model="visibleDialog" class="le-dialog" title="历史版本" width="860" destroy-on-close :close-on-click-modal="false">
|
|
<el-dialog v-model="visibleDialog" class="le-dialog" title="历史版本" width="860" destroy-on-close :close-on-click-modal="false">
|
|
<!-- LeTable 组件使用 -->
|
|
<!-- LeTable 组件使用 -->
|
|
<LeTable
|
|
<LeTable
|
|
- ref="tableRef"
|
|
|
|
|
|
+ class="local_table"
|
|
v-model:searchParams="tableOpts.searchParams"
|
|
v-model:searchParams="tableOpts.searchParams"
|
|
v-bind="tableOpts"
|
|
v-bind="tableOpts"
|
|
v-model:curRow="tableOpts.curRow"
|
|
v-model:curRow="tableOpts.curRow"
|
|
@@ -167,4 +167,13 @@ watch(
|
|
)
|
|
)
|
|
</script>
|
|
</script>
|
|
|
|
|
|
-<style></style>
|
|
|
|
|
|
+<style lang="scss" scoped>
|
|
|
|
+.local_table {
|
|
|
|
+ padding: 0;
|
|
|
|
+ :deep(.tableBody) {
|
|
|
|
+ .toolBarWrap {
|
|
|
|
+ display: none;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+</style>
|