|
|
@ -98,7 +98,7 @@
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-sm-4 control-label is-required">收文单位:</label>
|
|
|
|
<label class="col-sm-4 control-label is-required">收文单位:</label>
|
|
|
|
<div class="col-sm-8">
|
|
|
|
<div class="col-sm-8">
|
|
|
|
<select name="targetDepart" class="form-control select2-multiple" required multiple>
|
|
|
|
<select name="targetDepart" id="targetDepart" class="form-control select2-multiple" required multiple>
|
|
|
|
<option th:each="item : ${dept}" th:if="${item.deptId != 100}" th:text="${item.deptName}" th:value="${item.deptName}" ></option>
|
|
|
|
<option th:each="item : ${dept}" th:if="${item.deptId != 100}" th:text="${item.deptName}" th:value="${item.deptName}" ></option>
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -239,6 +239,12 @@
|
|
|
|
minView: "month",
|
|
|
|
minView: "month",
|
|
|
|
autoclose: true
|
|
|
|
autoclose: true
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
$(function() {
|
|
|
|
|
|
|
|
$('#targetDepart').select2({
|
|
|
|
|
|
|
|
placeholder: "请选择收文单位",
|
|
|
|
|
|
|
|
allowClear: true
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
</html>
|
|
|
|