Bläddra i källkod

增加户籍地址显示

sandm 1 år sedan
förälder
incheckning
a21a312dc1

+ 5 - 1
app/person/view/education/apply.html

@@ -70,7 +70,11 @@
                                                         <select class="form-control" id="talentArrange" name="talentArrange" value="{$row.talentArrange}" style="pointer-events: none;background-color: #eee;">
                                                         </select>
                                                     </div>
-                                                    <div class="rowGroup col-sm-3">
+                                                    <div class="rowGroup col-sm-6">
+                                                        <label class=" control-label spacing"><span style="color: red">*</span>户籍地址(详细到门牌)</label>
+                                                        <input class="form-control" id="housePlace" name="housePlace" value="{$row.housePlace}" style="pointer-events: none;background-color: #eee;">
+                                                    </div>
+                                                    <div class="rowGroup col-sm-6">
                                                         <label class=" control-label spacing"><span style="color: red">*</span>认定条件</label>
                                                         <input class="form-control" id="identifyCondition" name="identifyCondition" value="{$row.identifyCondition}" style="pointer-events: none;background-color: #eee;">
                                                     </div>

+ 1 - 0
public/static/modular/gate/education/educationSchool/educationSchool_info.js

@@ -11,6 +11,7 @@ var EducationSchoolInfoDlg = {
         talentArrange: {validators: {notEmpty: {message: '人才层次不能为空'}}},
         certificateNo: {validators: {notEmpty: {message: '人才编号不能为空'}}},
         nativePlace: {validators: {notEmpty: {message: '籍贯不能为空'}}},
+        housePlace: {validators: {notEmpty: {message: '户籍地址不能为空'}}},
         address: {validators: {notEmpty: {message: '现居地址不能为空'}}},
         enterpriseName:{validators: {notEmpty: {message: '工作单位不能为空'}}},
         enterpriseAddress:{validators: {notEmpty: {message: '工作单位详细地址不能为空'}}},