46 lines
2.1 KiB
HTML
46 lines
2.1 KiB
HTML
<style>
|
|
.modal-body input,.modal-body select,.modal-body textarea{
|
|
width:70%;
|
|
background-color:#E7E7FE;
|
|
color:#0000DE;
|
|
}
|
|
.modal-body {
|
|
padding-left:30px;
|
|
}
|
|
</style>
|
|
<div>
|
|
<div class="modal-Top">
|
|
<button class="btn btn-success form-control disabled" style="text-align:center">[所有食品类别]类别维护</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<p text-align="center">新增[所有食品类别]子类别 <strong>注:</strong>带有<span style="color:red">**</span>必须填写</p>
|
|
|
|
|
|
|
|
<div>
|
|
<label for="SJLB">上级类别:</label>
|
|
<input id="SJLB" type="text" ng-model="NName" class="form-control input-sm inline m-r" /><br><br>
|
|
|
|
<label for="LEBM">类别编码:</label>
|
|
<input id="LEBM" type="text" ng-model="NID" class="form-control input-sm inline m-r" /><span style="color:red">**</span><br><br>
|
|
|
|
<label for="LBMC">类别名称:</label>
|
|
<input id="LBMC" type="text" ng-model="roleName" class="form-control input-sm inline m-r" /><span style="color:red">**</span><br><br>
|
|
|
|
<label for="YWMC">英文名称:</label>
|
|
<input id="YWMC" type="text" class="form-control input-sm inline m-r" /><br><br>
|
|
|
|
<label>启用标示:</label>
|
|
<select class="form-control input-sm inline m-r" ng-model="mySel" ng-init="mySel=sel[0]" ng-options="a.typeName for a in sel"></select>
|
|
<br><br>
|
|
<label for="BZ" >备 注:</label>
|
|
<textarea id="BZ" cols="20" rows="10" style="vertical-align:middle;" class="form-control input-sm inline m-r" placeholder="请输入备注"></textarea>
|
|
<br><br>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button class="btn btn-sm btn-info" ng-show="Okbtn" ng-click="Ok()">确定</button>
|
|
<button class="btn btn-sm btn-info" ng-show="updatebtn" ng-click="reset()">修改</button>
|
|
<button class="btn btn-sm btn-info" ng-click="return()">返回</button>
|
|
</div>
|
|
</div> |