| 123456789101112131415161718192021 |
- <?php
- namespace zin;
- jsVar('method', $this->app->methodName);
- jsVar('pageParams', $this->app->params);
- featureBar
- (
- to::before
- (
- picker
- (
- width('120px'),
- set::items($deptUsers),
- set::value($user->id),
- set::required(true),
- set::onChange(jsRaw("(value) => switchAccount(value)"))
- )
- ),
- set::items($this->userZen->getFeatureBarMenus($user))
- );
|