fcfbe7cd3065ac36ffb2a08c662b3aee.php 1.4 KB

12345678910111213141516171819202122232425262728
  1. <?php if (!defined('THINK_PATH')) exit();?><!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
  5. <meta charset="utf-8">
  6. <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport">
  7. <meta content="yes" name="apple-mobile-web-app-capable">
  8. <meta content="black" name="apple-mobile-web-app-status-bar-style">
  9. <meta content="telephone=no" name="format-detection">
  10. <!-- <link rel="stylesheet" type="text/css" href="http://www.jq22.com/jquery/font-awesome.4.6.0.css"> -->
  11. <script src="/jdxf/Public/wxapp/js/jquery-1.8.3/jquery.min.js"></script>
  12. <!-- 引入 ECharts 文件 -->
  13. <script src="/jdxf/Public/wxapp/js/echarts.min.js"></script>
  14. <link rel="stylesheet" href="/jdxf/Public/wxapp/css/bootstrap.min.css">
  15. <link rel="stylesheet" href="/jdxf/Public/wxapp/css/jdxf.css">
  16. <title>设备列表</title>
  17. </head>
  18. <body>
  19. <ol style="margin-top:20px; ">
  20. <?php if(is_array($device)): $i = 0; $__LIST__ = $device;if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$vo): $mod = ($i % 2 );++$i;?><li>
  21. <div>设备编号:<?php echo ($vo["owner_code"]); ?></div>
  22. <div>设备名称:<?php echo ($vo["owner_name"]); ?></div>
  23. <div><a href="/jdxf/wxapp2.php/Home/Face/dev_list/id/<?php echo ($vo["id"]); ?>">查看设备</a></div>
  24. </li>
  25. <hr><?php endforeach; endif; else: echo "" ;endif; ?>
  26. </ol>
  27. </body>
  28. </html>