| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 | {extend name="common/common2" /}{block name="main"}<style>    th,td{        padding: 10px;    }    th{        width: 80px;        text-align: right;    }    .text {        width: 200px;        display: inline-block;    }    .num {        margin-left: 20px;    }</style><style>    .page-content{        overflow: hidden;    }    .task-info, .patrol-task-info p,.patrol-task-info span {        font-size: 16px;    }    .table.table-bordered th {        width: 200px;    }    .task-info {        color: #099bef;        display: block;        margin-top: 20px;    }    .patrol-task-info {        margin: 5px 0;    }    .task-txt {        margin-left: 15%;    }    .task-addr-axis {        overflow: hidden;        padding-bottom: 30px;        height: 180px;        /*width: 1000px;*/        /*margin: 0 auto;*/    }    .time-horizontal {        list-style-type: none;        /*width: 1000px;*/        padding: 0px;        /*margin-top: 60px;*/    }    .time-horizontal li {        height: 70px;        float: left;        position: relative;        text-align: center;        width: 30%;        padding-top: 60px;        margin-bottom: 50px;        border-bottom: 2px solid #107ef1;    }    .time-horizontal li .yes:before {        content: '';        position: absolute;        top: 63px;        left: 48%;        width: 12px;        height: 12px;        /*border: 2px solid #0e51e8;*/        border-radius: 8px;        background: #099bef;        z-index: 100;    }    .time-horizontal li .no:before {        content: '';        position: absolute;        top: 63px;        left: 48%;        width: 12px;        height: 12px;        /*border: 2px solid #0e51e8;*/        border-radius: 8px;        background: #bcc5ca;        z-index: 100;    }    .time-horizontal li img {        width: 30px;        height: 33px;    }    .addr-txt {        display: block;        margin-top: 30px;    }</style><div class="row">    <div class="col-sm-12">        <div class="ibox float-e-margins">            <div class="ibox-content">                <h3>医废基本信息</h3>                <table class="table table-bordered">                    <tr>                        <th>收取科室</th><td>{$info['waste_device']}</td>                    </tr>                    <tr>                        <th>收取人</th><td>{$info['real_name']}</td>                    </tr>                    <tr>                        <th>称重序列号</th><td>{$info['serial_number']}</td>                    </tr>                    <tr>                        <th>类别</th>                        <td>                           {$info['cate']}                        </td>                    </tr>                    <tr>                        <th>重量</th><td>{$info['weight']}kg</td>                    </tr>                    <tr>                        <th>收取时间</th><td>{$info['create_time']}</td>                    </tr>                    <tr>                        <th>是否签字</th>                        <td>                            {if $info['sign']==0} 否 {else}                            是                            <img width="80" onclick="open_img(this)" src="{$info['sign_path']}" alt="">                            {/if}                        </td>                    </tr>                </table>                <p><br></p>                <h3>医废流程信息</h3>                <div class="patrol-task-info task-addr-axis">                    <ul class="time-horizontal">                        {if !empty($info['rlist'])}                       {foreach $info['rlist'] as $k=>$v}                        <li class="yes" style="cursor: pointer;">                            <a href="javascript:;">                                <b class="yes"></b>                            </a>                            <span class="addr-txt">                                {if $v['status'] == 0}已收取{/if}                                {if $v['status'] == 1}已交接{/if}                                {if $v['status'] == 2}已转运{/if}                                {if $v['status'] == 3}医废异常{/if}                                <br>                                {$v['real_name']} <br>                                {$v['create_time']} <br>                        </span>                        </li>                       {/foreach}                       {/if}                    </ul>                </div>            </div>        </div>    </div></div>{/block}{block name="script"}<script></script>{/block}
 |