涉密文件下发更改地区选择方式

master
dshclm 10 months ago
parent ed0db3cce1
commit 1eb1bd6c6d

@ -7,27 +7,21 @@
<th:block th:include="include :: datetimepicker-css" /> <th:block th:include="include :: datetimepicker-css" />
</head> </head>
<body class="white-bg"> <body class="white-bg">
<div class="wrapper wrapper-content animated fadeInRight ibox-content" id="app"> <div class="wrapper wrapper-content animated fadeInRight ibox-content">
<form class="form-horizontal m" id="form-fileprovide-add"> <form class="form-horizontal m" id="form-fileprovide-add">
<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">
<select id="City" name="frameworkId" required @change="getAreaList()" v-model="City" class="form-control m-b"> <select id="City" name="frameworkId" required class="form-control m-b">
<option value="">请选择</option> <option value="">请选择市</option>
<option v-for="option in CityList" :value="option.id" :key="option.id">
{{ option.name }}
</option>
</select> </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">
<select id="Area" name="areaid" v-model="Area" class="form-control m-b"> <select id="Area" name="areaid" required class="form-control m-b">
<option value="">请选择</option> <option value="">请选择区</option>
<option v-for="option in AreaList" :value="option.id" :key="option.id">
{{ option.name }}
</option>
</select> </select>
</div> </div>
</div> </div>
@ -125,48 +119,69 @@
$("#form-fileprovide-add").validate({ $("#form-fileprovide-add").validate({
focusCleanup: true focusCleanup: true
}); });
var app = new Vue({ $(document).ready(function() {
el: '#app', // 获取市级数据并填充到城市下拉框
data: { $.ajax({
CityList: [], url: ctx + "system/area/getSysAreaList",
AreaList:[], method: 'GET',
City:'', success: function(res) {
Area:'', var cities = res.data; // 假设返回的数据中有一个叫做 'cities' 的字段包含市级数据
params:{ var $citySelect = $('#City');
parentId:'',
} // 填充城市下拉框
}, cities.forEach(function(city) {
mounted(){ $citySelect.append($('<option>', {
// 初始化地市列表 value: city.id,
this.getCityList(); text: city.name
if (this.City){ }));
this.getAreaList()
}
},
methods:{
getCityList(){
$.ajax({
url: ctx + "system/area/getSysAreaList",
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
}) ,
}); });
// 初始化 select2 插件
$citySelect.select2();
}, },
getAreaList(){ error: function(err) {
this.params.parentId = this.City console.error('Failed to load city data:', err);
$.ajax({
url: ctx + "system/area/getSysAreaList",
type: 'GET',
data:this.params,
success:((res)=>{
this.AreaList = res.data
}) ,
});
} }
} });
})
// 监听城市下拉框的变化事件
$('#City').on('change', function() {
var selectedCityId = $(this).val();
// 如果未选择城市,则不执行后续操作
if (!selectedCityId) return;
// 根据选中的城市ID发送请求获取对应的区级数据
$.ajax({
url: ctx + "system/area/getSysAreaList",
data:{parentId:selectedCityId},
method: 'GET',
success: function(res) {
var areas = res.data; // 假设返回的数据中有一个叫做 'areas' 的字段包含区级数据
var $areaSelect = $('#Area');
// 清空区级下拉框并填充数据
$areaSelect.empty().append($('<option>', {
value: '',
text: '请选择区'
}));
areas.forEach(function(area) {
$areaSelect.append($('<option>', {
value: area.id,
text: area.name
}));
});
// 更新 select2 插件
$areaSelect.select2();
},
error: function(err) {
console.error('Failed to load area data:', err);
}
});
});
});
function submitHandler() { function submitHandler() {
if ($.validate.form()) { if ($.validate.form()) {
$.operate.save(prefix + "/add", $('#form-fileprovide-add').serialize()); $.operate.save(prefix + "/add", $('#form-fileprovide-add').serialize());

@ -11,7 +11,7 @@
} }
</style> </style>
<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-fileprovide-edit" th:object="${tdFileProvide}"> <form class="form-horizontal m" id="form-fileprovide-edit" th:object="${tdFileProvide}">
<input name="fileId" th:field="*{fileId}" type="hidden"> <input name="fileId" th:field="*{fileId}" type="hidden">
<div class="form-group"> <div class="form-group">
@ -21,15 +21,25 @@
</div> </div>
</div> </div>
<div class="form-group"> <div class="form-group">
<label class="col-sm-3 control-label">所属市</label> <label class="col-sm-3 control-label is-required">所属市:</label>
<div class="col-sm-8"> <div class="col-sm-8">
<input name="frameworkId" readonly th:field="*{frameworkId}" class="form-control" type="text"> <select id="City" name="frameworkId" disabled 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">所属区县:</label> <label class="col-sm-3 control-label is-required">所属区县:</label>
<div class="col-sm-8"> <div class="col-sm-8">
<input name="areaid" readonly th:field="*{areaid}" class="form-control" type="text"> <select id="Area" name="areaid" disabled 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">
@ -124,6 +134,48 @@
$("#form-fileprovide-edit").validate({ $("#form-fileprovide-edit").validate({
focusCleanup: true focusCleanup: true
}); });
var app = new Vue({
el: '#app',
data: {
CityList: [],
AreaList:[],
City:[[${tdFileProvide.frameworkId}]],
Area:[[${tdFileProvide.areaid}]],
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
}) ,
});
}
}
})
var updateDate = document.querySelector('#updateDate').value; var updateDate = document.querySelector('#updateDate').value;
var provideDate = document.querySelector('#provideDate').value; var provideDate = document.querySelector('#provideDate').value;
if (updateDate != null && updateDate !== ''){ if (updateDate != null && updateDate !== ''){

Loading…
Cancel
Save