mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 15:32:48 +08:00
7 lines
243 B
Plaintext
7 lines
243 B
Plaintext
|
|
${{var_name}}_list = [];
|
|
foreach ($this->model::{{name}} as $key => $value) {
|
|
${{var_name}}_list[] = ['value' => $key, 'label' => $value];
|
|
}
|
|
$this->assign('{{var_name}}', ${{var_name}}_list, true);
|