| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <!-- MAIN CONTENT -->
- <div id="content" style=" border-width:5px; margin-left:2%;position:relative;margin-right:2%;">
- <!-- widget grid -->
- <section id="widget-grid" widget-grid>
- <!-- START ROW -->
- <div class="row">
- <!-- NEW COL START -->
- <article class="col-sm-12 col-md-12 col-lg-12">
- <!-- Widget ID (each widget will need unique ID)-->
- <div jarvis-widget id="form-grid-widget" data-widget-colorbutton="false" data-widget-editbutton="false"
- data-widget-custombutton="false">
- <!-- widget div-->
- <div>
- <!-- widget content -->
- <div class="widget-body no-padding">
- <form id="storageSealed-form" class="smart-form ng-pristine ng-valid"
- data-validator-option="validateOptions" novalidate="novalidate"
- style=" border-width:5px; margin-left:2%;position:relative;margin-right:2%;">
- <header>
- <a href-void class="btn btn-default btn-xs" ng-click="retList()">
- <i class="fa fa-angle-left"></i> 返回
- </a>
- <strong>{{title}}</strong>
- <span class="pull-right font-xs">带<span style="color: red;">*</span>的部分必须填写</span>
- </header>
- <fieldset>
- <div class="row">
- <section class="col col-3">
- <label class="label">仓房名称:<span style="color: red;margin-left: 5px;text-align: center;">*</span></label>
- <label class="select">
- <select ng-model="sealedStorage.houseId" ng-disabled="isNotEdit" ng-change="loadWare()"
- ng-options="store.houseId as store.houseName for store in sealedStorageList"
- class="form-control" required>
- <option value="">--请选择--</option>
- </select>
- </label>
- </section>
- <section class="col col-3">
- <label class="label">货位名称:<span style="color: red;margin-left: 5px;text-align: center;">*</span></label>
- <label class="select">
- <select ng-model="sealedStorage.warehouseId" ng-disabled="isNotEdit" ng-change="checkGrainAttribute()"
- ng-options="ware.warehouseId as ware.warehouseName for ware in warelist"
- class="form-control" required>
- <option value="">--请选择--</option>
- </select>
- </label>
- </section>
- <section class="col col-3">
- <label class="label">粮食品种:<span style="color: red;margin-left: 5px;text-align: center;">*</span></label>
- <label class="input">
- <input type="text" ng-model="dicData[sealedStorage.grainKind]" name="idCard"
- placeholder="" ng-readonly="true" sfzhm="true" maxlength="18" required>
- </label>
- </section>
- <section class="col col-3">
- <label class="label">粮食品性质:<span style="color: red;margin-left: 5px;text-align: center;">*</span></label>
- <label class="input">
- <input type="text" ng-model="dicData[sealedStorage.grainAttribute]" name="idCard"
- placeholder="" ng-readonly="true" sfzhm="true" maxlength="18" required>
- </label>
- </section>
- </div>
- <div class="row">
- <section class="col col-3">
- <label class="label">封仓数量(公斤):<span style="color: red;margin-left: 5px;text-align: center;">*</span></label>
- <label class="input">
- <input type="text" ng-model="sealedStorage.sealedNumber" name="idCard"
- placeholder="" ng-readonly="true" sfzhm="true" maxlength="18" required>
- </label>
- </section>
- <section class="col col-3">
- <label class="label">等级:<span style="color: red;margin-left: 5px;text-align: center;">*</span></label>
- <label class="input">
- <input type="text" ng-model="dicData[sealedStorage.grainGrade]" name="idCard"
- placeholder="" ng-readonly="true" sfzhm="true" maxlength="18" required>
- </label>
- </section>
- <section class="col col-3">
- <label class="label">产地:<span style="color: red;margin-left: 5px;text-align: center;">*</span></label>
- <label class="input">
- <input type="text" ng-model="dicData[sealedStorage.placeOfOrigin]" name="idCard"
- placeholder="" ng-readonly="true" sfzhm="true" maxlength="18" required>
- </label>
- </section>
- <section class="col col-3">
- <label class="label">收获年度:<span style="color: red;margin-left: 5px;text-align: center;">*</span></label>
- <label class="input">
- <input type="text" ng-model="dicData[sealedStorage.harvestYear]" name="idCard"
- placeholder="" ng-readonly="true" sfzhm="true" maxlength="18" required>
- </label>
- </section>
- </div>
- <div class="row">
- <section class="col col-9">
- <label class="label">备注:</label>
- <label class="textarea">
- <textarea type="textarea" ng-model="sealedStorage.remarks" ng-disabled="isNotEdit"></textarea>
- </label>
- </section>
- </div>
- </fieldset>
- <div ng-include="'app/act/util/sealedConfirmation-audit.html'"></div>
- </form>
- </div>
- </div>
- </div>
- </article>
- </div>
- </section>
- </div>
|