1234567891011121314151617181920212223242526272829303132333435363738 |
- <link rel="stylesheet" href="__PUBLIC__/html/bootstrap-3.3.7/css/bootstrap.min.css">
- <ul>
- <li class="content-bottom-li">
- <a style="display:inline;">本页共 <b style="color:red;"> {$count} </b> 个设备<a/>
- <a href="__MODULE__/Maintinfo/maintlist/compangid/{$companyid}/type/{$type}/count/{$count}" style="float:right;margin-right:30px;">报修纪录</a>
- </li>
- <volist name="ResData" id="vo" >
- <form action="__MODULE__/Maintinfo/setform" method="post">
- <input name="count" type="hidden" value="{$count}"/>
- <input name="companyid" type="hidden" value="{$vo.company}"/>
- <input name="phone" type="hidden" value="{$phone}"/>
- <input name="owner_code" type="hidden" value="{$vo.owner_code}"/>
- <input name="owner_name" type="hidden" value="{$vo.owner_name}"/>
- <input name="type" type="hidden" value="{$type}"/>
- <li class="content-bottom-li">
- <a style="text-decoration:none;padding-bottom:10px;">
- <p class="span-ffist" style="width:100%;">{$vo.owner_name}
- <if condition="$vo.dstatus eq '在线' ">
- <span style="color: #49D013;margin-right:30px;">{$vo.dstatus}</span>
-
- <else />
- <span style="clear:both;margin-right:30px;">{$vo.dstatus}</span>
- </if>
- </p>
- <p>设备ID:{$vo.owner_code}<button style="border:none;;margin-right:30px;float:right;"><img width=30 height=30 src="__PUBLIC__/wxapp/images/baoxiu.png"/></button></p>
- </a>
-
- </li>
- </form>
- </volist>
- </ul>
- <button type="button" onclick="tijiao()" class="btn btn-info col-xs-12" style="margin-bottom:20px;">提交</button>
- <script>
- console.log($(".span-ffist").length);
- function tijiao(){
- $('#weibao1').submit();
- }
- </script>
|