| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 | <!doctype html><html lang="en"><head>    <meta charset="UTF-8">    <meta name="viewport"          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">    <meta http-equiv="X-UA-Compatible" content="ie=edge">    <title>订单详情</title>    <link rel="stylesheet" href="/static/bootstrap-3.3.7/css/bootstrap.min.css" />    <style>        th{            width: 20%;            text-align: right;            padding-right: 50px;        }    </style></head><body><div>    <p><br></p>    <h3 class="text-center">订单详情    {eq name="type" value="0"}<a href="{:url('Todo/lists',['orgId'=>$orgId])}"><span class="text-muted" style="font-size: 14px;">返回上一页</span></a>{/eq}</h3>    <p><br></p>    <table class="table table-striped text-left" style="width: 100%">        <tr>            <th>类型</th>            <td>                {eq name="info['mode']" value="1"}报修{/eq}                {eq name="info['mode']" value="2"}保洁{/eq}                {eq name="info['mode']" value="3"}运送{/eq}                {eq name="info['mode']" value="4"}隐患预警{/eq}            </td>        </tr>        <tr>            <th>状态</th>            <td>                {$info['status']}            </td>        </tr>        <tr>            <th>科室</th>            <td>                {$info['dep']}            </td>        </tr>        <tr>            <th>内容</th>            <td>                {$info['content']}            </td>        </tr>        {eq name="info['mode']" value="1"}        <tr>            <th>报修类型</th>            <td>                {$info['repair_name']}            </td>        </tr>        {/eq}        {eq name="info['mode']" value="3"}        <tr>            <th>运送类型</th>            <td>                {$info['cate_title']}            </td>        </tr>        <tr>            <th>始发地</th>            <td>                {$info['start']}            </td>        </tr>        <tr>            <th>目的地</th>            <td>                {$info['end']}            </td>        </tr>        {/eq}        <tr>            <th>下单时间</th>            <td>                {$info['create_time']}            </td>        </tr>        <tr>            <th>派发时间</th>            <td>                {$info['send_time']}            </td>        </tr>        <tr>            <th>执行人</th>            <td>                {$info['names']}            </td>        </tr>    </table>    <p><br></p></div><script src="/static/jquery-1.11.3.min.js"></script><script>    function gotourl(_self) {        window.location.href = $(_self).attr('data-url');    }</script></body></html>
 |