You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
534 B
19 lines
534 B
![]()
2 weeks ago
|
|
||
|
# BaseControl-页面操作区域
|
||
|
默认被包含在BaseTable中,可单独使用
|
||
|
```html
|
||
|
<BaseControl
|
||
|
:single="single"
|
||
|
:multiple="multiple"
|
||
|
:showAdd="props.tableOptions.showAddBtn"
|
||
|
:showEdit="props.tableOptions.showEditBtn"
|
||
|
:showDelete="props.tableOptions.showDeleteBtn"
|
||
|
:showExport="props.tableOptions.showExportBtn"
|
||
|
:showImport="props.tableOptions.showImportBtn"
|
||
|
:permission="props.tableOptions.permission"
|
||
|
@add="handleAdd"
|
||
|
@edit="handleEdit"
|
||
|
@delete="deleteTableData"
|
||
|
|
||
|
></BaseControl>
|
||
|
```
|