修改市州

new-exam
dshclm 7 months ago
parent 6903aea622
commit 806d2c7874

@ -13,7 +13,7 @@
<div class="row">
<div class="col-sm-6">
<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">
<select id="City" name="areaCity" required class="form-control m-b">
<option value="">---请选择---</option>
@ -140,7 +140,7 @@
url: ctx + "system/area/getSysAreaList",
method: 'GET',
success: function(res) {
var cities = res.data; // 假设返回的数据中有一个叫做 'cities' 的字段包含市级数据
var cities = res.data.filter(obj => obj.id === '36625'); // 假设返回的数据中有一个叫做 'cities' 的字段包含市级数据
var $citySelect = $('#City');
// 填充城市下拉框
@ -150,7 +150,7 @@
text: city.name
}));
});
$citySelect.val('36625');
// 初始化 select2 插件
$citySelect.select2();
},
@ -160,16 +160,16 @@
});
// 监听城市下拉框的变化事件
$('#City').on('change', function() {
var selectedCityId = $(this).val();
// 如果未选择城市,则不执行后续操作
if (!selectedCityId) return;
// $('#City').on('change', function() {
// var selectedCityId = $(this).val();
//
// // 如果未选择城市,则不执行后续操作
// if (!selectedCityId) return;
// 根据选中的城市ID发送请求获取对应的区级数据
$.ajax({
url: ctx + "system/area/getSysAreaList",
data:{parentId:selectedCityId},
data:{parentId:'36625'},
method: 'GET',
success: function(res) {
var areas = res.data; // 假设返回的数据中有一个叫做 'areas' 的字段包含区级数据
@ -195,7 +195,7 @@
console.error('Failed to load area data:', err);
}
});
});
// });
});
function submitHandler() {
if ($.validate.form()) {

@ -50,7 +50,7 @@
<a class="btn btn-success" onclick="$.operate.add()" shiro:hasPermission="system:carrier:add">
<i class="fa fa-plus"></i> 添加
</a>
<a class="btn btn-primary single disabled" onclick="$.operate.editTab()" shiro:hasPermission="system:carrier:edit">
<a class="btn btn-primary single disabled" onclick="$.operate.edit()" shiro:hasPermission="system:carrier:edit">
<i class="fa fa-edit"></i> 修改
</a>
<a class="btn btn-danger multiple disabled" onclick="$.operate.removeAll()" shiro:hasPermission="system:carrier:remove">
@ -158,13 +158,13 @@
var actions = [];
if (row.status != '1') {
actions.push('<a class="btn btn-success btn-xs ' + detailFlag + '" href="javascript:void(0)" disabled><i class="fa fa-save"></i>提交</a> ');
actions.push('<a class="btn btn-warning btn-xs ' + detailFlag + '" href="javascript:void(0)" onclick="$.operate.detailTab(\'' + row.id + '\')"><i class="fa fa-search"></i>详细</a> ');
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.editTab(\'' + row.id + '\')"><i class="fa fa-edit"></i>编辑</a> ');
actions.push('<a class="btn btn-warning btn-xs ' + detailFlag + '" href="javascript:void(0)" onclick="$.operate.detail(\'' + row.id + '\')"><i class="fa fa-search"></i>详细</a> ');
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.id + '\')"><i class="fa fa-edit"></i>编辑</a> ');
actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="javascript:void(0)" onclick="$.operate.remove(\'' + row.id + '\')"><i class="fa fa-remove"></i>删除</a>');
}else{
actions.push('<a class="btn btn-success btn-xs ' + detailFlag + '" href="javascript:void(0)" onclick="openSubmit(\'' + row.id + '\')"><i class="fa fa-save"></i>提交</a> ');
actions.push('<a class="btn btn-warning btn-xs ' + detailFlag + '" href="javascript:void(0)" onclick="$.operate.detailTab(\'' + row.id + '\')"><i class="fa fa-search"></i>详细</a> ');
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.editTab(\'' + row.id + '\')"><i class="fa fa-edit"></i>编辑</a> ');
actions.push('<a class="btn btn-warning btn-xs ' + detailFlag + '" href="javascript:void(0)" onclick="$.operate.detail(\'' + row.id + '\')"><i class="fa fa-search"></i>详细</a> ');
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.id + '\')"><i class="fa fa-edit"></i>编辑</a> ');
actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="javascript:void(0)" onclick="$.operate.remove(\'' + row.id + '\')"><i class="fa fa-remove"></i>删除</a>');
}
return actions.join('');
@ -208,7 +208,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -15,7 +15,7 @@
<div class="row">
<div class="col-sm-6">
<div class="form-group">
<label class="col-sm-4 control-label ">所属市:</label>
<label class="col-sm-4 control-label ">所属市</label>
<div class="col-sm-8">
<select id="City" name="areaCity" disabled @change="getAreaList()" v-model="City" class="form-control m-b">
<option value="">请选择</option>
@ -887,7 +887,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -13,7 +13,7 @@
<div class="row">
<div class="col-sm-6">
<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">
<select id="City" name="areaCity" required @change="getAreaList()" v-model="City" class="form-control">
<option value="">请选择</option>
@ -131,12 +131,6 @@
</div>
</form>
</div>
<div class="row">
<div class="col-sm-offset-5 col-sm-10">
<button type="button" class="btn btn-sm btn-primary" onclick="submitHandler()"><i class="fa fa-check"></i>保 存</button>&nbsp;
<button type="button" class="btn btn-sm btn-danger" onclick="closeItem()"><i class="fa fa-reply-all"></i>关 闭 </button>
</div>
</div>
<th:block th:include="include :: footer" />
<!--<th:block th:include="include :: select2-js" />-->
<!--<th:block th:include="include :: bootstrap-select-js" />-->
@ -171,7 +165,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -13,7 +13,7 @@
<div class="row">
<div class="col-sm-6">
<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">
<select id="City" name="areaCity" required class="form-control m-b">
<option value="">---请选择---</option>
@ -130,7 +130,7 @@
url: ctx + "system/area/getSysAreaList",
method: 'GET',
success: function(res) {
var cities = res.data; // 假设返回的数据中有一个叫做 'cities' 的字段包含市级数据
var cities = res.data.filter(obj => obj.id === '36625'); // 假设返回的数据中有一个叫做 'cities' 的字段包含市级数据
var $citySelect = $('#City');
// 填充城市下拉框
@ -140,7 +140,7 @@
text: city.name
}));
});
$citySelect.val('36625');
// 初始化 select2 插件
$citySelect.select2();
},
@ -150,42 +150,42 @@
});
// 监听城市下拉框的变化事件
$('#City').on('change', function() {
var selectedCityId = $(this).val();
// $('#City').on('change', function() {
// var selectedCityId = $(this).val();
//
// // 如果未选择城市,则不执行后续操作
// if (!selectedCityId) return;
// 如果未选择城市,则不执行后续操作
if (!selectedCityId) return;
// 根据选中的城市ID发送请求获取对应的区级数据
$.ajax({
url: ctx + "system/area/getSysAreaList",
data:{parentId:'36625'},
method: 'GET',
success: function(res) {
var areas = res.data; // 假设返回的数据中有一个叫做 'areas' 的字段包含区级数据
var $areaSelect = $('#Area');
// 根据选中的城市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: '请选择区'
}));
// 清空区级下拉框并填充数据
$areaSelect.empty().append($('<option>', {
value: '',
text: '请选择区'
areas.forEach(function(area) {
$areaSelect.append($('<option>', {
value: area.id,
text: area.name
}));
});
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);
}
});
// 更新 select2 插件
$areaSelect.select2();
},
error: function(err) {
console.error('Failed to load area data:', err);
}
});
// });
});
function submitHandler() {
if ($.validate.form()) {

@ -185,7 +185,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -15,7 +15,7 @@
<div class="row">
<div class="col-sm-6">
<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">
<select id="City" disabled name="areaCity" required @change="getAreaList()" v-model="City" class="form-control">
<option value="">请选择</option>
@ -176,7 +176,7 @@
<div class="row">
<div class="col-sm-6">
<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">
<select id="City" disabled name="areaCity" required @change="getAreaList()" v-model="City" class="form-control">
<option value="">请选择</option>
@ -669,7 +669,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -13,7 +13,7 @@
<div class="row">
<div class="col-sm-6">
<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">
<select id="City" name="areaCity" required @change="getAreaList()" v-model="City" class="form-control">
<option value="">请选择</option>
@ -155,7 +155,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -41,7 +41,7 @@
<div class="row">
<div class="col-sm-6">
<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">
<select id="City" name="framework" required @change="getAreaList()" v-model="City" class="form-control m-b">
<option value="">---请选择---</option>

@ -135,7 +135,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -42,7 +42,7 @@
<div class="row">
<div class="col-sm-6">
<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">
<select id="City" name="framework" disabled required @change="getAreaList()" v-model="City" class="form-control m-b">
<option value="">---请选择---</option>

@ -42,7 +42,7 @@
<div class="row">
<div class="col-sm-6">
<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">
<select id="City" name="framework" required @change="getAreaList()" v-model="City" class="form-control m-b">
<option value="">---请选择---</option>

@ -48,7 +48,7 @@
<el-row>
<el-col :span="8">
<el-form-item label="所属市:" prop="framework">
<el-form-item label="所属:" prop="framework">
<el-select @change="getAreaList()" v-model="postForm.framework" class="filter-item">
<el-option
v-for="item in CityList"
@ -226,7 +226,7 @@
itemImage: true,
postForm: {
checkTypeDTOS:[],
framework:'',
framework:'36625',
area:'',
adduser: [[${user.userName}]],
depart: [[${user.dept.deptName}]],
@ -426,7 +426,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -203,7 +203,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -50,7 +50,7 @@
<el-row>
<el-col :span="8">
<el-form-item label="所属市:" prop="framework">
<el-form-item label="所属:" prop="framework">
<el-select @change="getAreaList()" disabled v-model="postForm.framework" class="filter-item">
<el-option
v-for="item in CityList"

@ -48,7 +48,7 @@
<el-row>
<el-col :span="8">
<el-form-item label="所属市:" prop="framework">
<el-form-item label="所属:" prop="framework">
<el-select @change="getAreaList()" v-model="postForm.framework" class="filter-item">
<el-option
v-for="item in CityList"
@ -507,7 +507,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -1508,7 +1508,7 @@
<td colspan=2 class=x72><span style='float:right' id="entryDate">检查开始日期:[[${tdCheckReportDTO.checkEndTime}]]</span></td>
</tr>
<tr height=37 style='mso-height-source:userset;height:28pt' id='r2'>
<td height=35 class=x74 style='height:26.5pt;'>所属</td>
<td height=35 class=x74 style='height:26.5pt;'>所属市</td>
<td class='x75 framework'>[[${tdCheckReportDTO.framework}]]</td>
<td class=x74>所属区县</td>
<td class='x75 area'>[[${tdCheckReportDTO.area}]]</td>

@ -22,7 +22,7 @@
<el-card>
<el-row>
<el-col :span="12">
<el-form-item label="所属市:" prop="framework">
<el-form-item label="所属:" prop="framework">
<el-select disabled style="width: 100%;" @change="getAreaList()" v-model="postForm.framework">
<el-option
v-for="item in CityList"

@ -17,9 +17,9 @@
</div>
</div>
<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">
<select id="City" name="framework" required @change="getAreaList()" v-model="City" class="form-control m-b">
<select id="City" name="framework" required @change="getAreaList()" v-model="City" class="form-control">
<option value="">---请选择---</option>
<option v-for="option in CityList" :value="option.id" :key="option.id">
{{ option.name }}
@ -30,7 +30,7 @@
<div class="form-group">
<label class="col-sm-3 control-label is-required">所属区县:</label>
<div class="col-sm-8">
<select id="Area" name="area" required v-model="Area" class="form-control m-b">
<select id="Area" name="area" required v-model="Area" class="form-control">
<option value="">---请选择---</option>
<option v-for="option in AreaList" :value="option.id" :key="option.id">
{{ option.name }}
@ -87,7 +87,7 @@
data: {
CityList: [],
AreaList:[],
City:'',
City:'36625',
Area:'',
params:{
parentId:'',
@ -107,7 +107,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -18,9 +18,9 @@
</div>
</div>
<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">
<select id="City" name="framework" required @change="getAreaList()" v-model="City" class="form-control m-b">
<select id="City" name="framework" required @change="getAreaList()" v-model="City" class="form-control">
<option value="">---请选择---</option>
<option v-for="option in CityList" :value="option.id" :key="option.id">
{{ option.name }}
@ -31,7 +31,7 @@
<div class="form-group">
<label class="col-sm-3 control-label is-required">所属区县:</label>
<div class="col-sm-8">
<select id="Area" name="area" required v-model="Area" class="form-control m-b">
<select id="Area" name="area" required v-model="Area" class="form-control">
<option value="">---请选择---</option>
<option v-for="option in AreaList" :value="option.id" :key="option.id">
{{ option.name }}
@ -179,7 +179,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -153,7 +153,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -15,7 +15,7 @@
<div class="row">
<div class="col-sm-6">
<div class="form-group">
<label class="col-sm-4 control-label ">所属市:</label>
<label class="col-sm-4 control-label ">所属市</label>
<div class="col-sm-8">
<select id="City" name="areaCity" disabled @change="getAreaList()" v-model="City" class="form-control m-b">
<option value="">请选择</option>

@ -166,7 +166,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -10,7 +10,7 @@
<div class="row">
<div class="col-sm-6">
<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">
<select id="City" name="frameworkId" disabled required @change="getAreaList()" v-model="City" class="form-control m-b">
<option value="">请选择</option>

@ -12,7 +12,7 @@
<div class="row">
<div class="col-sm-6">
<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">
<select id="City" name="frameworkId" required class="form-control m-b">
<option value="">---请选择---</option>

@ -27,7 +27,7 @@
<div class="row">
<div class="col-sm-6">
<div class="form-group">
<label class="col-sm-4 control-label ">所属市:</label>
<label class="col-sm-4 control-label ">所属市</label>
<div class="col-sm-8">
<select id="City" name="frameworkId" disabled @change="getAreaList()" v-model="City" class="form-control m-b">
<option value="">请选择</option>

@ -284,7 +284,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -706,7 +706,7 @@
<tr height=30 style='mso-height-source:userset;height:22.5pt' id='r3'>
</tr>
<tr height=33 class=x23 style='mso-height-source:userset;height:25pt' id='r4'>
<td colspan=2 height=31 class=x29 style='border-right:1px solid windowtext;border-bottom:1px solid windowtext;height:23.5pt;'>所属</td>
<td colspan=2 height=31 class=x29 style='border-right:1px solid windowtext;border-bottom:1px solid windowtext;height:23.5pt;'>所属市</td>
<td colspan=2 class=x29 style='border-right:1px solid windowtext;border-bottom:1px solid windowtext;'>接收单位</td>
<td colspan=2 class=x29 style='border-right:1px solid windowtext;border-bottom:1px solid windowtext;'>使用时间</td>
<td colspan=2 class=x29 style='border-right:1px solid windowtext;border-bottom:1px solid windowtext;'>保存地点</td>

@ -1208,7 +1208,7 @@
<tr height=30 style='mso-height-source:userset;height:22.5pt' id='r3'>
</tr>
<tr height=33 style='mso-height-source:userset;height:24.75pt' id='r4'>
<td colspan=2 height=31 class=x24 style='border-right:1px solid #000000;border-bottom:1px solid #000000;height:23.25pt;'>所属</td>
<td colspan=2 height=31 class=x24 style='border-right:1px solid #000000;border-bottom:1px solid #000000;height:23.25pt;'>所属市</td>
<td colspan=2 class=x24 style='border-right:1px solid #000000;border-bottom:1px solid #000000;'>使用人员</td>
<td colspan=2 class=x24 style='border-right:1px solid #000000;border-bottom:1px solid #000000;'>保存地点</td>
<td colspan=2 class=x24 style='border-right:1px solid #000000;border-bottom:1px solid #000000;'>维护部门</td>

@ -23,7 +23,7 @@
</select>
</li>
<li>
<label>所属地区</label>
<label>所属市州</label>
<select id="City" name="frameworkId" @change="getAreaList()" v-model="City">
<option value="">请选择</option>
<option v-for="option in CityList" :value="option.id" :key="option.id">
@ -116,7 +116,7 @@
},
{
field: 'frameworkId',
title: '所属地区',
title: '所属市州',
formatter: function(value, row, index) {
return getCity(datas, value)
}

@ -15,7 +15,7 @@
<div class="row">
<div class="col-sm-6">
<div class="form-group">
<label class="col-sm-4 control-label ">所属市:</label>
<label class="col-sm-4 control-label ">所属市</label>
<div class="col-sm-8">
<select id="City" name="areaCity" disabled @change="getAreaList()" v-model="City" class="form-control m-b">
<option value="">请选择</option>

@ -153,7 +153,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -168,7 +168,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -9,7 +9,7 @@
<form class="form-horizontal m" id="form-network-add">
<input name="deptId" type="hidden" id="treeId"/>
<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">
<select id="City" name="framework" required @change="getAreaList()" v-model="City" class="form-control m-b">
<option value="">---请选择---</option>
@ -95,7 +95,7 @@
data: {
CityList: [],
AreaList:[],
City:'',
City:'36625',
Area:'',
params:{
parentId:'',
@ -115,7 +115,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -10,7 +10,7 @@
<input name="netId" th:field="*{netId}" type="hidden">
<input name="deptId" type="hidden" id="treeId" th:field="*{deptId}"/>
<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">
<select id="City" name="framework" required @change="getAreaList()" v-model="City" class="form-control m-b">
<option value="">---请选择---</option>

@ -197,7 +197,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -1637,7 +1637,7 @@
<td class=x70></td>
</tr>
<tr height=48 style='mso-height-source:userset;height:36pt' id='r2'>
<td height=46 class=x74 style='height:34.5pt;'>所属</td>
<td height=46 class=x74 style='height:34.5pt;'>所属市</td>
<td class='x74 framework'></td>
<td class=x74>所属区县</td>
<td colspan=2 class='x75 area' style='border-right:1px solid windowtext;border-bottom:1px solid windowtext;'></td>

@ -8,7 +8,7 @@
<div class="wrapper wrapper-content animated fadeInRight ibox-content" id="app">
<form class="form-horizontal m" id="form-notify-add">
<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">
<select id="City" name="framework" required @change="getAreaList()" v-model="City" class="form-control m-b">
<option value="">---请选择---</option>

@ -9,7 +9,7 @@
<form class="form-horizontal m" id="form-notify-edit" th:object="${tdNotify}">
<input name="notifyId" th:field="*{notifyId}" type="hidden">
<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">
<select id="City" name="framework" required @change="getAreaList()" v-model="City" class="form-control m-b">
<option value="">---请选择---</option>

@ -9,7 +9,7 @@
<form class="form-horizontal m" id="form-property-add">
<input name="deptId" type="hidden" id="treeId"/>
<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">
<select id="City" name="part" required @change="getAreaList()" v-model="City" class="form-control">
<option value="">---请选择---</option>
@ -110,7 +110,7 @@
data: {
CityList: [],
AreaList:[],
City:'',
City:'36625',
Area:'',
params:{
parentId:'',
@ -130,7 +130,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -16,7 +16,7 @@
</div>
</div>
<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">
<select id="City" name="part" required @change="getAreaList()" v-model="City" class="form-control ">
<option value="">---请选择---</option>
@ -130,7 +130,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -170,7 +170,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -153,7 +153,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -153,7 +153,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -15,7 +15,7 @@
<div class="row">
<div class="col-sm-6">
<div class="form-group">
<label class="col-sm-4 control-label ">所属市:</label>
<label class="col-sm-4 control-label ">所属市</label>
<div class="col-sm-8">
<select id="City" name="areaCity" disabled @change="getAreaList()" v-model="City" class="form-control m-b">
<option value="">请选择</option>

@ -153,7 +153,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -15,7 +15,7 @@
<div class="row">
<div class="col-sm-6">
<div class="form-group">
<label class="col-sm-4 control-label ">所属市:</label>
<label class="col-sm-4 control-label ">所属市</label>
<div class="col-sm-8">
<select id="City" name="areaCity" disabled @change="getAreaList()" v-model="City" class="form-control m-b">
<option value="">请选择</option>

@ -153,7 +153,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -182,7 +182,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -12,7 +12,7 @@
<div class="row">
<div class="col-sm-6">
<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">
<select id="City" name="AREAID" required @change="getAreaList()" v-model="City" class="form-control m-b">
<option value="">---请选择---</option>
@ -184,7 +184,7 @@
CityList: [],
AreaList:[],
userList:[],
City:'',
City:'36625',
Area:'',
params:{
parentId:'',
@ -223,7 +223,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -13,7 +13,7 @@
<div class="row">
<div class="col-sm-6">
<div class="form-group">
<label class="col-sm-4 control-label is- ">所属市:</label>
<label class="col-sm-4 control-label is- ">所属市</label>
<div class="col-sm-8">
<select id="City" name="AREAID" disabled @change="getAreaList()" v-model="City" class="form-control m-b">
<option value="">---请选择---</option>

@ -13,7 +13,7 @@
<div class="row">
<div class="col-sm-6">
<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">
<select id="City" name="AREAID" required @change="getAreaList()" v-model="City" class="form-control m-b">
<option value="">---请选择---</option>
@ -239,7 +239,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -13,7 +13,7 @@
<div class="row">
<div class="col-sm-6">
<div class="form-group">
<label class="col-sm-4 control-label is- ">所属市:</label>
<label class="col-sm-4 control-label is- ">所属市</label>
<div class="col-sm-8">
<select id="City" name="AREAID" disabled @change="getAreaList()" v-model="City" class="form-control m-b">
<option value="">---请选择---</option>

@ -15,7 +15,7 @@
<input type="text" name="trainName"/>
</li>
<li>
<label>所属地区</label>
<label>所属市州</label>
<select id="City" name="AREAID" @change="getAreaList()" v-model="City">
<option value="">请选择</option>
<option v-for="option in CityList" :value="option.id" :key="option.id">
@ -109,7 +109,7 @@
},
{
field: 'areaid',
title: '所属市',
title: '所属市',
visible: false,
formatter: function(value, row, index) {
return getCity(datas, value)
@ -275,7 +275,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -12,7 +12,7 @@
<div class="row">
<div class="col-sm-6">
<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">
<select id="City" name="AREAID" disabled required @change="getAreaList()" v-model="City" class="form-control ">
<option value="">请选择</option>

@ -164,7 +164,7 @@
<input type="text" name="trainName"/>
</li>
<li>
<label>所属市:</label>
<label>所属市</label>
<input type="text" name="AREAID"/>
</li>
<li>
@ -226,7 +226,7 @@
},
{
field: 'AREAID',
title: '所属市',
title: '所属市',
visible: false
},

@ -15,7 +15,7 @@
<div class="row">
<div class="col-sm-6">
<div class="form-group">
<label class="col-sm-4 control-label ">所属市:</label>
<label class="col-sm-4 control-label ">所属市</label>
<div class="col-sm-8">
<select id="City" name="areaCity" disabled @change="getAreaList()" v-model="City" class="form-control m-b">
<option value="">请选择</option>

@ -153,7 +153,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -91,7 +91,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -197,7 +197,7 @@
type: 'GET',
data:this.params ,
success:((res)=>{
this.CityList = res.data
this.CityList = res.data.filter(obj => obj.id === '36625');
}) ,
});
},

@ -1778,7 +1778,7 @@
<td class=x77></td>
</tr>
<tr height=56 style='mso-height-source:userset;height:42pt' id='r2'>
<td height=54 class=x78 style='font-weight: bold;height:40.5pt;'>所属</td>
<td height=54 class=x78 style='font-weight: bold;height:40.5pt;'>所属市</td>
<td colspan=3 class='x79 framework' style='border-right:1px solid windowtext;border-bottom:1px solid windowtext;'>
[[${dept.framework}]]
</td>

Loading…
Cancel
Save