Pārlūkot izejas kodu

门诊住院证支持处方保存完立即打印

hurugang 2 gadi atpakaļ
vecāks
revīzija
08c99ac887

+ 5 - 5
src/main/java/cn/hnthyy/thmz/controller/mz/ZyReqController.java

@@ -91,18 +91,18 @@ public class ZyReqController {
             MzZyReq mzZyReq = list.get(0);
             if(mzZyReq!=null){
                 if(mzZyReq.getDeptCode()!=null && StringUtils.isNotBlank(mzZyReq.getDeptCode())){
-                    mzZyReq.setDeptCode(zdUnitCodeService.queryDeptNameByIdInCache(mzZyReq.getDeptCode()));
+                    mzZyReq.setDeptName(zdUnitCodeService.queryDeptNameByIdInCache(mzZyReq.getDeptCode()));
                 }
                 if(mzZyReq.getReqDept()!=null && StringUtils.isNotBlank(mzZyReq.getReqDept())){
-                    mzZyReq.setReqDept(zdUnitCodeService.queryDeptNameByIdInCache(mzZyReq.getReqDept()));
-                    mzZyReq.setReqWard(mzZyReq.getReqDept());
+                    mzZyReq.setReqDeptName(zdUnitCodeService.queryDeptNameByIdInCache(mzZyReq.getReqDept()));
+                    mzZyReq.setReqWardName(mzZyReq.getReqDeptName());
                 }
                 if(mzZyReq.getSmallDept()!=null && StringUtils.isNotBlank(mzZyReq.getSmallDept())){
-                    mzZyReq.setSmallDept(zdUnitCodeService.queryDeptNameByIdInCache(mzZyReq.getSmallDept()));
+                    mzZyReq.setSmallDeptName(zdUnitCodeService.queryDeptNameByIdInCache(mzZyReq.getSmallDept()));
                 }
                 if(mzZyReq.getDoctorCode()!=null && StringUtils.isNotBlank(mzZyReq.getDoctorCode())){
                     Employee employee= employeeService.queryByUserCode(mzZyReq.getDoctorCode());
-                    mzZyReq.setDoctorCode(employee!=null?employee.getEmployeeName():"");
+                    mzZyReq.setDoctorName(employee!=null?employee.getEmployeeName():"");
                 }
 //                if(mzZyReq.getAdmissStatus()!=null && StringUtils.isNotBlank(mzZyReq.getAdmissStatus())){
 //                    CodeNameEntity codeNameEntity= mzZdCommonService.queryAdmissStatusByCode(mzZyReq.getAdmissStatus());

+ 97 - 76
src/main/java/cn/hnthyy/thmz/entity/his/mz/MzZyReq.java

@@ -10,82 +10,103 @@ import lombok.Data;
  */
 @Data
 public class MzZyReq {
-	/**
-	 * 病人id
-	 */
-	private String 	patientId;
-	/**
-	 * 病人名称
-	 */
-	private String 	name;
-	/**
-	 * 住院证开立时间
-	 */
-	private Date 	visitDate;
-	/**
-	 * 申请医生编码
-	 */
-	private String 	doctorCode;
-	/**
-	 * 申请科室编码
-	 */
-	private String 	deptCode;
-	/**
-	 * 入院目标科室编码
-	 */
-	private String 	reqDept;
-	/**
-	 * 入院目标病区编码
-	 */
-	private String 	reqWard;
-	/**
-	 * 床号
-	 */
-	private String 	bedNo;
-	/**
-	 * 诊断编码
-	 */
-	private String 	icdCode;
-	/**
-	 * 诊断名称
-	 */
-	private String 	icdText;
-	/**
-	 * 确认人id
-	 */
-	private String 	confirmId;
-	/**
-	 * 确认时间
-	 */
-	private Date 	confirmDate;
-	/**
-	 * 住院流水号
-	 */
-	private String 	zySerialNo;
-	/**
-	 * 病人性质
-	 */
-	private String 	responceType;
-	/**
-	 * 入院状态
-	 */
-	private String 	admissStatus;
-	/**
-	 * 申请状态  0 未确认
-	 */
-	private String 	reqStatus;
-	/**
-	 * 小科室id
-	 */
-	private String 	smallDept;
+    /**
+     * 病人id
+     */
+    private String patientId;
+    /**
+     * 病人名称
+     */
+    private String name;
+    /**
+     * 住院证开立时间
+     */
+    private Date visitDate;
+    /**
+     * 申请医生编码
+     */
+    private String doctorCode;
+    /**
+     * 申请科室编码
+     */
+    private String deptCode;
+    /**
+     * 入院目标科室编码
+     */
+    private String reqDept;
+    /**
+     * 入院目标病区编码
+     */
+    private String reqWard;
+    /**
+     * 床号
+     */
+    private String bedNo;
+    /**
+     * 诊断编码
+     */
+    private String icdCode;
+    /**
+     * 诊断名称
+     */
+    private String icdText;
+    /**
+     * 确认人id
+     */
+    private String confirmId;
+    /**
+     * 确认时间
+     */
+    private Date confirmDate;
+    /**
+     * 住院流水号
+     */
+    private String zySerialNo;
+    /**
+     * 病人性质
+     */
+    private String responceType;
+    /**
+     * 入院状态
+     */
+    private String admissStatus;
+    /**
+     * 申请状态  0 未确认
+     */
+    private String reqStatus;
+    /**
+     * 小科室id
+     */
+    private String smallDept;
 
-	/**
-	 * 新的诊断编码,老的诊断编码太短了长度
-	 */
-	private String 	icdCodeNew;
-	/**
-	 * 新的诊断名称,老的诊断编码太短了长度
-	 */
-	private String 	icdTextNew;
+    /**
+     * 新的诊断编码,老的诊断编码太短了长度
+     */
+    private String icdCodeNew;
+    /**
+     * 新的诊断名称,老的诊断编码太短了长度
+     */
+    private String icdTextNew;
 
+    //非数据库字段
+    /**
+     * 申请医生名称
+     */
+    private String doctorName;
+    /**
+     * 申请科室名称
+     */
+    private String deptName;
+    /**
+     * 入院目标科室名称
+     */
+    private String reqDeptName;
+    /**
+     * 入院目标病区名称
+     */
+    private String reqWardName;
+    /**
+     * 小科室名称
+     */
+    private String smallDeptName;
 }

+ 20 - 1
src/main/java/cn/hnthyy/thmz/service/impl/his/mz/MzChargeDetailServiceImpl.java

@@ -2624,7 +2624,26 @@ public class MzChargeDetailServiceImpl implements MzChargeDetailService {
         if (mzBlRecord.getEmrProcess() != null && mzBlRecord.getEmrProcess().indexOf("收住院") >= 0) {
             List<MzZyReq> mzZyReqs = mzZyReqMapper.selectMzZyReqByPatientId(patientId);
             if (mzZyReqs != null && mzZyReqs.size() > 0) {
-                mzPrescriptionVo.setMzZyReq(mzZyReqs.get(0));
+                MzZyReq mzZyReq=mzZyReqs.get(0);
+                if(mzZyReq.getDeptCode()!=null && StringUtils.isNotBlank(mzZyReq.getDeptCode())){
+                    mzZyReq.setDeptName(zdUnitCodeService.queryDeptNameByIdInCache(mzZyReq.getDeptCode()));
+                }
+                if(mzZyReq.getReqDept()!=null && StringUtils.isNotBlank(mzZyReq.getReqDept())){
+                    mzZyReq.setReqDeptName(zdUnitCodeService.queryDeptNameByIdInCache(mzZyReq.getReqDept()));
+                    mzZyReq.setReqWardName(mzZyReq.getReqDeptName());
+                }
+                if(mzZyReq.getSmallDept()!=null && StringUtils.isNotBlank(mzZyReq.getSmallDept())){
+                    mzZyReq.setSmallDeptName(zdUnitCodeService.queryDeptNameByIdInCache(mzZyReq.getSmallDept()));
+                }
+                if(mzZyReq.getDoctorCode()!=null && StringUtils.isNotBlank(mzZyReq.getDoctorCode())){
+                    Employee employee= employeeService.queryByUserCode(mzZyReq.getDoctorCode());
+                    mzZyReq.setDoctorName(employee!=null?employee.getEmployeeName():"");
+                }
+//                if(mzZyReq.getAdmissStatus()!=null && StringUtils.isNotBlank(mzZyReq.getAdmissStatus())){
+//                    CodeNameEntity codeNameEntity= mzZdCommonService.queryAdmissStatusByCode(mzZyReq.getAdmissStatus());
+//                    mzZyReq.setAdmissStatus(codeNameEntity!=null?codeNameEntity.getName():"");
+//                }
+                mzPrescriptionVo.setMzZyReq(mzZyReq);
             }
         }
         List<MzChargeDetail> mzChargeDetailList = mzChargeDetailMapper.selectMzChargeDetailByPatientId("mz_charge_detail", patientId, times, null, payMark);

+ 50 - 51
src/main/resources/static/js/mz/clinic.js

@@ -4207,7 +4207,7 @@ function saveJyJcItemReal(calculateTotalAmountFlag) {
     if (updateFlag == "true" || updateFlag == true) {
         var formGroups = $(tableId).find("div.cf_content").find("div.form-group");
         if (formGroups != null && formGroups.length > 0) {
-            var updateOriCode=$("#update_ori_code").val();
+            var updateOriCode = $("#update_ori_code").val();
             for (var i = 0; i < formGroups.length; i++) {
                 var temporaryItemsCode = $(formGroups[i]).find("input.temporary_items_code").val();
                 if (temporaryItemsCode === updateOriCode) {
@@ -4374,7 +4374,7 @@ function saveZlItemReal(calculateTotalAmountFlag) {
     if (updateFlag == "true" || updateFlag == true) {
         var formGroups = $(tableId).find("div.cf_content").find("div.form-group");
         if (formGroups != null && formGroups.length > 0) {
-            var updateOriCode=$("#update_ori_code").val();
+            var updateOriCode = $("#update_ori_code").val();
             for (var i = 0; i < formGroups.length; i++) {
                 var temporaryItemsCode = $(formGroups[i]).find("input.temporary_items_code").val();
                 if (temporaryItemsCode === updateOriCode) {
@@ -9053,6 +9053,38 @@ function printPrescription(patientId, times, clnicId, payMark, printType) {
                             index++;
                         }
                     }
+                    //住院证打印
+                    var mzZyReq = res.data.mzZyReq;
+                    if (mzZyReq != null) {
+                        $("#patientIdZyReq").text(mzPatientMi.patientId);
+                        $("#patientNameZyReq").text(mzPatientMi.name);
+                        $("#patientGenderZyReq").text(mzPatientMi.gender);
+                        $("#patientAgeZyReq").text(mzPatientMi.ageString);
+                        $("#sfzZyReq").text(mzPatientMi.socialNo);
+                        $("#birthDateZyReq").text(format(mzPatientMi.birthDay, "yyyy-MM-dd"));
+                        $("#phoneZyReq").text(mzPatientMi.phoneNo);
+                        $("#responseTypeZyReq").text(mzPatientMi.responseTypeName);
+                        $("#addressZyReq").text(mzPatientMi.address);
+                        if (mzZyReq.icdCode == null || mzZyReq.icdCode == "" || mzZyReq.icdCode.length == 0) {
+                            $("#icsCodeZyReq").html("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;");
+                            $("#icsTextZyReq").text(mzZyReq.icdText);
+                        } else {
+                            $("#icsCodeZyReq").text(mzZyReq.icdCode);
+                            $("#icsTextZyReq").text(mzZyReq.icdText);
+                        }
+                        $("#reqDeptZyReq").text(mzZyReq.reqWardName);
+                        $("#smallDeptZyReq").text(mzZyReq.smallDeptName);
+                        //$("#admissStatusZyReq").text(mzZyReq.admissStatus);
+                        $("input:checkbox[value='" + mzZyReq.admissStatus + "']").attr('checked', 'true');
+                        $("#visitDateZyReq").text(format(mzZyReq.visitDate, "yyyy-MM-dd HH:mm:ss"));
+                        $("#deptCodeZyReq").text(mzZyReq.deptName);
+                        $("#doctorCodeZyReq").text(mzZyReq.doctorName);
+                        if (index > 0) {
+                            LODOP.NewPageA();
+                        }
+                        LODOP.ADD_PRINT_HTM("0mm", "5mm", "140mm", "200mm", strStyle + document.getElementById("mz_zy_req_table").innerHTML);
+                        index++;
+                    }
                     $.ajax({
                         type: "GET",
                         url: '/thmz/getChargeDetailForGuideCard?patientId=' + patientId + '&times=' + times,
@@ -9452,24 +9484,6 @@ function printBlRecord(patientId, times, printType) {
     });
 }
 
-/**
- * 将内容拼接空格,这样才会有下划线
- * @param mzPatientMi
- * @param maxLength 最大长度
- * @returns {*}
- */
-function formatUnderline(params, maxLength) {
-    var length = 0;
-    if (params == null || params.length == 0) {
-        length = maxLength;
-    } else {
-        length = maxLength - params.length;
-    }
-    for (var i = 0; i < length; i++) {
-        params += " ";
-    }
-    return params;
-}
 
 /**
  * 打印入院通知单
@@ -9513,44 +9527,29 @@ function printZyReq(patientId, printType) {
                 var strStyle = "<style>table{width: 96%;} table,td,th {}</style>";
                 var mzPatientMi = res.mzPatientMi;
                 var mzZyReq = res.mzZyReq;
-                var mzPatientId = formatUnderline(mzPatientMi.patientId, 15);
-                $("#patientIdZyReq").text(mzPatientId);
-                var mzPatientMiName = formatUnderline(mzPatientMi.name, 22);
-                $("#patientNameZyReq").text(mzPatientMiName);
-                var mzPatientGender = formatUnderline(mzPatientMi.gender, 10);
-                $("#patientGenderZyReq").text(mzPatientGender);
-                var mzPatientAge = formatUnderline(mzPatientMi.ageString, 6);
-                $("#patientAgeZyReq").text(mzPatientAge);
-                var mzPatientSocialNo = formatUnderline(mzPatientMi.socialNo, 48);
-                $("#sfzZyReq").text(mzPatientSocialNo);
+                $("#patientIdZyReq").text(mzPatientMi.patientId);
+                $("#patientNameZyReq").text(mzPatientMi.name);
+                $("#patientGenderZyReq").text(mzPatientMi.gender);
+                $("#patientAgeZyReq").text(mzPatientMi.ageString);
+                $("#sfzZyReq").text(mzPatientMi.socialNo);
                 $("#birthDateZyReq").text(format(mzPatientMi.birthDay, "yyyy-MM-dd"));
-                var mzPatientPhoneNo = formatUnderline(mzPatientMi.phoneNo, 55);
-                $("#phoneZyReq").text(mzPatientPhoneNo);
+                $("#phoneZyReq").text(mzPatientMi.phoneNo);
                 $("#responseTypeZyReq").text(mzPatientMi.responseTypeName);
-                var mzPatientMiAddress = formatUnderline(mzPatientMi.address, 31);
-                $("#addressZyReq").text(mzPatientMiAddress);
+                $("#addressZyReq").text(mzPatientMi.address);
                 if (mzZyReq.icdCode == null || mzZyReq.icdCode == "" || mzZyReq.icdCode.length == 0) {
                     $("#icsCodeZyReq").html("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;");
-                    var mzPatientMiIcdText = formatUnderline(mzZyReq.icdText, 29);
-                    $("#icsTextZyReq").text(" " + mzPatientMiIcdText);
+                    $("#icsTextZyReq").text(mzZyReq.icdText);
                 } else {
-                    var mzPatientMiIcdCode = formatUnderline(mzZyReq.icdCode, 12);
-                    $("#icsCodeZyReq").text(mzPatientMiIcdCode);
-                    var mzPatientMiIcdText = formatUnderline(mzZyReq.icdText, 29);
-                    $("#icsTextZyReq").text(mzPatientMiIcdText);
-                }
-                var mzZyReqReqWard = formatUnderline(mzZyReq.reqWard, 6);
-                $("#reqDeptZyReq").text(mzZyReqReqWard);
-                var mzZyReqSmallDept = formatUnderline(mzZyReq.smallDept, 27);
-                $("#smallDeptZyReq").text(mzZyReqSmallDept);
+                    $("#icsCodeZyReq").text(mzZyReq.icdCode);
+                    $("#icsTextZyReq").text(mzZyReq.icdText);
+                }
+                $("#reqDeptZyReq").text(mzZyReq.reqWardName);
+                $("#smallDeptZyReq").text(mzZyReq.smallDeptName);
                 //$("#admissStatusZyReq").text(mzZyReq.admissStatus);
                 $("input:checkbox[value='" + mzZyReq.admissStatus + "']").attr('checked', 'true');
-                var mzZyReqVisitDate = formatUnderline(format(mzZyReq.visitDate, "yyyy-MM-dd HH:mm:ss"), 37);
-                $("#visitDateZyReq").text(mzZyReqVisitDate);
-                var mzZyReqDeptCode = formatUnderline(mzZyReq.deptCode, 15);
-                $("#deptCodeZyReq").text(mzZyReqDeptCode);
-                var mzZyReqDoctorCode = formatUnderline(mzZyReq.doctorCode, 16);
-                $("#doctorCodeZyReq").text(mzZyReqDoctorCode);
+                $("#visitDateZyReq").text(format(mzZyReq.visitDate, "yyyy-MM-dd HH:mm:ss"));
+                $("#deptCodeZyReq").text(mzZyReq.deptName);
+                $("#doctorCodeZyReq").text(mzZyReq.doctorName);
                 LODOP.ADD_PRINT_HTM("0mm", "5mm", "140mm", "200mm", strStyle + document.getElementById("mz_zy_req_table").innerHTML);
                 if (printType == 1) {
                     LODOP.PREVIEW();

+ 25 - 27
src/main/resources/templates/mz/clinic.html

@@ -2520,25 +2520,23 @@
                    style="margin-top: 10px;border-collapse: separate;border-spacing: 0px 10px;font-size: 15px;">
                 <tbody>
                 <tr>
-                    <td>患者姓名:<span id="patientNameZyReq" style="text-decoration: underline;"></span></td>
-                    <td colspan="3">性别:<span id="patientGenderZyReq" style="text-decoration: underline;"></span></td>
-                    <td>年龄:<span id="patientAgeZyReq" style="text-decoration: underline;"></span></td>
+                    <td>患者姓名:<span id="patientNameZyReq" style="width: 190px;display: inline-block;border-bottom: 1px solid grey;"></span></td>
+                    <td colspan="3">年龄:<span id="patientAgeZyReq" style="width: 60px;display: inline-block;border-bottom: 1px solid grey;"></span></td>
+                    <td>性别:<span id="patientGenderZyReq" style="width: 55px;display: inline-block;border-bottom: 1px solid grey;"></span></td>
+
                 </tr>
                 <tr>
-                    <td colspan="2">身份证号码:<span id="sfzZyReq" style="text-decoration: underline;"></span></td>
-                    <td colspan="3">门诊编号:<span id="patientIdZyReq" style="text-decoration: underline;"></span></td>
-                    <!--<td>出生日期: <span id="birthDateZyReq"></span></td>-->
-                    <!--<td>电话: <span id="phoneZyReq"></span></td>-->
-                    <!--<td>性质:<span id="responseTypeZyReq"></span></td>-->
+                    <td colspan="2">证件号码:<span id="sfzZyReq" style="width: 245px;display: inline-block;border-bottom: 1px solid grey;"></span></td>
+                    <td colspan="3">门诊编号:<span id="patientIdZyReq" style="width: 90px;display: inline-block;border-bottom: 1px solid grey;"></span></td>
                 </tr>
                 <tr>
-                    <td colspan="5">住&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;址:<span id="addressZyReq"
-                                                                                                   style="text-decoration: underline;margin-left: 4px;"></span>
+                    <td colspan="5">住&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;址:<span id="addressZyReq"
+                                                                                                   style="width: 415px;display: inline-block;border-bottom: 1px solid grey;"></span>
                     </td>
                 </tr>
                 <tr>
-                    <td colspan="2">联系电话:<span id="phoneZyReq" style="text-decoration: underline;"></span></td>
-                    <td colspan="3">医疗付费方式:<span style="text-decoration: underline;margin-left: 1.5px;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>
+                    <td colspan="2">付费方式:<span style="width: 245px;display: inline-block;border-bottom: 1px solid grey;"></span>
+                    <td colspan="3">电话:<span id="phoneZyReq" style="width: 120px;display: inline-block;border-bottom: 1px solid grey;"></span></td>
                     </td>
                 </tr>
                 <tr>
@@ -2546,33 +2544,33 @@
                 </tr>
                 <tr>
                     <td colspan="3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1.<span id="icsTextZyReq"
-                                                                                style="text-decoration: underline;"></span>
+                                                                                style="width: 300px;display: inline-block;border-bottom: 1px solid grey;"></span>
                     </td>
-                    <td colspan="2">疾病编码<span id="icsCodeZyReq" style="text-decoration: underline;"></span></td>
+                    <td colspan="2">疾病编码<span id="icsCodeZyReq" style="width: 87px;display: inline-block;border-bottom: 1px solid grey;"></span></td>
                 </tr>
                 <tr>
-                    <td colspan="3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2.<span style="text-decoration: underline;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>
+                    <td colspan="3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2.<span style="width: 300px;display: inline-block;border-bottom: 1px solid grey;"></span>
                     </td>
-                    <td colspan="2">疾病编码<span style="text-decoration: underline;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>
+                    <td colspan="2">疾病编码<span style="width: 87px;display: inline-block;border-bottom: 1px solid grey;"></span>
                     </td>
                 </tr>
                 <tr>
-                    <td colspan="3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3.<span style="text-decoration: underline;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>
+                    <td colspan="3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3.<span style="width: 300px;display: inline-block;border-bottom: 1px solid grey;"></span>
                     </td>
-                    <td colspan="2">疾病编码<span style="text-decoration: underline;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>
+                    <td colspan="2">疾病编码<span style="width: 87px;display: inline-block;border-bottom: 1px solid grey;"></span>
                     </td>
                 </tr>
                 <tr>
-                    <td colspan="3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4.<span style="text-decoration: underline;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>
+                    <td colspan="3">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4.<span style="width: 300px;display: inline-block;border-bottom: 1px solid grey;"></span>
                     </td>
-                    <td colspan="2">疾病编码<span style="text-decoration: underline;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>
+                    <td colspan="2">疾病编码<span style="width: 87px;display: inline-block;border-bottom: 1px solid grey;"></span>
                     </td>
                 </tr>
                 <tr>
                     <td colspan="2">入住科室:<span id="smallDeptZyReq"
-                                               style="text-decoration: underline;margin-left: 4px;"></span></td>
+                                               style="width: 240px;display: inline-block;border-bottom: 1px solid grey;margin-left: 4px;"></span></td>
                     <td colspan="3">入住病区:<span id="reqDeptZyReq"
-                                               style="text-decoration: underline;margin-left: 6px;"></span></td>
+                                               style="width: 83px;display: inline-block;border-bottom: 1px solid grey;margin-left: 6px;"></span></td>
                 </tr>
                 <tr>
                     <td colspan="5">入院状态:<span>一般<input type="checkbox" name="admissStatusZyReq" value="3"/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;病重<input
@@ -2581,7 +2579,7 @@
                             type="checkbox" name="admissStatusZyReq" value="2"/></span></td>
                 </tr>
                 <tr>
-                    <td colspan="5">护送方式:<span style="text-decoration: underline;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>
+                    <td colspan="5">护送方式:<span style="width: 415px;display: inline-block;border-bottom: 1px solid grey;"></span>
                     </td>
                 </tr>
                 <tr>
@@ -2604,15 +2602,15 @@
                 <tr>
                     <!--<td>入院状态: <span id="admissStatusZyReq"></span></td>-->
                     <!--<td style="width: 140px;"></td>-->
-                    <td style="width: 45%">申请科室: <span id="deptCodeZyReq" style="text-decoration: underline;"></span>
+                    <td style="width: 45%">申请科室: <span id="deptCodeZyReq" style="width: 142px;display: inline-block;border-bottom: 1px solid grey;"></span>
                     </td>
                     <td style="width: 55%">申请医生(签字):<span id="doctorCodeZyReq"
-                                                          style="text-decoration: underline;"></span></td>
+                                                          style="width: 150px;display: inline-block;border-bottom: 1px solid grey;"></span></td>
                 </tr>
                 <tr>
-                    <td style="width: 45%">预缴医疗费:<span style="text-decoration: underline;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>
+                    <td style="width: 45%">预缴医疗费:<span style="width: 130px;display: inline-block;border-bottom: 1px solid grey;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>
                     </td>
-                    <td style="width: 55%">申请日期:<span id="visitDateZyReq" style="text-decoration: underline;"></span>
+                    <td style="width: 55%">申请日期:<span id="visitDateZyReq" style="width: 190px;display: inline-block;border-bottom: 1px solid grey;"></span>
                     </td>
                 </tr>
                 </tbody>