|
|
|
@ -412,6 +412,46 @@
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="layui-card-header header_top">创客</div>
|
|
|
|
|
<div class="layui-card-body" id="div_xxck">
|
|
|
|
|
<div id="ckItmes">
|
|
|
|
|
<div class="layui-row">
|
|
|
|
|
<div class="layui-col-xs4">
|
|
|
|
|
<div class="layui-form-item">
|
|
|
|
|
<label class="layui-form-label"><span class="require-star"></span>教室类型:
|
|
|
|
|
</label>
|
|
|
|
|
<div class="layui-input-block">
|
|
|
|
|
<input type="text" name="xx_ckjslx" handle="false" lay-verify="required"
|
|
|
|
|
autocomplete="off" value="0" class="layui-input input-width">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="layui-col-xs4">
|
|
|
|
|
<div class="layui-form-item">
|
|
|
|
|
<label class="layui-form-label"><span class="require-star"></span>教室面积(㎡):
|
|
|
|
|
</label>
|
|
|
|
|
<div class="layui-input-block">
|
|
|
|
|
<input type="text" name="xx_ckjsmj" lay-verify="required|number" autocomplete="off"
|
|
|
|
|
value="0" class="layui-input input-width">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="layui-col-xs4">
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div style="margin-left: 226px;margin-top: 20px;" id="basics_xxck">
|
|
|
|
|
<i class="layui-icon layui-icon-add-circle"
|
|
|
|
|
style="font-size: 24px;color: #16baaa;cursor: pointer;" id="xxck_addItem"></i>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="layui-card-header header_top">图书馆</div>
|
|
|
|
@ -799,6 +839,12 @@
|
|
|
|
|
$('#div_xxldjy').html(res.xx_ldjy);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (res.xx_ck != null) {
|
|
|
|
|
$('#div_xxck').empty();
|
|
|
|
|
|
|
|
|
|
$('#div_xxck').html(res.xx_ck);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (res.xx_kx != null) {
|
|
|
|
|
$('#div_xxkx').empty();
|
|
|
|
|
|
|
|
|
@ -900,6 +946,7 @@
|
|
|
|
|
result.xx_kx = Base64.encode($("#div_xxkx").html());
|
|
|
|
|
result.xx_yq = Base64.encode($("#div_xxyy").html());
|
|
|
|
|
result.xx_ms = Base64.encode($("#div_xxms").html());
|
|
|
|
|
result.xx_ck = Base64.encode($("#div_xxck").html());
|
|
|
|
|
result.xx_ldjy = Base64.encode($("#div_xxldjy").html());
|
|
|
|
|
|
|
|
|
|
var xxldjySelectArr = [];
|
|
|
|
@ -1023,6 +1070,16 @@
|
|
|
|
|
$('#xxkx_sys_' + this.id).remove();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$("#xxck_addItem").click(function () {
|
|
|
|
|
var id = generateRandomString();
|
|
|
|
|
var _html = appendXxck(id);
|
|
|
|
|
$('#basics_xxck').before(_html);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$(document).on('click', 'i.xxck', function () {
|
|
|
|
|
$('#xxck_' + this.id).remove();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$("#xxkx_yqs_addItem").click(function () {
|
|
|
|
|
var id = generateRandomString();
|
|
|
|
|