12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- /*
- |--------------------------------------------------------------------------
- | 设备记录
- |--------------------------------------------------------------------------
- */
- $view
- ->set('Maze::setInput("menu", "2")')
- ->fetch(array('.log-title', 0), '设备列表')
- ->fetch
- (
- '.image-tab',
- 'company/info.device_image'
- )
- ->fetch
- (
- '.image-list .image-item',
- 'company/info.device_image_data',
- array
- (
- '.title' => array
- (
- 'html' => '1号摄像头,2015.10.11 15:13',
- ),
-
- 'img' => array
- (
- 'src' => 'img/image3.jpg',
- ),
-
- 'self' => array
- (
- 'class' => '<{Maze::lace("mr0,", $i+1, 2)}>',
- ),
- )
- )
- # 分页
- ->fetch('.page','<{Maze::load("company/info.msg_page")}>');
- include('inc/device.php');
|