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