|
|
@ -4,7 +4,7 @@
|
|
|
|
<th:block th:include="include :: header('修改部门')" />
|
|
|
|
<th:block th:include="include :: header('修改部门')" />
|
|
|
|
</head>
|
|
|
|
</head>
|
|
|
|
<body class="white-bg">
|
|
|
|
<body class="white-bg">
|
|
|
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
|
|
|
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content" id="app">
|
|
|
|
<form class="form-horizontal m" id="form-dept-edit" th:object="${dept}">
|
|
|
|
<form class="form-horizontal m" id="form-dept-edit" th:object="${dept}">
|
|
|
|
<input name="deptId" type="hidden" th:field="*{deptId}" />
|
|
|
|
<input name="deptId" type="hidden" th:field="*{deptId}" />
|
|
|
|
<input id="treeId" name="parentId" type="hidden" th:field="*{parentId}" />
|
|
|
|
<input id="treeId" name="parentId" type="hidden" th:field="*{parentId}" />
|
|
|
@ -18,15 +18,25 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-sm-3 control-label is-required">所属市州:</label>
|
|
|
|
<label class="col-sm-3 control-label is-required">所属地市:</label>
|
|
|
|
<div class="col-sm-8">
|
|
|
|
<div class="col-sm-8">
|
|
|
|
<input class="form-control" type="text" name="framework" th:field="*{framework}" id="framework" required>
|
|
|
|
<select id="City" name="framework" required @change="getAreaList()" v-model="City" class="form-control m-b">
|
|
|
|
|
|
|
|
<option value="">请选择</option>
|
|
|
|
|
|
|
|
<option v-for="option in CityList" :value="option.id" :key="option.id">
|
|
|
|
|
|
|
|
{{ option.name }}
|
|
|
|
|
|
|
|
</option>
|
|
|
|
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-sm-3 control-label is-required">所属区县:</label>
|
|
|
|
<label class="col-sm-3 control-label is-required">所属区县:</label>
|
|
|
|
<div class="col-sm-8">
|
|
|
|
<div class="col-sm-8">
|
|
|
|
<input class="form-control" type="text" name="area" th:field="*{area}" id="area" required>
|
|
|
|
<select id="Area" name="area" required v-model="Area" class="form-control m-b">
|
|
|
|
|
|
|
|
<option value="">请选择</option>
|
|
|
|
|
|
|
|
<option v-for="option in AreaList" :value="option.id" :key="option.id">
|
|
|
|
|
|
|
|
{{ option.name }}
|
|
|
|
|
|
|
|
</option>
|
|
|
|
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="form-group">
|
|
|
@ -73,7 +83,6 @@
|
|
|
|
<th:block th:include="include :: footer" />
|
|
|
|
<th:block th:include="include :: footer" />
|
|
|
|
<script type="text/javascript">
|
|
|
|
<script type="text/javascript">
|
|
|
|
var prefix = ctx + "system/dept";
|
|
|
|
var prefix = ctx + "system/dept";
|
|
|
|
|
|
|
|
|
|
|
|
$("#form-dept-edit").validate({
|
|
|
|
$("#form-dept-edit").validate({
|
|
|
|
onkeyup: false,
|
|
|
|
onkeyup: false,
|
|
|
|
rules:{
|
|
|
|
rules:{
|
|
|
@ -112,13 +121,13 @@
|
|
|
|
},
|
|
|
|
},
|
|
|
|
focusCleanup: true
|
|
|
|
focusCleanup: true
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
function submitHandler() {
|
|
|
|
function submitHandler() {
|
|
|
|
if ($.validate.form()) {
|
|
|
|
if ($.validate.form()) {
|
|
|
|
$.operate.save(prefix + "/edit", $('#form-dept-edit').serialize());
|
|
|
|
$.operate.save(prefix + "/edit", $('#form-dept-edit').serialize());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*部门管理-修改-选择部门树*/
|
|
|
|
/*部门管理-修改-选择部门树*/
|
|
|
|
function selectDeptTree() {
|
|
|
|
function selectDeptTree() {
|
|
|
|
var deptId = $("#treeId").val();
|
|
|
|
var deptId = $("#treeId").val();
|
|
|
@ -135,7 +144,7 @@
|
|
|
|
$.modal.alertError("父部门不能选择");
|
|
|
|
$.modal.alertError("父部门不能选择");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function doSubmit(index, layero){
|
|
|
|
function doSubmit(index, layero){
|
|
|
|
var tree = layero.find("iframe")[0].contentWindow.$._tree;
|
|
|
|
var tree = layero.find("iframe")[0].contentWindow.$._tree;
|
|
|
|
if ($.tree.notAllowLastLevel(tree)) {
|
|
|
|
if ($.tree.notAllowLastLevel(tree)) {
|
|
|
@ -145,6 +154,48 @@
|
|
|
|
$.modal.close(index);
|
|
|
|
$.modal.close(index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var app = new Vue({
|
|
|
|
|
|
|
|
el: '#app',
|
|
|
|
|
|
|
|
data: {
|
|
|
|
|
|
|
|
CityList: [],
|
|
|
|
|
|
|
|
AreaList:[],
|
|
|
|
|
|
|
|
City:[[${dept.framework}]],
|
|
|
|
|
|
|
|
Area:[[${dept.area}]],
|
|
|
|
|
|
|
|
params:{
|
|
|
|
|
|
|
|
parentId:'',
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted(){
|
|
|
|
|
|
|
|
// 初始化地市列表
|
|
|
|
|
|
|
|
this.getCityList();
|
|
|
|
|
|
|
|
if (this.City){
|
|
|
|
|
|
|
|
this.getAreaList()
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
methods:{
|
|
|
|
|
|
|
|
getCityList(){
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
|
|
|
|
url: ctx + "system/area/getSysAreaList",
|
|
|
|
|
|
|
|
type: 'GET',
|
|
|
|
|
|
|
|
data:this.params ,
|
|
|
|
|
|
|
|
success:((res)=>{
|
|
|
|
|
|
|
|
this.CityList = res.data
|
|
|
|
|
|
|
|
}) ,
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
getAreaList(){
|
|
|
|
|
|
|
|
this.params.parentId = this.City
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
|
|
|
|
url: ctx + "system/area/getSysAreaList",
|
|
|
|
|
|
|
|
type: 'GET',
|
|
|
|
|
|
|
|
data:this.params,
|
|
|
|
|
|
|
|
success:((res)=>{
|
|
|
|
|
|
|
|
this.AreaList = res.data
|
|
|
|
|
|
|
|
}) ,
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
</html>
|
|
|
|