## 模块编辑
#### 示例效果:路径/list/edit/olny
![](/static/plugins/tphp/backstage/module/edit/menu.png)
要设置为编辑模式
数据设置
```
<?php
return [
'type' => 'sql',
'method' => 'list',
'config' => [
'table' => 'area'
],
];
```
列表设置
```
<?php
return [
'handle' => [
'title' => [
'type' => 'text', // 默认为text类型
'name' => '地名'
]
],
'handleinit' => [
'id' => '122' // 编辑id为122的数据行,没有则会增加该行数据
],
];
```
配置时其他设置也可以完全和列表一样,只是多加了handleinit属性
![](/static/plugins/tphp/backstage/module/edit/demo.gif)