9e01e4c7 by yangjianbin

init

1 parent 37f2d912
...@@ -9,6 +9,11 @@ ...@@ -9,6 +9,11 @@
9 <option value="" selected>网点</option> 9 <option value="" selected>网点</option>
10 <?php foreach ($this->session->departments as $k=>$v):?> 10 <?php foreach ($this->session->departments as $k=>$v):?>
11 <option value="<?=$v->id?>"><?=$v->name?></option> 11 <option value="<?=$v->id?>"><?=$v->name?></option>
12 <?php if($v->children && !empty($v->children)):?>
13 <?php foreach ($v->children as $kk=>$vv):?>
14 <option value="<?=$vv->id?>"><?=$vv->name?></option>
15 <?php endforeach;?>
16 <?php endif;?>
12 <?php endforeach;?> 17 <?php endforeach;?>
13 </select> 18 </select>
14 </span> 19 </span>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!