解决抽样比例回车刷新页面
Showing
2 changed files
with
8 additions
and
1 deletions
| ... | @@ -116,6 +116,13 @@ body { | ... | @@ -116,6 +116,13 @@ body { |
| 116 | textarea { | 116 | textarea { |
| 117 | font-family: inherit; | 117 | font-family: inherit; |
| 118 | } | 118 | } |
| 119 | |||
| 120 | .el-table__inner-wrapper::before { | ||
| 121 | transform: scaleY(1); /* 触发硬件加速或强制重绘 */ | ||
| 122 | transform-origin: 0 0; | ||
| 123 | min-height: 1px; | ||
| 124 | } | ||
| 125 | |||
| 119 | // 列表页全局样式 | 126 | // 列表页全局样式 |
| 120 | .el-table.list-table { | 127 | .el-table.list-table { |
| 121 | margin: 20px 0; | 128 | margin: 20px 0; | ... | ... |
| ... | @@ -616,7 +616,7 @@ const panelChange = (scope, row) => { | ... | @@ -616,7 +616,7 @@ const panelChange = (scope, row) => { |
| 616 | 616 | ||
| 617 | </script> | 617 | </script> |
| 618 | <template> | 618 | <template> |
| 619 | <el-form ref="ruleFormRef" class="dialog-form-inline" :class="[props.col]" :inline="true" :model="formInline" | 619 | <el-form ref="ruleFormRef" class="dialog-form-inline" :class="[props.col]" :inline="true" :model="formInline" @submit.prevent |
| 620 | :rules="formRules"> | 620 | :rules="formRules"> |
| 621 | <template v-for="(item, index) in formItemList"> | 621 | <template v-for="(item, index) in formItemList"> |
| 622 | <el-form-item v-if="item.visible ?? true" :key="'form_item_' + index" :prop="item.field" | 622 | <el-form-item v-if="item.visible ?? true" :key="'form_item_' + index" :prop="item.field" | ... | ... |
-
Please register or sign in to post a comment