pageEdit.html 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <!-- MAIN CONTENT -->
  2. <div id="content" style=" border-width:5px; margin-left:2%;position:relative;margin-right:2%;">
  3. <!-- widget grid -->
  4. <section id="widget-grid" widget-grid>
  5. <!-- START ROW -->
  6. <div class="row">
  7. <!-- NEW COL START -->
  8. <article class="col-sm-12 col-md-12 col-lg-12">
  9. <!-- Widget ID (each widget will need unique ID)-->
  10. <div jarvis-widget id="form-grid-widget" data-widget-colorbutton="false" data-widget-editbutton="false"
  11. data-widget-custombutton="false">
  12. <!-- widget div-->
  13. <div>
  14. <!-- widget content -->
  15. <div class="widget-body no-padding">
  16. <form id="storageSealed-form" class="smart-form ng-pristine ng-valid"
  17. data-validator-option="validateOptions" novalidate="novalidate"
  18. style=" border-width:5px; margin-left:2%;position:relative;margin-right:2%;">
  19. <header>
  20. <a href-void class="btn btn-default btn-xs" ng-click="retList()">
  21. <i class="fa fa-angle-left"></i>&nbsp;返回&nbsp;
  22. </a>
  23. &nbsp;<strong>{{title}}</strong>
  24. <span class="pull-right font-xs">带<span style="color: red;">*</span>的部分必须填写</span>
  25. </header>
  26. <fieldset>
  27. <div class="row">
  28. <section class="col col-3">
  29. <label class="label">仓房名称:<span style="color: red;margin-left: 5px;text-align: center;">*</span></label>
  30. <label class="select">
  31. <select ng-model="sealedStorage.houseId" ng-disabled="isNotEdit" ng-change="loadWare()"
  32. ng-options="store.houseId as store.houseName for store in sealedStorageList"
  33. class="form-control" required>
  34. <option value="">--请选择--</option>
  35. </select>
  36. </label>
  37. </section>
  38. <section class="col col-3">
  39. <label class="label">货位名称:<span style="color: red;margin-left: 5px;text-align: center;">*</span></label>
  40. <label class="select">
  41. <select ng-model="sealedStorage.warehouseId" ng-disabled="isNotEdit" ng-change="checkGrainAttribute()"
  42. ng-options="ware.warehouseId as ware.warehouseName for ware in warelist"
  43. class="form-control" required>
  44. <option value="">--请选择--</option>
  45. </select>
  46. </label>
  47. </section>
  48. <section class="col col-3">
  49. <label class="label">粮食品种:<span style="color: red;margin-left: 5px;text-align: center;">*</span></label>
  50. <label class="input">
  51. <input type="text" ng-model="dicData[sealedStorage.grainKind]" name="idCard"
  52. placeholder="" ng-readonly="true" sfzhm="true" maxlength="18" required>
  53. </label>
  54. </section>
  55. <section class="col col-3">
  56. <label class="label">粮食品性质:<span style="color: red;margin-left: 5px;text-align: center;">*</span></label>
  57. <label class="input">
  58. <input type="text" ng-model="dicData[sealedStorage.grainAttribute]" name="idCard"
  59. placeholder="" ng-readonly="true" sfzhm="true" maxlength="18" required>
  60. </label>
  61. </section>
  62. </div>
  63. <div class="row">
  64. <section class="col col-3">
  65. <label class="label">封仓数量(公斤):<span style="color: red;margin-left: 5px;text-align: center;">*</span></label>
  66. <label class="input">
  67. <input type="text" ng-model="sealedStorage.sealedNumber" name="idCard"
  68. placeholder="" ng-readonly="true" sfzhm="true" maxlength="18" required>
  69. </label>
  70. </section>
  71. <section class="col col-3">
  72. <label class="label">等级:<span style="color: red;margin-left: 5px;text-align: center;">*</span></label>
  73. <label class="input">
  74. <input type="text" ng-model="dicData[sealedStorage.grainGrade]" name="idCard"
  75. placeholder="" ng-readonly="true" sfzhm="true" maxlength="18" required>
  76. </label>
  77. </section>
  78. <section class="col col-3">
  79. <label class="label">产地:<span style="color: red;margin-left: 5px;text-align: center;">*</span></label>
  80. <label class="input">
  81. <input type="text" ng-model="dicData[sealedStorage.placeOfOrigin]" name="idCard"
  82. placeholder="" ng-readonly="true" sfzhm="true" maxlength="18" required>
  83. </label>
  84. </section>
  85. <section class="col col-3">
  86. <label class="label">收获年度:<span style="color: red;margin-left: 5px;text-align: center;">*</span></label>
  87. <label class="input">
  88. <input type="text" ng-model="dicData[sealedStorage.harvestYear]" name="idCard"
  89. placeholder="" ng-readonly="true" sfzhm="true" maxlength="18" required>
  90. </label>
  91. </section>
  92. </div>
  93. <div class="row">
  94. <section class="col col-9">
  95. <label class="label">备注:</label>
  96. <label class="textarea">
  97. <textarea type="textarea" ng-model="sealedStorage.remarks" ng-disabled="isNotEdit"></textarea>
  98. </label>
  99. </section>
  100. </div>
  101. </fieldset>
  102. <div ng-include="'app/act/util/sealedConfirmation-audit.html'"></div>
  103. </form>
  104. </div>
  105. </div>
  106. </div>
  107. </article>
  108. </div>
  109. </section>
  110. </div>