1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- namespace App\Service\Device;
- class DeviceService extends Service
- {
- public function deviceList(){
- $list = [
- [
- 'id' => '1',
- 'title' => '木工',
- 'url' => '/cms/mg',
- 'device' => [
- 'is_scan' => 1,
- 'is_box' => 1,
- ],
- ],[
- 'id' => '2',
- 'title' => '油漆',
- 'url' => '/cms/yq',
- 'device' => [
- 'is_scan' => 1,
- 'is_box' => 0,
- ],
- ],[
- 'id' => '3',
- 'title' => '包装',
- 'url' => '/cms/bz',
- 'device' => [
- 'is_scan' => 1,
- 'is_box' => 1,
- ],
- ],[
- 'id' => '4',
- 'title' => '退出',
- 'url' => '/cms/login_out',
- 'device' => [
- 'is_scan' => 1,
- 'is_box' => 1,
- ],
- ],
- ];
- return [200,$list];
- }
- }
|