12345678910111213141516171819202122232425262728 |
- <?php if (!defined('THINK_PATH')) exit();?><!DOCTYPE html>
- <html lang="en">
- <head>
- <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
- <meta charset="utf-8">
- <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport">
- <meta content="yes" name="apple-mobile-web-app-capable">
- <meta content="black" name="apple-mobile-web-app-status-bar-style">
- <meta content="telephone=no" name="format-detection">
- <!-- <link rel="stylesheet" type="text/css" href="http://www.jq22.com/jquery/font-awesome.4.6.0.css"> -->
- <script src="/jdxf/Public/wxapp/js/jquery-1.8.3/jquery.min.js"></script>
- <!-- 引入 ECharts 文件 -->
- <script src="/jdxf/Public/wxapp/js/echarts.min.js"></script>
- <link rel="stylesheet" href="/jdxf/Public/wxapp/css/bootstrap.min.css">
- <link rel="stylesheet" href="/jdxf/Public/wxapp/css/jdxf.css">
- <title>设备列表</title>
- </head>
- <body>
- <ol style="margin-top:20px; ">
- <?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>
- <div>设备编号:<?php echo ($vo["owner_code"]); ?></div>
- <div>设备名称:<?php echo ($vo["owner_name"]); ?></div>
- <div><a href="/jdxf/wxapp2.php/Home/Face/dev_list/id/<?php echo ($vo["id"]); ?>">查看设备</a></div>
- </li>
- <hr><?php endforeach; endif; else: echo "" ;endif; ?>
- </ol>
- </body>
- </html>
|