108 lines
3.3 KiB
HTML
108 lines
3.3 KiB
HTML
<style>
|
|
|
|
.modal-body {
|
|
overflow:hidden;
|
|
}
|
|
.modal-body .one ,.modal-body .two{
|
|
width:50%;
|
|
float:left;
|
|
|
|
}
|
|
|
|
|
|
.modal-body input,.modal-body select {
|
|
margin-bottom:15px;
|
|
width:50%;
|
|
|
|
}
|
|
|
|
.modal-body label {
|
|
display:inline-block;
|
|
width:25%;
|
|
text-align:right;
|
|
|
|
}
|
|
|
|
|
|
.modal-body button {
|
|
width:60px;
|
|
height:30px;
|
|
border-radius:5px;
|
|
|
|
|
|
line-height:11px;
|
|
|
|
}
|
|
</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>**</span>必须填写</p>
|
|
<div class="one">
|
|
<label>采样点编号:</label>
|
|
<input type="text" class="form-control input-sm inline m-r" ng-model="cydbh" /><span>**</span>
|
|
|
|
|
|
<label>单位名称:</label>
|
|
<input type="text" class="form-control input-sm inline m-r" ng-model="dwmc" /><span>**</span>
|
|
|
|
<label>生产产品:</label>
|
|
<input type="text" class="form-control input-sm inline m-r" ng-model="sccp" /><span>**</span>
|
|
|
|
<label>餐饮品牌或配送范围:</label>
|
|
<input type="text" class="form-control input-sm inline m-r" ng-model="cypb" />
|
|
|
|
<label>区县:</label>
|
|
<select class="form-control input-sm inline m-r" ng-model="qx" ng-init="qx=QXdata[0]" ng-options="a.name for a in QXdata">
|
|
|
|
</select>
|
|
|
|
|
|
<label>环节亚类:</label>
|
|
<input type="text" class="form-control input-sm inline m-r" ng-model="hjyl" /><span>**</span> <button class="btn btn-default">选择</button>
|
|
|
|
|
|
<label>联系人:</label>
|
|
<input type="text" class="form-control input-sm inline m-r" ng-model="lxr" /><span>**</span>
|
|
|
|
|
|
<label>备注:</label>
|
|
<input type="text" class="form-control input-sm inline m-r" ng-model="bz" /><span>**</span>
|
|
|
|
</div>
|
|
|
|
<div class="two">
|
|
<label>样品类别:</label>
|
|
<input type="text" class="form-control input-sm inline m-r" ng-model="ydlb" />
|
|
|
|
|
|
<label>地址:</label>
|
|
<input type="text" class="form-control input-sm inline m-r" ng-model="dz" /><span>**</span>
|
|
|
|
<label>核定品种:</label>
|
|
<input type="text" class="form-control input-sm inline m-r" ng-model="hdpz" />
|
|
|
|
|
|
<label>生产或经营范围:</label>
|
|
<input type="text" class="form-control input-sm inline m-r" ng-model="jyfw" />
|
|
|
|
<label>环节:</label>
|
|
<input type="text" class="form-control input-sm inline m-r" ng-model="hj" /><span>**</span> <button class="btn btn-default">选择</button>
|
|
|
|
<label>联系电话:</label>
|
|
<input type="text" class="form-control input-sm inline m-r" ng-model="tel" /><span>**</span>
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button class="btn btn-info btn-sm" ng-click="Ok()">保存</button>
|
|
<button class="btn btn-info btn-sm" ng-click="Cancel()">取消</button>
|
|
</div>
|
|
|
|
</div> |