1234567891011121314151617181920212223242526272829303132 |
- <!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="__PUBLIC__/wxapp/js/jquery-1.8.3/jquery.min.js"></script>
- <!-- 引入 ECharts 文件 -->
- <script src="__PUBLIC__/wxapp/js/echarts.min.js"></script>
- <link rel="stylesheet" href="__PUBLIC__/wxapp/css/bootstrap.min.css">
- <link rel="stylesheet" href="__PUBLIC__/wxapp/css/jdxf.css">
- <title>设备列表</title>
- </head>
- <body>
- <ol style="margin-top:20px; ">
- <volist name="device" id="vo">
- <li>
- <div>设备编号:{$vo.owner_code}</div>
- <div>设备名称:{$vo.owner_name}</div>
- <div><a href="__MODULE__/Face/dev_list/id/{$vo.id}">查看设备</a></div>
- </li>
- <hr>
- </volist>
- </ol>
- </body>
- </html>
|