77316406 by Zelig

Merge branch 'develop' of http://g.28ms.com:8000/yangjianbin/page into develop

2 parents 5712b992 ac30d17f
...@@ -67,12 +67,12 @@ ...@@ -67,12 +67,12 @@
67 <div class="row cl"> 67 <div class="row cl">
68 <div class="form-group col-sm-3 col-md-2"> 68 <div class="form-group col-sm-3 col-md-2">
69 <label>姓名</label> 69 <label>姓名</label>
70 <input type="text" class="form-control input-text" value="<?=$clientInfoOutputVO->userName?>"> 70 <input type="text" class="form-control input-text" name="userName" value="<?=$clientInfoOutputVO->userName?>">
71 </div> 71 </div>
72 <div class="form-group col-sm-3 col-md-2"> 72 <div class="form-group col-sm-3 col-md-2">
73 <label>性别</label> 73 <label>性别</label>
74 <span class="form-control select-box"> 74 <span class="form-control select-box">
75 <select class="select" size="1"> 75 <select class="select" size="1" name="gender">
76 <?php foreach ($this->session->genderEnum as $k=>$v):?> 76 <?php foreach ($this->session->genderEnum as $k=>$v):?>
77 <option <?=$clientInfoOutputVO->gender == $k ? 'selected' : ''?> value="<?=$k?>"><?=$v?></option> 77 <option <?=$clientInfoOutputVO->gender == $k ? 'selected' : ''?> value="<?=$k?>"><?=$v?></option>
78 <?php endforeach;?> 78 <?php endforeach;?>
...@@ -82,7 +82,7 @@ ...@@ -82,7 +82,7 @@
82 <div class="form-group col-sm-3 col-md-2"> 82 <div class="form-group col-sm-3 col-md-2">
83 <label>婚姻</label> 83 <label>婚姻</label>
84 <span class="form-control select-box"> 84 <span class="form-control select-box">
85 <select class="select" size="1"> 85 <select class="select" size="1" name="marriageState">
86 <?php foreach ($this->session->marryEnum as $k=>$v):?> 86 <?php foreach ($this->session->marryEnum as $k=>$v):?>
87 <option <?=$clientInfoOutputVO->marriageState == $k ? 'selected' : ''?> value="<?=$k?>"><?=$v?></option> 87 <option <?=$clientInfoOutputVO->marriageState == $k ? 'selected' : ''?> value="<?=$k?>"><?=$v?></option>
88 <?php endforeach;?> 88 <?php endforeach;?>
...@@ -91,7 +91,7 @@ ...@@ -91,7 +91,7 @@
91 </div> 91 </div>
92 <div class="form-group col-sm-3 col-md-2"> 92 <div class="form-group col-sm-3 col-md-2">
93 <label>出生日期</label> 93 <label>出生日期</label>
94 <input type="text" class="form-control input-text Wdate" value="<?=$clientInfoOutputVO->birthDate?>" onfocus="WdatePicker()"> 94 <input type="text" name="birthDate" class="form-control input-text Wdate" value="<?=$clientInfoOutputVO->birthDate?>" onfocus="WdatePicker()">
95 </div> 95 </div>
96 </div> 96 </div>
97 97
...@@ -99,7 +99,7 @@ ...@@ -99,7 +99,7 @@
99 <div class="form-group col-sm-3 col-md-2"> 99 <div class="form-group col-sm-3 col-md-2">
100 <label>教育程度</label> 100 <label>教育程度</label>
101 <span class="form-control select-box"> 101 <span class="form-control select-box">
102 <select class="select" size="1"> 102 <select class="select" size="1" name="educationDegree">
103 <?php foreach ($this->session->educationEnum as $k=>$v):?> 103 <?php foreach ($this->session->educationEnum as $k=>$v):?>
104 <option <?=$clientInfoOutputVO->educationDegree == $k ? 'selected' : ''?> value="<?=$k?>"><?=$v?></option> 104 <option <?=$clientInfoOutputVO->educationDegree == $k ? 'selected' : ''?> value="<?=$k?>"><?=$v?></option>
105 <?php endforeach;?> 105 <?php endforeach;?>
...@@ -108,20 +108,20 @@ ...@@ -108,20 +108,20 @@
108 </div> 108 </div>
109 <div class="form-group col-sm-3 col-md-2"> 109 <div class="form-group col-sm-3 col-md-2">
110 <label>身份证</label> 110 <label>身份证</label>
111 <input type="text" class="form-control input-text" value="<?=$clientInfoOutputVO->idCard?>"> 111 <input type="text" name="idCard" class="form-control input-text" value="<?=$clientInfoOutputVO->idCard?>">
112 </div> 112 </div>
113 </div> 113 </div>
114 114
115 <div class="row cl"> 115 <div class="row cl">
116 <div class="form-group has-feedback col-sm-3 col-md-2"> 116 <div class="form-group has-feedback col-sm-3 col-md-2">
117 <label>月收入</label> 117 <label>月收入</label>
118 <input type="text" class="form-control input-text" value="<?=$clientInfoOutputVO->monthlyIncome?>"> 118 <input type="text" name="monthlyIncome" class="form-control input-text" value="<?=$clientInfoOutputVO->monthlyIncome?>">
119 <span class="glyphicon glyphicon-rmb form-control-feedback" aria-hidden="true"></span> 119 <span class="glyphicon glyphicon-rmb form-control-feedback" aria-hidden="true"></span>
120 </div> 120 </div>
121 <div class="form-group col-sm-3 col-md-2"> 121 <div class="form-group col-sm-3 col-md-2">
122 <label>有无本地房产</label> 122 <label>有无本地房产</label>
123 <span class="form-control select-box"> 123 <span class="form-control select-box">
124 <select class="select" size="1"> 124 <select class="select" size="1" name="localHouse">
125 <option <?=$clientInfoOutputVO->localHouse == $k ? 'selected' : ''?> value="0"></option> 125 <option <?=$clientInfoOutputVO->localHouse == $k ? 'selected' : ''?> value="0"></option>
126 <option <?=$clientInfoOutputVO->localHouse == $k ? 'selected' : ''?> value="1"></option> 126 <option <?=$clientInfoOutputVO->localHouse == $k ? 'selected' : ''?> value="1"></option>
127 </select> 127 </select>
...@@ -134,30 +134,30 @@ ...@@ -134,30 +134,30 @@
134 <label>居住情况</label> 134 <label>居住情况</label>
135 <div class="info"> 135 <div class="info">
136 <div class="live-info"> 136 <div class="live-info">
137 <input type="checkbox" name="" checked> 137 <input type="checkbox" name="dwellState">
138 <span>自建</span> 138 <span>自建</span>
139 <input type="text" class="input-decoration w-50 text-c" value="5"> 139 <input type="text" class="input-decoration w-50 text-c" name="dwellDetail" value="">
140 </div> 140 </div>
141 <div class="live-info"> 141 <div class="live-info">
142 <input type="checkbox" name=""> 142 <input type="checkbox" name="dwellState">
143 <span>自购无按揭</span> 143 <span>自购无按揭</span>
144 <input type="text" class="input-decoration w-50 text-c"> 144 <input type="text" name="dwellDetail" class="input-decoration w-50 text-c">
145 </div> 145 </div>
146 <div class="live-info"> 146 <div class="live-info">
147 <input type="checkbox" name=""> 147 <input type="checkbox" name="dwellState">
148 <span>按揭</span> 148 <span>按揭</span>
149 <input type="text" class="input-decoration w-50 text-c"> 149 <input type="text" name="dwellDetail" class="input-decoration w-50 text-c">
150 </div> 150 </div>
151 <div class="live-info"> 151 <div class="live-info">
152 <input type="checkbox" name=""> 152 <input type="checkbox" name="dwellState">
153 <span>租用</span> 153 <span>租用</span>
154 </div> 154 </div>
155 <div class="live-info"> 155 <div class="live-info">
156 <input type="checkbox" name=""> 156 <input type="checkbox" name="dwellState">
157 <span>亲属住房</span> 157 <span>亲属住房</span>
158 </div> 158 </div>
159 <div class="live-info"> 159 <div class="live-info">
160 <input type="checkbox" name=""> 160 <input type="checkbox" name="dwellState">
161 <span>单位住房</span> 161 <span>单位住房</span>
162 </div> 162 </div>
163 </div> 163 </div>
...@@ -249,7 +249,7 @@ ...@@ -249,7 +249,7 @@
249 <label>工资发放形式</label> 249 <label>工资发放形式</label>
250 <span class="form-control select-box"> 250 <span class="form-control select-box">
251 <select class="select" size="1"> 251 <select class="select" size="1">
252 <?php foreach ($this->session->genderEnum as $k=>$v):?> 252 <?php foreach ($this->session->wagePaymentFormEnum as $k=>$v):?>
253 <option value="<?=$k?>"><?=$v?></option> 253 <option value="<?=$k?>"><?=$v?></option>
254 <?php endforeach;?> 254 <?php endforeach;?>
255 </select> 255 </select>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!