Commit 1090ffec authored by liboyang's avatar liboyang

打印封条

parent 6f85412d
......@@ -56,12 +56,11 @@
<tr ng-click="showDetail(item.ID)" ng-repeat="item in tagPrintData">
<td>{{$index+1}}</td>
<td>{{item.POLICE_CODE}}</td>
<td>{{item.POLICE_NAME}}</td>
<td>{{item.GAJG_MC}}</td>
<td>{{item.FINISH_COUNT}}</td>
<td>{{item.download}}</td>
<td>{{item.electricCount}}</td>
<td ng-if="item.STATE==0">未复核</td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
......@@ -77,33 +76,40 @@
<th>受理号</th>
<th>姓名</th>
<th>身份证号</th>
<th>签发机关</th>
<th>打印标记</th>
<th>电写标记</th>
<th>电质检标记</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="item in json.policeCardsList">
<td>{{$index+1}}</td>
<td>{{item.acceptNo}}</td>
<td>{{item.username}}</td>
<td>{{item.idCard}}</td>
<td>{{item.qfjg}}</td>
<td>{{item.ACCEPT_NO}}</td>
<td>{{item.NAME}}</td>
<td>{{item.CARD_ID}}</td>
<td>
<span ng-if="item.isPrint==1"
<span ng-if="item.downloadDate==null"
style="color: red"
class="glyphicon glyphicon-remove">
</span>
<span ng-if="item.isPrint==0"
style="size: 6px">2019-03-04 19:14</span>
<span ng-if="item.downloadDate!=null"
style="size: 6px">{{item.downloadDate | date:'MM-dd hh:mm'}}</span>
</td>
<td>
<span ng-if="item.isEwrite==1"
<span ng-if="item.electricDate==null"
style="color: red"
class="glyphicon glyphicon-remove">
</span>
<span ng-if="item.isEwrite==0"
style="size: 6px">2019-03-04 19:14</span>
<span ng-if="item.electricDate!=null"
style="size: 6px">{{item.electricDate| date:'MM-dd hh:mm'}}</span>
</td>
<td>
<span ng-if="item.checkDate==null"
style="color: red"
class="glyphicon glyphicon-remove">
</span>
<span ng-if="item.checkDate!=null"
style="size: 6px">{{item.checkDate| date:'MM-dd hh:mm'}}</span>
</td>
</tr>
</tbody>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment