19f05b37 by yangjianbin

init

1 parent f811b2fd
......@@ -154,7 +154,7 @@ class Work extends CI_Controller
'applyOrderVO'=>$ret->applyOrderVO,
'operatorRecord'=>$ret2
);
var_dump($data);exit;
// var_dump($data);exit;
$this->load->view('work/资料/资料补录', $data);
}
......
......@@ -214,11 +214,11 @@
<div class="row cl">
<div class="form-group col-sm-3 col-md-2">
<label>单位名称</label>
<input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO->unitName?>">
<input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO ? $clientUnitOutputVO->unitName : ''?>">
</div>
<div class="form-group col-sm-3 col-md-2">
<label>部门</label>
<input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO->department?>">
<input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO ? $clientUnitOutputVO->department : ''?>">
</div>
<div class="form-group col-sm-3 col-md-2">
<label>单位性质</label>
......@@ -232,18 +232,18 @@
</div>
<div class="form-group col-sm-3 col-md-2">
<label>职位名称</label>
<input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO->jobPosition?>">
<input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO ? $clientUnitOutputVO->jobPosition : ''?>">
</div>
</div>
<div class="row cl">
<div class="form-group col-sm-3 col-md-2">
<label>现单位入职时间</label>
<input type="text" class="form-control input-text Wdate" value="<?=$clientUnitOutputVO->currentUnitEntryDate?>">
<input type="text" class="form-control input-text Wdate" value="<?=$clientUnitOutputVO ? $clientUnitOutputVO->currentUnitEntryDate : ''?>">
</div>
<div class="form-group col-sm-3 col-md-2">
<label>现单位工作年限</label>
<input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO->currentUnitWorkYears?>">
<input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO ? $clientUnitOutputVO->currentUnitWorkYears : ''?>">
<span class="glyphicon glyphicon-year form-control-feedback" aria-hidden="true"></span>
</div>
<div class="form-group col-sm-3 col-md-2">
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!