prodModalContent.html 859 B

123456789101112131415161718192021222324252627282930
  1. <style>
  2. .modal-header{
  3. padding:5px;
  4. }
  5. </style>
  6. <div class="modal-header" stop-event="touchend">
  7. <p>
  8. 搜索物料:<input type="text" ng-model="search">
  9. </p>
  10. </div>
  11. <div class="modal-body" stop-event="touchend">
  12. <table id='tableResult' cellspacing='0' cellpadding='3' style="width:100%;">
  13. <thead>
  14. <tr style='background-color: #eee;'>
  15. <td width='40px;'>行号</td>
  16. <td width='104px;'>单号</td>
  17. <td width='97px;'>料号</td>
  18. </tr>
  19. </thead>
  20. <tr ng-repeat='item in items | filter:{PD_PRODCODE:search}'
  21. ng-show="search" ng-click="selectPrCode(item)">
  22. <td width='40px;'>{{item.PD_PDNO}}</td>
  23. <td>{{item.PD_ORDERCODE}}</td>
  24. <td>{{item.PD_PRODCODE}}</td>
  25. </tr>
  26. </table>
  27. </div>
  28. <div class="modal-footer">
  29. <button class="btn-sm btn-warning col-xs-2 col-xs-offset-7" ng-click="cancel()">取消</button>
  30. </div>