countingContents.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <style>
  2. .m-b-10 {
  3. margin-bottom: 10px;
  4. }
  5. .m-tb-10{
  6. margin-bottom: 10px;
  7. margin-top: 10px;
  8. }
  9. .col-xs-4 {
  10. padding-left:2px;
  11. padding-right:2px;
  12. }
  13. input{
  14. line-height:28px;
  15. }
  16. .row {
  17. margin-left: 0px;
  18. margin-right: 0px;
  19. }
  20. .form-group{
  21. margin-bottom:5px;
  22. }
  23. .m-l-15 {
  24. margin-left: 15px;
  25. }
  26. </style>
  27. <div style="min-height: 400px;" class="m-b-10" ng-controller="CountingCtrl">
  28. <div><a ng-href="#/index" class="m-l-15 btn btn-success btn-sm m-tb-10" > 返回 </a></div>
  29. <div class="">
  30. <form class="form-horizontal col-xs-offset-2">
  31. <div class="form-group">
  32. <input type="text" class="col-xs-4 " placeholder="盘点底稿编号" ng-model="st_code" id="st_code" ng-keyup="find($event,st_code)" required>
  33. <input type="text" class="col-xs-4 m-l-15 " placeholder="仓库编号" ng-model="st_whcode" id="st_whcode" required readonly>
  34. </div>
  35. <div class="col-xs-offset-1">
  36. <div class="form-group">
  37. <label> <input name="Counting" type="radio" value="makeMaterial" ng-model="Counting"/>原材料盘点 </label>
  38. </div>
  39. <div class="form-group">
  40. <label><input name="Counting" type="radio" value="Finish" ng-model="Counting"/>完工品盘点 </label>
  41. </div>
  42. <button ng-click="confirm()" type="button" class="btn btn-success btn-sm m-l-18" >确认</button>
  43. </div>
  44. </form>
  45. </div>
  46. </div>