Commit f27f3d42dcdd8d4baadb24082e81a843452d1419
1 parent
06249cc2
Exists in
master
and in
1 other branch
调整示例样式
Showing
2 changed files
with
6 additions
and
10 deletions
Show diff stats
examples/views/page/form-new/index.vue
examples/views/page/other.vue
| ... | ... | @@ -19,10 +19,14 @@ |
| 19 | 19 | margin: 10px; |
| 20 | 20 | box-shadow: -2px 2px 8px grey; |
| 21 | 21 | } |
| 22 | + | |
| 23 | +.page-other .el-input .el-input__inner, .el-textarea__inner { | |
| 24 | + border-radius: 0; | |
| 25 | +} | |
| 22 | 26 | </style> |
| 23 | 27 | |
| 24 | 28 | <template> |
| 25 | - <div> | |
| 29 | + <div class="page-other"> | |
| 26 | 30 | <pre>{{ model }}</pre> |
| 27 | 31 | <eg-table v-model="tableData" :list="option.list" :tableProps="{ border: true }" editable |
| 28 | 32 | @cell-edit="onCellEdit" @row-new="onRowNew" @row-edit="onRowEdit" @row-delete="onRowDelete" |
| ... | ... | @@ -78,9 +82,7 @@ export default { |
| 78 | 82 | }, |
| 79 | 83 | ], |
| 80 | 84 | }, |
| 81 | - { | |
| 82 | - group: { title: '', span: 12 }, | |
| 83 | - }, | |
| 85 | + { span: 12 }, | |
| 84 | 86 | { |
| 85 | 87 | group: { title: '住址', key: 'location', span: 24 }, |
| 86 | 88 | list: [ | ... | ... |