12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <%--
- Created by IntelliJ IDEA.
- User: llh
- Date: 2016/1/7
- Time: 14:06
- To change this template use File | Settings | File Templates.
- --%>
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="utf-8"%>
- <%@include file="/WEB-INF/ehr/commons/jsp/commonInclude.jsp" %>
- <style type="text/css">
- .pane-attribute-toolbar{
- display: block;
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 50px;
- padding: 6px 0 4px;
- background-color: #fff;
- border-top: 1px solid #ccc;
- text-align: right;
- }
- .close-toolbar{
- margin-right: 20px;
- }
- input{
- height: 28px;
- width: 240px;
- }
- .m-form-inline .m-form-group{
- padding-bottom:0 !important;
- }
- </style>
- <div id="div_version_info_form" data-role-form class="m-form-inline f-mt20" style="display:none;margin-top: 20px;">
- <div class="m-form-group">
- <label>适配方案名称:</label>
- <div class="l-text-wrapper m-form-control">
- <label type="text" class="f-w240 f-pl5" id="txt_schemeNm" style="text-align: left"/>
- </div>
- </div>
- <div class="m-form-group">
- <label><span class="red">* </span>适配版本名称:</label>
- <div class="l-text-wrapper m-form-control">
- <input type="text" class="required f-w240 f-pl5" id="txt_versionNm" name="name">
- </div>
- </div>
- <div class="m-form-group" id="div_add_baseVersion">
- <label>基础版本名称:</label>
- <div class="m-form-control">
- <input type="text" class="f-w240 f-pl5" id="sel_baseVersion" data-type="select" name="baseVersion" style="text-align: left"/>
- </div>
- </div>
- <div class="m-form-bottom">
- <div id="btn_close" class="l-button l-button-no">
- <span>取消</span>
- </div>
- <div id="btn_save" class="l-button">
- <span>确认</span>
- </div>
- </div>
- <input type="hidden" id="schemeId" name="schemeId"/>
- <input type="hidden" id="type" value=""/>
- <input type="hidden" id="hd_url" value="${contextRoot}"/>
- </div>
- <div id="div_see_version_info_form" data-role-form class="m-form-inline f-mt20" style="display:none;">
- <div class="m-form-group">
- <label>适配方案名称:</label>
- <div class="l-text-wrapper m-form-control">
- <label type="text" class="f-w240 " id="lbl_schemeNm" style="text-align: left"/>
- </div>
- </div>
- <div class="m-form-group">
- <label>适配版本名称:</label>
- <div class="l-text-wrapper m-form-control">
- <label type="text" class="required f-w240 " id="lbl_versionNm" style="text-align: left"/>
- </div>
- </div>
- <div class="m-form-group">
- <label>基础版本名称:</label>
- <div class="m-form-control">
- <label type="text" class="f-w240 " id="lbl_primaryVersion" style="text-align: left"></label>
- </div>
- </div>
- <div class="m-form-bottom">
- <div id="btn_confirm" class="l-button">
- <span>确认</span>
- </div>
- </div>
- </div>
|