61 lines
1.6 KiB
HTML
61 lines
1.6 KiB
HTML
<style>
|
|
.modal-body {
|
|
width:90%;
|
|
margin:0 auto;
|
|
}
|
|
|
|
.modal-body ul {
|
|
border:1px solid #ddd;
|
|
height:300px;
|
|
padding-left:0px;
|
|
text-align:center;
|
|
border-radius:5px;
|
|
}
|
|
.modal-body ul li {
|
|
list-style-type:none;
|
|
cursor:pointer;
|
|
padding:8px;
|
|
}
|
|
.modal-body ul li:hover {
|
|
background:#ddd;
|
|
}
|
|
.modal-body .col-sm-2 {
|
|
padding-top:130px;
|
|
}
|
|
.col-sm-2 button{
|
|
margin-bottom:10px;
|
|
width:60px;
|
|
height:30px;
|
|
border-radius:5px;
|
|
line-height:4px;
|
|
}
|
|
</style>
|
|
|
|
<div>
|
|
<div classs="modal-top">
|
|
<button class="btn btn-success form-control disabled" style="text-align:center">[所有食品类别]类别维护</button>
|
|
</div>
|
|
<div class="modal-body row">
|
|
<div class="col-sm-5">
|
|
<p style="text-align:center">待导出的类别</p>
|
|
<ul>
|
|
<li>导出类别名称</li>
|
|
</ul>
|
|
</div>
|
|
<div class="col-sm-2">
|
|
|
|
<button class="btn btn-default"> 删除 » </button>
|
|
<button class="btn btn-default"> « 取消</button>
|
|
</div>
|
|
<div class="col-sm-5">
|
|
<p style="text-align:center">取消导出类别</p>
|
|
<ul>
|
|
<li>导出的类别名称</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button class="btn btn-md btn-info" ng-click="affirm()">确定</button>
|
|
<button class="btn btn-md btn-info" ng-click="return()">返回</button>
|
|
</div>
|
|
</div> |