| | |
| | | <template> |
| | | <basic-container> |
| | | <avue-crud ref="crud" :data="data" :option="option" :page.sync="page" :permission="permissionList" :search.sync="search" |
| | | <avue-crud ref="crud" :data="data" :option="option" :page.sync="page" :permission="permissionList" |
| | | :search.sync="search" |
| | | :table-loading="loading" |
| | | @on-load="getDataList" @row-save="handleSave" @row-del="handleDelete" @row-update="handleEdit" |
| | | @refresh-change="handleRefresh" @size-change="handleSizePage" @current-change="handleCurrentPage" |
| | |
| | | option() { |
| | | return { |
| | | height: "auto", |
| | | calcHeight: 20, |
| | | tip: false, |
| | | border: true, |
| | | align: 'center', |
| | |
| | | } |
| | | </script> |
| | | <style lang="scss" scoped> |
| | | ::v-deep(.avue-crud .el-select) { |
| | | width: 100px !important; |
| | | } |
| | | ::v-deep{ |
| | | .avue-crud .el-select { |
| | | width: 100px !important; |
| | | } |
| | | } |
| | | </style> |