liyinglin 3 years ago
parent 5aeb8cff89
commit 7fca7e9335

@ -150,16 +150,15 @@
<input value="0" class="form-control" required="required" name="myindex" type="number">
</div>
<div class="form-group">
<div class="form-group" id="head" style="display: none">
<label for="myindex" class="control-label">护士长</label>
<select class="custom-select" multiple>
<select name="head" class="custom-select" multiple>
@foreach ($head_list as $head)
<option >{{$head->name}}</option>
<option value="{{$head->id}}" >{{$head->name}}</option>
@endforeach
</select>
</div>
</form>
</div>
<div class="modal-footer">
@ -268,6 +267,7 @@
case "building":
var building_name = $("#building_id option:selected").html();
$("#model-form .modal-title").html("新增病区/楼层-" + building_name);
$("#head").show();
break;
case "area":
var area_name = $("#area_id option:selected").html();

Loading…
Cancel
Save