image.php 832 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | 设备记录
  5. |--------------------------------------------------------------------------
  6. */
  7. $view
  8. ->set('Maze::setInput("menu", "2")')
  9. ->fetch(array('.log-title', 0), '设备列表')
  10. ->fetch
  11. (
  12. '.image-tab',
  13. 'company/info.device_image'
  14. )
  15. ->fetch
  16. (
  17. '.image-list .image-item',
  18. 'company/info.device_image_data',
  19. array
  20. (
  21. '.title' => array
  22. (
  23. 'html' => '1号摄像头,2015.10.11 15:13',
  24. ),
  25. 'img' => array
  26. (
  27. 'src' => 'img/image3.jpg',
  28. ),
  29. 'self' => array
  30. (
  31. 'class' => '<{Maze::lace("mr0,", $i+1, 2)}>',
  32. ),
  33. )
  34. )
  35. # 分页
  36. ->fetch('.page','<{Maze::load("company/info.msg_page")}>');
  37. include('inc/device.php');