|
@@ -51,6 +51,22 @@
|
|
return false;
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ var list = [];
|
|
|
|
+ var size = $("#reportedConsultantList tr").length;
|
|
|
|
+ if(size>0){
|
|
|
|
+ for (var i = 1;i<=size;i++){
|
|
|
|
+ var zixunyuan = $("#reportedConsultantList"+i+"_zixunyuan").val();
|
|
|
|
+ list.push(zixunyuan);
|
|
|
|
+ }
|
|
|
|
+ var nary = list.sort();
|
|
|
|
+ for(var i = 0; i < nary.length - 1; i++) {
|
|
|
|
+ if(nary[i] == nary[i + 1]) {
|
|
|
|
+ parent.layer.msg("咨询员重复,请重新选择!", {icon: 5});
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
var team = $("#team").val()
|
|
var team = $("#team").val()
|
|
var city = $("#city").val()
|
|
var city = $("#city").val()
|
|
var county = $("#county").val()
|
|
var county = $("#county").val()
|
|
@@ -92,18 +108,42 @@
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
|
|
- $("#FloorUp").val(0);
|
|
|
|
- $("#FloorDown").val(0);
|
|
|
|
- $("#ZiXunBDE_TJ").val(0.00);
|
|
|
|
- $("#ZiXunBDE_AZ").val(0.00);
|
|
|
|
- $("#GCYL").val(0.00);
|
|
|
|
- $("#SNYL").val(0.00);
|
|
|
|
- $("#YBTYL").val(0.00);
|
|
|
|
- $("#RGGRYL").val(0.00);
|
|
|
|
- $("#GCYL_PerUnit").val(0.00);
|
|
|
|
- $("#SNYL_PerUnit").val(0.00);
|
|
|
|
- $("#YBTYL_PerUnit").val(0.00);
|
|
|
|
- $("#RGGRYL_PerUnit").val(0.00);
|
|
|
|
|
|
+ if($("#FloorUp").val() == undefined || $("#FloorUp").val() == null || $("#FloorUp").val() == ''){
|
|
|
|
+ $("#FloorUp").val(0);
|
|
|
|
+ }
|
|
|
|
+ if($("#FloorDown").val() == undefined || $("#FloorDown").val() == null || $("#FloorDown").val() == ''){
|
|
|
|
+ $("#FloorDown").val(0);
|
|
|
|
+ }
|
|
|
|
+ if($("#ZiXunBDETJ").val() == undefined || $("#ZiXunBDETJ").val() == null || $("#ZiXunBDETJ").val() == ''){
|
|
|
|
+ $("#ZiXunBDETJ").val(0);
|
|
|
|
+ }
|
|
|
|
+ if($("#ZiXunBDEAZ").val() == undefined || $("#ZiXunBDEAZ").val() == null || $("#ZiXunBDEAZ").val() == ''){
|
|
|
|
+ $("#ZiXunBDEAZ").val(0);
|
|
|
|
+ }
|
|
|
|
+ if($("#GCYL").val() == undefined || $("#GCYL").val() == null || $("#GCYL").val() == ''){
|
|
|
|
+ $("#GCYL").val(0);
|
|
|
|
+ }
|
|
|
|
+ if($("#SNYL").val() == undefined || $("#SNYL").val() == null || $("#SNYL").val() == ''){
|
|
|
|
+ $("#SNYL").val(0);
|
|
|
|
+ }
|
|
|
|
+ if($("#YBTYL").val() == undefined || $("#YBTYL").val() == null || $("#YBTYL").val() == ''){
|
|
|
|
+ $("#YBTYL").val(0);
|
|
|
|
+ }
|
|
|
|
+ if($("#RGGRYL").val() == undefined || $("#RGGRYL").val() == null || $("#RGGRYL").val() == ''){
|
|
|
|
+ $("#RGGRYL").val(0);
|
|
|
|
+ }
|
|
|
|
+ if($("#GCYLPerUnit").val() == undefined || $("#GCYLPerUnit").val() == null || $("#GCYLPerUnit").val() == ''){
|
|
|
|
+ $("#GCYLPerUnit").val(0);
|
|
|
|
+ }
|
|
|
|
+ if($("#SNYLPerUnit").val() == undefined || $("#SNYLPerUnit").val() == null || $("#SNYLPerUnit").val() == ''){
|
|
|
|
+ $("#SNYLPerUnit").val(0);
|
|
|
|
+ }
|
|
|
|
+ if($("#YBTYLPerUnit").val() == undefined || $("#YBTYLPerUnit").val() == null || $("#YBTYLPerUnit").val() == ''){
|
|
|
|
+ $("#YBTYLPerUnit").val(0);
|
|
|
|
+ }
|
|
|
|
+ if($("#RGGRYLPerUnit").val() == undefined || $("#RGGRYLPerUnit").val() == null || $("#RGGRYLPerUnit").val() == ''){
|
|
|
|
+ $("#RGGRYLPerUnit").val(0);
|
|
|
|
+ }
|
|
|
|
|
|
laydate.render({
|
|
laydate.render({
|
|
elem: '#BaoGaoShuQianFaDate', //目标元素。由于laydate.js封装了一个轻量级的选择器引擎,因此elem还允许你传入class、tag但必须按照这种方式 '#id .class'
|
|
elem: '#BaoGaoShuQianFaDate', //目标元素。由于laydate.js封装了一个轻量级的选择器引擎,因此elem还允许你传入class、tag但必须按照这种方式 '#id .class'
|
|
@@ -112,17 +152,23 @@
|
|
, trigger: 'click'
|
|
, trigger: 'click'
|
|
,max: 38 //38天后
|
|
,max: 38 //38天后
|
|
});
|
|
});
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ $('#city').html('<option value="${ruralProjectRecordsReported.s2}">${ruralProjectRecordsReported.city}</option>')
|
|
|
|
+ $('#county').html('<option value="${ruralProjectRecordsReported.s3}">${ruralProjectRecordsReported.county}</option>')
|
|
|
|
+ layui.form.render("select");
|
|
|
|
+
|
|
});
|
|
});
|
|
|
|
|
|
function ZiXunBDEChange(){
|
|
function ZiXunBDEChange(){
|
|
//咨询标的额
|
|
//咨询标的额
|
|
var ZiXunBDE = $("#ZiXunBDE").val();
|
|
var ZiXunBDE = $("#ZiXunBDE").val();
|
|
//建筑面积或规模
|
|
//建筑面积或规模
|
|
- var GCGM_Value = $("#GCGM_Value").val();
|
|
|
|
|
|
+ var GCGMValue = $("#GCGMValue").val();
|
|
//土建造价
|
|
//土建造价
|
|
- var ZiXunBDE_TJ = $("#ZiXunBDE_TJ").val();
|
|
|
|
|
|
+ var ZiXunBDETJ = $("#ZiXunBDETJ").val();
|
|
//安装造价
|
|
//安装造价
|
|
- var ZiXunBDE_AZ = $("#ZiXunBDE_AZ").val();
|
|
|
|
|
|
+ var ZiXunBDEAZ = $("#ZiXunBDEAZ").val();
|
|
//钢材用量
|
|
//钢材用量
|
|
var GCYL = $("#GCYL").val();
|
|
var GCYL = $("#GCYL").val();
|
|
//水泥用量
|
|
//水泥用量
|
|
@@ -135,144 +181,144 @@
|
|
//判断咨询标的额的值
|
|
//判断咨询标的额的值
|
|
if(ZiXunBDE != ''){
|
|
if(ZiXunBDE != ''){
|
|
//判断土建造价的值
|
|
//判断土建造价的值
|
|
- if(ZiXunBDE_TJ != ''){
|
|
|
|
- var Cal_TJ_Percent = (Math.round(parseInt(ZiXunBDE_TJ) / parseInt(ZiXunBDE) * 100) / 100 * 100).toFixed(2);
|
|
|
|
- $("#Cal_TJ_Percent").val(Cal_TJ_Percent);
|
|
|
|
|
|
+ if(ZiXunBDETJ != ''){
|
|
|
|
+ var CalTJPercent = (Math.round(parseInt(ZiXunBDETJ) / parseInt(ZiXunBDE) * 100) / 100 * 100).toFixed(2);
|
|
|
|
+ $("#CalTJPercent").val(CalTJPercent);
|
|
}else{
|
|
}else{
|
|
- $("#Cal_TJ_Percent").val('');
|
|
|
|
|
|
+ $("#CalTJPercent").val('');
|
|
}
|
|
}
|
|
//判断土建造价的值
|
|
//判断土建造价的值
|
|
- if(ZiXunBDE_AZ != ''){
|
|
|
|
- var Cal_AZ_Percent = (Math.round(parseInt(ZiXunBDE_AZ) / parseInt(ZiXunBDE) * 100) / 100 * 100).toFixed(2);
|
|
|
|
- $("#Cal_AZ_Percent").val(Cal_AZ_Percent);
|
|
|
|
|
|
+ if(ZiXunBDEAZ != ''){
|
|
|
|
+ var CalAZPercent = (Math.round(parseInt(ZiXunBDEAZ) / parseInt(ZiXunBDE) * 100) / 100 * 100).toFixed(2);
|
|
|
|
+ $("#CalAZPercent").val(CalAZPercent);
|
|
}else{
|
|
}else{
|
|
- $("#Cal_AZ_Percent").val('');
|
|
|
|
|
|
+ $("#CalAZPercent").val('');
|
|
}
|
|
}
|
|
//判断建筑面积或规模
|
|
//判断建筑面积或规模
|
|
- if(GCGM_Value != ''){
|
|
|
|
- var Cal_ZZJ_Unit = (Math.round(parseInt(ZiXunBDE) / parseInt(GCGM_Value) * 100) * 100).toFixed(2);
|
|
|
|
- $("#Cal_ZZJ_Unit").val(Cal_ZZJ_Unit);
|
|
|
|
|
|
+ if(GCGMValue != ''){
|
|
|
|
+ var CalZZJUnit = (Math.round(parseInt(ZiXunBDE) / parseInt(GCGMValue) * 100) * 100).toFixed(2);
|
|
|
|
+ $("#CalZZJUnit").val(CalZZJUnit);
|
|
}else{
|
|
}else{
|
|
- $("#Cal_ZZJ_Unit").val('');
|
|
|
|
|
|
+ $("#CalZZJUnit").val('');
|
|
}
|
|
}
|
|
}
|
|
}
|
|
//判断建筑面积或规模
|
|
//判断建筑面积或规模
|
|
- if(GCGM_Value != ''){
|
|
|
|
|
|
+ if(GCGMValue != ''){
|
|
//判断土建造价
|
|
//判断土建造价
|
|
- if(ZiXunBDE_TJ != ''){
|
|
|
|
- var Cal_ZZJ_TJ_Unit = (Math.round(parseInt(ZiXunBDE_TJ) / parseInt(GCGM_Value) * 100) * 100).toFixed(2);
|
|
|
|
- $("#Cal_ZZJ_TJ_Unit").val(Cal_ZZJ_TJ_Unit);
|
|
|
|
|
|
+ if(ZiXunBDETJ != ''){
|
|
|
|
+ var CalZZJTJUnit = (Math.round(parseInt(ZiXunBDETJ) / parseInt(GCGMValue) * 100) * 100).toFixed(2);
|
|
|
|
+ $("#CalZZJTJUnit").val(CalZZJTJUnit);
|
|
}else{
|
|
}else{
|
|
- $("#Cal_ZZJ_TJ_Unit").val('');
|
|
|
|
|
|
+ $("#CalZZJTJUnit").val('');
|
|
}
|
|
}
|
|
//判断安装造价
|
|
//判断安装造价
|
|
- if(ZiXunBDE_AZ != ''){
|
|
|
|
- var Cal_ZZJ_AZ_Unit = (Math.round(parseInt(ZiXunBDE_AZ) / parseInt(GCGM_Value) * 100) * 100).toFixed(2);
|
|
|
|
- $("#Cal_ZZJ_AZ_Unit").val(Cal_ZZJ_AZ_Unit);
|
|
|
|
|
|
+ if(ZiXunBDEAZ != ''){
|
|
|
|
+ var CalZZJAZUnit = (Math.round(parseInt(ZiXunBDEAZ) / parseInt(GCGMValue) * 100) * 100).toFixed(2);
|
|
|
|
+ $("#CalZZJAZUnit").val(CalZZJAZUnit);
|
|
}else{
|
|
}else{
|
|
- $("#Cal_ZZJ_AZ_Unit").val('');
|
|
|
|
|
|
+ $("#CalZZJAZUnit").val('');
|
|
}
|
|
}
|
|
//判断钢材用量
|
|
//判断钢材用量
|
|
if(GCYL != ''){
|
|
if(GCYL != ''){
|
|
- var GCYL_PerUnit = (Math.round(parseInt(GCYL) / parseInt(GCGM_Value) * 100) * 10).toFixed(2);
|
|
|
|
- $("#GCYL_PerUnit").val(GCYL_PerUnit);
|
|
|
|
|
|
+ var GCYLPerUnit = (Math.round(parseInt(GCYL) / parseInt(GCGMValue) * 100) * 10).toFixed(2);
|
|
|
|
+ $("#GCYLPerUnit").val(GCYLPerUnit);
|
|
}else{
|
|
}else{
|
|
- $("#GCYL_PerUnit").val('');
|
|
|
|
|
|
+ $("#GCYLPerUnit").val('');
|
|
}
|
|
}
|
|
//判断水泥用量
|
|
//判断水泥用量
|
|
if(SNYL != ''){
|
|
if(SNYL != ''){
|
|
- var SNYL_PerUnit = (Math.round(parseInt(SNYL) / parseInt(GCGM_Value) * 100) * 10).toFixed(2);
|
|
|
|
- $("#SNYL_PerUnit").val(SNYL_PerUnit);
|
|
|
|
|
|
+ var SNYLPerUnit = (Math.round(parseInt(SNYL) / parseInt(GCGMValue) * 100) * 10).toFixed(2);
|
|
|
|
+ $("#SNYLPerUnit").val(SNYLPerUnit);
|
|
}else{
|
|
}else{
|
|
- $("#SNYL_PerUnit").val('');
|
|
|
|
|
|
+ $("#SNYLPerUnit").val('');
|
|
}
|
|
}
|
|
//判断预拌砼用量
|
|
//判断预拌砼用量
|
|
if(YBTYL != ''){
|
|
if(YBTYL != ''){
|
|
- var YBTYL_PerUnit = Math.round(parseInt(YBTYL) / parseInt(GCGM_Value)).toFixed(2);
|
|
|
|
- $("#YBTYL_PerUnit").val(YBTYL_PerUnit);
|
|
|
|
|
|
+ var YBTYLPerUnit = Math.round(parseInt(YBTYL) / parseInt(GCGMValue)).toFixed(2);
|
|
|
|
+ $("#YBTYLPerUnit").val(YBTYLPerUnit);
|
|
}else{
|
|
}else{
|
|
- $("#YBTYL_PerUnit").val('');
|
|
|
|
|
|
+ $("#YBTYLPerUnit").val('');
|
|
}
|
|
}
|
|
//判断人工工日用量
|
|
//判断人工工日用量
|
|
if(RGGRYL != ''){
|
|
if(RGGRYL != ''){
|
|
- var RGGRYL_PerUnit = Math.round(parseInt(RGGRYL) / parseInt(GCGM_Value)).toFixed(2);
|
|
|
|
- $("#RGGRYL_PerUnit").val(RGGRYL_PerUnit);
|
|
|
|
|
|
+ var RGGRYLPerUnit = Math.round(parseInt(RGGRYL) / parseInt(GCGMValue)).toFixed(2);
|
|
|
|
+ $("#RGGRYLPerUnit").val(RGGRYLPerUnit);
|
|
}else{
|
|
}else{
|
|
- $("#RGGRYL_PerUnit").val('');
|
|
|
|
|
|
+ $("#RGGRYLPerUnit").val('');
|
|
}
|
|
}
|
|
}
|
|
}
|
|
//判断土建造价
|
|
//判断土建造价
|
|
- if(ZiXunBDE_TJ !=''){
|
|
|
|
|
|
+ if(ZiXunBDETJ !=''){
|
|
//判断咨询标的额
|
|
//判断咨询标的额
|
|
if(ZiXunBDE != ''){
|
|
if(ZiXunBDE != ''){
|
|
- var Cal_TJ_Percent = (Math.round(parseInt(ZiXunBDE_TJ) / parseInt(ZiXunBDE) * 100) / 100 * 100).toFixed(2);
|
|
|
|
- $("#Cal_TJ_Percent").val(Cal_TJ_Percent);
|
|
|
|
|
|
+ var CalTJPercent = (Math.round(parseInt(ZiXunBDETJ) / parseInt(ZiXunBDE) * 100) / 100 * 100).toFixed(2);
|
|
|
|
+ $("#CalTJPercent").val(CalTJPercent);
|
|
}else{
|
|
}else{
|
|
- $("#Cal_TJ_Percent").val('');
|
|
|
|
|
|
+ $("#CalTJPercent").val('');
|
|
}
|
|
}
|
|
//判断建筑面积或规模
|
|
//判断建筑面积或规模
|
|
- if(GCGM_Value != ''){
|
|
|
|
- var Cal_ZZJ_TJ_Unit = (Math.round(parseInt(ZiXunBDE_TJ) / parseInt(GCGM_Value) * 100) * 100).toFixed(2);
|
|
|
|
- $("#Cal_ZZJ_TJ_Unit").val(Cal_ZZJ_TJ_Unit);
|
|
|
|
|
|
+ if(GCGMValue != ''){
|
|
|
|
+ var CalZZJTJUnit = (Math.round(parseInt(ZiXunBDETJ) / parseInt(GCGMValue) * 100) * 100).toFixed(2);
|
|
|
|
+ $("#CalZZJTJUnit").val(CalZZJTJUnit);
|
|
}else{
|
|
}else{
|
|
- $("#Cal_ZZJ_TJ_Unit").val('');
|
|
|
|
|
|
+ $("#CalZZJTJUnit").val('');
|
|
}
|
|
}
|
|
}
|
|
}
|
|
//判断安装造价
|
|
//判断安装造价
|
|
- if(ZiXunBDE_AZ !=''){
|
|
|
|
|
|
+ if(ZiXunBDEAZ !=''){
|
|
//判断咨询标的额
|
|
//判断咨询标的额
|
|
if(ZiXunBDE != ''){
|
|
if(ZiXunBDE != ''){
|
|
- var Cal_AZ_Percent = (Math.round(parseInt(ZiXunBDE_AZ) / parseInt(ZiXunBDE) * 100) / 100 * 100).toFixed(2);
|
|
|
|
- $("#Cal_AZ_Percent").val(Cal_AZ_Percent);
|
|
|
|
|
|
+ var CalAZPercent = (Math.round(parseInt(ZiXunBDEAZ) / parseInt(ZiXunBDE) * 100) / 100 * 100).toFixed(2);
|
|
|
|
+ $("#CalAZPercent").val(CalAZPercent);
|
|
}else{
|
|
}else{
|
|
- $("#Cal_AZ_Percent").val('');
|
|
|
|
|
|
+ $("#CalAZPercent").val('');
|
|
}
|
|
}
|
|
//判断建筑面积或规模
|
|
//判断建筑面积或规模
|
|
- if(GCGM_Value != ''){
|
|
|
|
- var Cal_ZZJ_AZ_Unit = (Math.round(parseInt(ZiXunBDE_AZ) / parseInt(GCGM_Value) * 100) * 100).toFixed(2);
|
|
|
|
- $("#Cal_ZZJ_AZ_Unit").val(Cal_ZZJ_AZ_Unit);
|
|
|
|
|
|
+ if(GCGMValue != ''){
|
|
|
|
+ var CalZZJAZUnit = (Math.round(parseInt(ZiXunBDEAZ) / parseInt(GCGMValue) * 100) * 100).toFixed(2);
|
|
|
|
+ $("#CalZZJAZUnit").val(CalZZJAZUnit);
|
|
}else{
|
|
}else{
|
|
- $("#Cal_ZZJ_AZ_Unit").val('');
|
|
|
|
|
|
+ $("#CalZZJAZUnit").val('');
|
|
}
|
|
}
|
|
}
|
|
}
|
|
//判断钢材用量
|
|
//判断钢材用量
|
|
if(GCYL !=''){
|
|
if(GCYL !=''){
|
|
//判断建筑面积或规模
|
|
//判断建筑面积或规模
|
|
- if(GCGM_Value != ''){
|
|
|
|
- var GCYL_PerUnit = (Math.round(parseInt(GCYL) / parseInt(GCGM_Value) * 100) * 10).toFixed(2);
|
|
|
|
- $("#GCYL_PerUnit").val(GCYL_PerUnit);
|
|
|
|
|
|
+ if(GCGMValue != ''){
|
|
|
|
+ var GCYLPerUnit = (Math.round(parseInt(GCYL) / parseInt(GCGMValue) * 100) * 10).toFixed(2);
|
|
|
|
+ $("#GCYLPerUnit").val(GCYLPerUnit);
|
|
}else{
|
|
}else{
|
|
- $("#GCYL_PerUnit").val('');
|
|
|
|
|
|
+ $("#GCYLPerUnit").val('');
|
|
}
|
|
}
|
|
}
|
|
}
|
|
//判断水泥用量
|
|
//判断水泥用量
|
|
if(SNYL !=''){
|
|
if(SNYL !=''){
|
|
//判断建筑面积或规模
|
|
//判断建筑面积或规模
|
|
- if(GCGM_Value != ''){
|
|
|
|
- var SNYL_PerUnit = (Math.round(parseInt(SNYL) / parseInt(GCGM_Value) * 100) * 10).toFixed(2);
|
|
|
|
- $("#SNYL_PerUnit").val(SNYL_PerUnit);
|
|
|
|
|
|
+ if(GCGMValue != ''){
|
|
|
|
+ var SNYLPerUnit = (Math.round(parseInt(SNYL) / parseInt(GCGMValue) * 100) * 10).toFixed(2);
|
|
|
|
+ $("#SNYLPerUnit").val(SNYLPerUnit);
|
|
}else{
|
|
}else{
|
|
- $("#SNYL_PerUnit").val('');
|
|
|
|
|
|
+ $("#SNYLPerUnit").val('');
|
|
}
|
|
}
|
|
}
|
|
}
|
|
//判断预拌砼用量
|
|
//判断预拌砼用量
|
|
if(YBTYL !=''){
|
|
if(YBTYL !=''){
|
|
//判断建筑面积或规模
|
|
//判断建筑面积或规模
|
|
- if(GCGM_Value != ''){
|
|
|
|
- var YBTYL_PerUnit = (Math.round(parseInt(YBTYL) / parseInt(GCGM_Value) * 100) * 10).toFixed(2);
|
|
|
|
- $("#YBTYL_PerUnit").val(YBTYL_PerUnit);
|
|
|
|
|
|
+ if(GCGMValue != ''){
|
|
|
|
+ var YBTYLPerUnit = (Math.round(parseInt(YBTYL) / parseInt(GCGMValue) * 100) * 10).toFixed(2);
|
|
|
|
+ $("#YBTYLPerUnit").val(YBTYLPerUnit);
|
|
}else{
|
|
}else{
|
|
- $("#YBTYL_PerUnit").val('');
|
|
|
|
|
|
+ $("#YBTYLPerUnit").val('');
|
|
}
|
|
}
|
|
}
|
|
}
|
|
//判断人工工日用量
|
|
//判断人工工日用量
|
|
if(RGGRYL !=''){
|
|
if(RGGRYL !=''){
|
|
//判断建筑面积或规模
|
|
//判断建筑面积或规模
|
|
- if(GCGM_Value != ''){
|
|
|
|
- var RGGRYL_PerUnit = Math.round(parseInt(RGGRYL) / parseInt(GCGM_Value)).toFixed(2);
|
|
|
|
- $("#RGGRYL_PerUnit").val(RGGRYL_PerUnit);
|
|
|
|
|
|
+ if(GCGMValue != ''){
|
|
|
|
+ var RGGRYLPerUnit = Math.round(parseInt(RGGRYL) / parseInt(GCGMValue)).toFixed(2);
|
|
|
|
+ $("#RGGRYLPerUnit").val(RGGRYLPerUnit);
|
|
}else{
|
|
}else{
|
|
- $("#RGGRYL_PerUnit").val('');
|
|
|
|
|
|
+ $("#RGGRYLPerUnit").val('');
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -727,6 +773,47 @@
|
|
$("#buildingPercent").val("");
|
|
$("#buildingPercent").val("");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ function setTaxMoney(obj){
|
|
|
|
+ var a = $(obj).attr("id");
|
|
|
|
+ //咨询营业收入
|
|
|
|
+ var mv = $("#ZiXunShouRu").val();
|
|
|
|
+ var m = parseFloat(mv)* 10000;
|
|
|
|
+
|
|
|
|
+ var t2 = $("#" + a ).val();
|
|
|
|
+
|
|
|
|
+ //完成营业收入
|
|
|
|
+ var t = a.replace('wcyysrbl','wcyysr');
|
|
|
|
+ if(!/^\d+(\.\d{1,4})?$/.test( t2 )){
|
|
|
|
+ $("#" + t ).val("");
|
|
|
|
+ parent.layer.msg("请填写正确完成营业收入比例",{icon:5});
|
|
|
|
+ return;
|
|
|
|
+ }else {
|
|
|
|
+ var wcyysr = m * t2 /100;
|
|
|
|
+ $("#" + t ).val(parseFloat(wcyysr.toFixed(2)));
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ function zxChange() {
|
|
|
|
+ //咨询营业收入
|
|
|
|
+ var mv = $("#ZiXunShouRu").val();
|
|
|
|
+ if(!/^\d+(\.\d{1,4})?$/.test( mv )){
|
|
|
|
+ $("#" + t ).val("");
|
|
|
|
+ parent.layer.msg("请填写正确的咨询营业收入",{icon:5});
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ var m = parseFloat(mv)* 10000;
|
|
|
|
+ var size = $("#reportedConsultantList tr").length;
|
|
|
|
+ for (var i = 1;i<=size;i++){
|
|
|
|
+ var wcyysrbl = $("#reportedConsultantList"+i+"_wcyysrbl").val();
|
|
|
|
+
|
|
|
|
+ if(wcyysrbl!=''){
|
|
|
|
+ var wcyysr = m * wcyysrbl /100;
|
|
|
|
+ $("#reportedConsultantList"+i+"_wcyysr").val(wcyysr);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
</script>
|
|
</script>
|
|
</head>
|
|
</head>
|
|
<body>
|
|
<body>
|
|
@@ -734,6 +821,7 @@
|
|
<div class="container">
|
|
<div class="container">
|
|
<sys:message content="${message}"/>
|
|
<sys:message content="${message}"/>
|
|
<form:form id="inputForm" modelAttribute="ruralProjectRecordsReported" enctype="multipart/form-data" action="${ctx}/ruralProject/ruralProjectMessage/saveReported" method="post" class="form-horizontal layui-form">
|
|
<form:form id="inputForm" modelAttribute="ruralProjectRecordsReported" enctype="multipart/form-data" action="${ctx}/ruralProject/ruralProjectMessage/saveReported" method="post" class="form-horizontal layui-form">
|
|
|
|
+ <form:hidden path="id"/>
|
|
<form:hidden path="projectId"/>
|
|
<form:hidden path="projectId"/>
|
|
<form:hidden path="workContractInfo.client.id" id="contractClientId" value="${workContractInfo.client.id}"/>
|
|
<form:hidden path="workContractInfo.client.id" id="contractClientId" value="${workContractInfo.client.id}"/>
|
|
<input type="hidden" id="flagFile" value="">
|
|
<input type="hidden" id="flagFile" value="">
|
|
@@ -749,7 +837,7 @@
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<label class="layui-form-label double-line"><span class="require-item">*</span>咨询项目负责人:</label>
|
|
<label class="layui-form-label double-line"><span class="require-item">*</span>咨询项目负责人:</label>
|
|
<div class="layui-input-block with-icon">
|
|
<div class="layui-input-block with-icon">
|
|
- <sys:treeselect id="master" name="projectLeaders" value="${ruralProjectRecordsReported.xmFZR}" labelName="leaderNameStr" labelValue="${ruralProjectRecordsReported.leaderNameStr}"
|
|
|
|
|
|
+ <sys:treeselect id="master" name="xmFZR" value="${ruralProjectRecordsReported.xmFZR}" labelName="leaderNameStr" labelValue="${ruralProjectRecordsReported.leaderNameStr}"
|
|
title="用户" url="/sys/office/treeDataAll?type=3" cssClass="form-control required layui-input" allowClear="true" notAllowSelectParent="true"/>
|
|
title="用户" url="/sys/office/treeDataAll?type=3" cssClass="form-control required layui-input" allowClear="true" notAllowSelectParent="true"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -810,7 +898,7 @@
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<label class="layui-form-label double-line"><span class="require-item">*</span>咨询营业收入(万元):</label>
|
|
<label class="layui-form-label double-line"><span class="require-item">*</span>咨询营业收入(万元):</label>
|
|
<div class="layui-input-block">
|
|
<div class="layui-input-block">
|
|
- <form:input path="ZiXunShouRu" htmlEscape="false" class="form-control required layui-input"/>
|
|
|
|
|
|
+ <form:input path="ZiXunShouRu" htmlEscape="false" onchange="zxChange()" class="form-control required layui-input"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
@@ -858,19 +946,19 @@
|
|
<input id="reportedConsultantList{{idx}}_costNum" name="reportedConsultantList[{{idx}}].costNum" readonly="readonly" style="text-align: center" value="{{idx}}" type="text" class="form-control contentDetail"/>
|
|
<input id="reportedConsultantList{{idx}}_costNum" name="reportedConsultantList[{{idx}}].costNum" readonly="readonly" style="text-align: center" value="{{idx}}" type="text" class="form-control contentDetail"/>
|
|
</td>
|
|
</td>
|
|
<td>
|
|
<td>
|
|
- <sys:reportedtreeselectUser id="reportedConsultantList{{idx}}_zixunyuan" name="reportedConsultantList[{{idx}}].zixunyuan" value="${ruralPprojectRecords.leaderIds}" labelName="workAccountList[{{idx}}].zixunyuan" labelValue="{{row.zixunyuan}}"
|
|
|
|
|
|
+ <sys:reportedtreeselectUser id="reportedConsultantList{{idx}}_zixunyuan" name="reportedConsultantList[{{idx}}].zixunyuan" value="{{row.zixunyuan}}" labelName="workAccountList[{{idx}}].zixunyuan" labelValue="{{row.zixunyuanName}}"
|
|
title="用户" url="/sys/office/treeDataAll?type=3" cssClass="form-control required layui-input" allowClear="true" notAllowSelectParent="true"/>
|
|
title="用户" url="/sys/office/treeDataAll?type=3" cssClass="form-control required layui-input" allowClear="true" notAllowSelectParent="true"/>
|
|
</td>
|
|
</td>
|
|
|
|
|
|
<td>
|
|
<td>
|
|
- <input id="reportedConsultantList{{idx}}_zhucezigezh_ID" readonly="true" name="reportedConsultantList[{{idx}}].zhucezigezh_ID" value="{{row.zhucezigezh_ID}}" class="form-control required"/>
|
|
|
|
|
|
+ <input id="reportedConsultantList{{idx}}_zhucezigezhID" readonly="true" name="reportedConsultantList[{{idx}}].zhucezigezhID" value="{{row.zhucezigezhID}}" class="form-control required"/>
|
|
</td>
|
|
</td>
|
|
<td>
|
|
<td>
|
|
- <input id="reportedConsultantList{{idx}}_Wordnr" name="reportedConsultantList[{{idx}}].Wordnr" value="{{row.Wordnr}}" class="form-control required"/>
|
|
|
|
|
|
+ <input id="reportedConsultantList{{idx}}_wordnr" name="reportedConsultantList[{{idx}}].wordnr" value="{{row.wordnr}}" class="form-control required"/>
|
|
</td>
|
|
</td>
|
|
|
|
|
|
<td>
|
|
<td>
|
|
- <input id="reportedConsultantList{{idx}}_wcyysrbl" name="reportedConsultantList[{{idx}}].wcyysrbl" value="{{row.wcyysrbl}}" class="form-control number required"/>
|
|
|
|
|
|
+ <input id="reportedConsultantList{{idx}}_wcyysrbl" onblur="setTaxMoney(this)" name="reportedConsultantList[{{idx}}].wcyysrbl" value="{{row.wcyysrbl}}" class="form-control number required"/>
|
|
</td>
|
|
</td>
|
|
|
|
|
|
<td>
|
|
<td>
|
|
@@ -893,21 +981,21 @@
|
|
<div class="layui-input-block with-icon">
|
|
<div class="layui-input-block with-icon">
|
|
<select name="s1" id="team" lay-verify="required" lay-filter="cityfilter">
|
|
<select name="s1" id="team" lay-verify="required" lay-filter="cityfilter">
|
|
<option value=""></option>
|
|
<option value=""></option>
|
|
- <option value="1" <c:if test="${team=='1'}">selected</c:if>>江苏省</option>
|
|
|
|
- <option value="2" <c:if test="${team=='2'}">selected</c:if>>外省</option>
|
|
|
|
|
|
+ <option value="1" <c:if test="${ruralProjectRecordsReported.s1=='1'}">selected</c:if>>江苏省</option>
|
|
|
|
+ <option value="2" <c:if test="${ruralProjectRecordsReported.s1=='2'}">selected</c:if>>外省</option>
|
|
</select>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<label class="layui-form-label double-line"><span class="require-item">*</span>工程所在地级市</label>
|
|
<label class="layui-form-label double-line"><span class="require-item">*</span>工程所在地级市</label>
|
|
<div class="layui-input-block">
|
|
<div class="layui-input-block">
|
|
- <select id="city" name="s2" lay-verify="required" lay-filter="quyufilter"></select>
|
|
|
|
|
|
+ <select id="city" name="s2" value="${city}" lay-verify="required" lay-filter="quyufilter"></select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<label class="layui-form-label double-line"><span class="require-item">*</span>工程所在区县</label>
|
|
<label class="layui-form-label double-line"><span class="require-item">*</span>工程所在区县</label>
|
|
<div class="layui-input-block">
|
|
<div class="layui-input-block">
|
|
- <select id="county" name="s3" lay-verify="required" lay-filter="countyfilter"></select>
|
|
|
|
|
|
+ <select id="county" name="s3" value="${county}" lay-verify="required" lay-filter="countyfilter"></select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
@@ -933,13 +1021,13 @@
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<label class="layui-form-label double-line"><span class="require-item">*</span>建筑面积或规模:</label>
|
|
<label class="layui-form-label double-line"><span class="require-item">*</span>建筑面积或规模:</label>
|
|
<div class="layui-input-block">
|
|
<div class="layui-input-block">
|
|
- <form:input path="GCGM_Value" htmlEscape="false" class="form-control layui-input required number" onchange="ZiXunBDEChange()"/>
|
|
|
|
|
|
+ <form:input path="GCGMValue" htmlEscape="false" class="form-control layui-input required number" onchange="ZiXunBDEChange()"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<label class="layui-form-label"><span class="require-item">*</span>计量单位:</label>
|
|
<label class="layui-form-label"><span class="require-item">*</span>计量单位:</label>
|
|
<div class="layui-input-block">
|
|
<div class="layui-input-block">
|
|
- <form:select path="GCGM_Unit" class="form-control layui-input required simple-select">
|
|
|
|
|
|
+ <form:select path="GCGMUnit" class="form-control layui-input required simple-select">
|
|
<form:options items="${fns:getMainDictList('GCGM_Unit')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
|
|
<form:options items="${fns:getMainDictList('GCGM_Unit')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
|
|
</form:select>
|
|
</form:select>
|
|
</div>
|
|
</div>
|
|
@@ -961,43 +1049,43 @@
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<label class="layui-form-label double-line">其中土建造价(万元):</label>
|
|
<label class="layui-form-label double-line">其中土建造价(万元):</label>
|
|
<div class="layui-input-block">
|
|
<div class="layui-input-block">
|
|
- <form:input path="ZiXunBDE_TJ" htmlEscape="false" class="form-control layui-input" onchange="ZiXunBDEChange()"/>
|
|
|
|
|
|
+ <form:input path="ZiXunBDETJ" htmlEscape="false" class="form-control layui-input" onchange="ZiXunBDEChange()"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<label class="layui-form-label double-line">其中安装造价(万元):</label>
|
|
<label class="layui-form-label double-line">其中安装造价(万元):</label>
|
|
<div class="layui-input-block">
|
|
<div class="layui-input-block">
|
|
- <form:input path="ZiXunBDE_AZ" htmlEscape="false" class="form-control layui-input" onchange="ZiXunBDEChange()"/>
|
|
|
|
|
|
+ <form:input path="ZiXunBDEAZ" htmlEscape="false" class="form-control layui-input" onchange="ZiXunBDEChange()"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<label class="layui-form-label double-line">其中土建百分比(%):</label>
|
|
<label class="layui-form-label double-line">其中土建百分比(%):</label>
|
|
<div class="layui-input-block">
|
|
<div class="layui-input-block">
|
|
- <form:input path="Cal_TJ_Percent" htmlEscape="false" class="form-control layui-input" readonly="true"/>
|
|
|
|
|
|
+ <form:input path="CalTJPercent" htmlEscape="false" class="form-control layui-input" readonly="true"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<label class="layui-form-label double-line">其中安装百分比(%):</label>
|
|
<label class="layui-form-label double-line">其中安装百分比(%):</label>
|
|
<div class="layui-input-block">
|
|
<div class="layui-input-block">
|
|
- <form:input path="Cal_AZ_Percent" htmlEscape="false" class="form-control layui-input" readonly="true"/>
|
|
|
|
|
|
+ <form:input path="CalAZPercent" htmlEscape="false" class="form-control layui-input" readonly="true"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<label class="layui-form-label double-line">单位造价(元):</label>
|
|
<label class="layui-form-label double-line">单位造价(元):</label>
|
|
<div class="layui-input-block">
|
|
<div class="layui-input-block">
|
|
- <form:input path="Cal_ZZJ_Unit" htmlEscape="false" readonly="true" class="form-control layui-input"/>
|
|
|
|
|
|
+ <form:input path="CalZZJUnit" htmlEscape="false" readonly="true" class="form-control layui-input"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<label class="layui-form-label double-line">其中土建单位造价(元):</label>
|
|
<label class="layui-form-label double-line">其中土建单位造价(元):</label>
|
|
<div class="layui-input-block">
|
|
<div class="layui-input-block">
|
|
- <form:input path="Cal_ZZJ_TJ_Unit" htmlEscape="false" readonly="true" class="form-control layui-input"/>
|
|
|
|
|
|
+ <form:input path="CalZZJTJUnit" htmlEscape="false" readonly="true" class="form-control layui-input"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<label class="layui-form-label double-line">其中装修单位造价(元):</label>
|
|
<label class="layui-form-label double-line">其中装修单位造价(元):</label>
|
|
<div class="layui-input-block">
|
|
<div class="layui-input-block">
|
|
- <form:input path="Cal_ZZJ_AZ_Unit" htmlEscape="false" class="form-control layui-input" readonly="true"/>
|
|
|
|
|
|
+ <form:input path="CalZZJAZUnit" htmlEscape="false" class="form-control layui-input" readonly="true"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
@@ -1061,25 +1149,25 @@
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<label class="layui-form-label double-line">钢材消耗指标(kg):</label>
|
|
<label class="layui-form-label double-line">钢材消耗指标(kg):</label>
|
|
<div class="layui-input-block">
|
|
<div class="layui-input-block">
|
|
- <form:input path="GCYL_PerUnit" htmlEscape="false" class="form-control layui-input number" readonly="true"/>
|
|
|
|
|
|
+ <form:input path="GCYLPerUnit" htmlEscape="false" class="form-control layui-input number" readonly="true"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<label class="layui-form-label double-line">水泥消耗指标(kg):</label>
|
|
<label class="layui-form-label double-line">水泥消耗指标(kg):</label>
|
|
<div class="layui-input-block">
|
|
<div class="layui-input-block">
|
|
- <form:input path="SNYL_PerUnit" htmlEscape="false" class="form-control layui-input number" readonly="true"/>
|
|
|
|
|
|
+ <form:input path="SNYLPerUnit" htmlEscape="false" class="form-control layui-input number" readonly="true"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<label class="layui-form-label double-line">预拌砼消耗指标(m³):</label>
|
|
<label class="layui-form-label double-line">预拌砼消耗指标(m³):</label>
|
|
<div class="layui-input-block">
|
|
<div class="layui-input-block">
|
|
- <form:input path="YBTYL_PerUnit" htmlEscape="false" class="form-control layui-input number" readonly="true"/>
|
|
|
|
|
|
+ <form:input path="YBTYLPerUnit" htmlEscape="false" class="form-control layui-input number" readonly="true"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<div class="layui-item layui-col-sm6 lw6">
|
|
<label class="layui-form-label double-line">人工工日消耗指标(工日):</label>
|
|
<label class="layui-form-label double-line">人工工日消耗指标(工日):</label>
|
|
<div class="layui-input-block">
|
|
<div class="layui-input-block">
|
|
- <form:input path="RGGRYL_PerUnit" htmlEscape="false" class="form-control layui-input number" readonly="true"/>
|
|
|
|
|
|
+ <form:input path="RGGRYLPerUnit" htmlEscape="false" class="form-control layui-input number" readonly="true"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -1090,37 +1178,37 @@
|
|
<div class="layui-item layui-col-sm12 lw6">
|
|
<div class="layui-item layui-col-sm12 lw6">
|
|
<label class="layui-form-label">土建工程:</label>
|
|
<label class="layui-form-label">土建工程:</label>
|
|
<div class="layui-input-block paddingDiv">
|
|
<div class="layui-input-block paddingDiv">
|
|
- <form:checkboxes path="TJ_ProjectList" lay-skin="primary" itemLabel="label" itemValue="value" htmlEscape="false" items="${fns:getMainDictList('civil_project')}" />
|
|
|
|
|
|
+ <form:checkboxes path="TJProjectList" lay-skin="primary" itemLabel="label" itemValue="value" htmlEscape="false" items="${fns:getMainDictList('civil_project')}" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-item layui-col-sm12 lw6">
|
|
<div class="layui-item layui-col-sm12 lw6">
|
|
<label class="layui-form-label">装饰工程:</label>
|
|
<label class="layui-form-label">装饰工程:</label>
|
|
<div class="layui-input-block paddingDiv">
|
|
<div class="layui-input-block paddingDiv">
|
|
- <form:checkboxes path="ZS_ProjectList" lay-skin="primary" itemLabel="label" itemValue="value" htmlEscape="false" items="${fns:getMainDictList('decorate_project')}" />
|
|
|
|
|
|
+ <form:checkboxes path="ZSProjectList" lay-skin="primary" itemLabel="label" itemValue="value" htmlEscape="false" items="${fns:getMainDictList('decorate_project')}" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-item layui-col-sm12 lw6">
|
|
<div class="layui-item layui-col-sm12 lw6">
|
|
<label class="layui-form-label">安装工程:</label>
|
|
<label class="layui-form-label">安装工程:</label>
|
|
<div class="layui-input-block paddingDiv">
|
|
<div class="layui-input-block paddingDiv">
|
|
- <form:checkboxes path="AZ_ProjectList" lay-skin="primary" itemLabel="label" itemValue="value" htmlEscape="false" items="${fns:getMainDictList('install_project')}" />
|
|
|
|
|
|
+ <form:checkboxes path="AZProjectList" lay-skin="primary" itemLabel="label" itemValue="value" htmlEscape="false" items="${fns:getMainDictList('install_project')}" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-item layui-col-sm12 lw6">
|
|
<div class="layui-item layui-col-sm12 lw6">
|
|
<label class="layui-form-label">市政工程:</label>
|
|
<label class="layui-form-label">市政工程:</label>
|
|
<div class="layui-input-block paddingDiv">
|
|
<div class="layui-input-block paddingDiv">
|
|
- <form:checkboxes path="SZ_ProjectList" lay-skin="primary" itemLabel="label" itemValue="value" htmlEscape="false" items="${fns:getMainDictList('services_project')}" />
|
|
|
|
|
|
+ <form:checkboxes path="SZProjectList" lay-skin="primary" itemLabel="label" itemValue="value" htmlEscape="false" items="${fns:getMainDictList('services_project')}" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-item layui-col-sm12 lw6">
|
|
<div class="layui-item layui-col-sm12 lw6">
|
|
<label class="layui-form-label">仿古园林工程:</label>
|
|
<label class="layui-form-label">仿古园林工程:</label>
|
|
<div class="layui-input-block paddingDiv">
|
|
<div class="layui-input-block paddingDiv">
|
|
- <form:checkboxes path="FGYL_ProjectList" lay-skin="primary" itemLabel="label" itemValue="value" htmlEscape="false" items="${fns:getMainDictList('park_project')}" />
|
|
|
|
|
|
+ <form:checkboxes path="FGYLProjectList" lay-skin="primary" itemLabel="label" itemValue="value" htmlEscape="false" items="${fns:getMainDictList('park_project')}" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-item layui-col-sm12 lw6 with-textarea">
|
|
<div class="layui-item layui-col-sm12 lw6 with-textarea">
|
|
<label class="layui-form-label double-line">其他专业工程咨询项目造价包含内容说明:</label>
|
|
<label class="layui-form-label double-line">其他专业工程咨询项目造价包含内容说明:</label>
|
|
<div class="layui-input-block">
|
|
<div class="layui-input-block">
|
|
- <form:textarea path="QT_Projec" htmlEscape="false" rows="4" maxlength="255" class="form-control "/>
|
|
|
|
|
|
+ <form:textarea path="QTProjec" htmlEscape="false" rows="4" maxlength="255" class="form-control "/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -1194,11 +1282,11 @@
|
|
var workClientBankRowIdx = 0,
|
|
var workClientBankRowIdx = 0,
|
|
workClientBankTpl = $("#workClientBankTpl").html().replace(/(\/\/\<!\-\-)|(\/\/\-\->)/g, "");
|
|
workClientBankTpl = $("#workClientBankTpl").html().replace(/(\/\/\<!\-\-)|(\/\/\-\->)/g, "");
|
|
$(document).ready(function () {
|
|
$(document).ready(function () {
|
|
- /*var dataBank = ${fns:toJson(ruralPprojectRecords.reportedConsultantList)};
|
|
|
|
|
|
+ var dataBank = ${fns:toJson(ruralProjectRecordsReported.reportedConsultantList)};
|
|
for (var i = 0; i < dataBank.length; i++) {
|
|
for (var i = 0; i < dataBank.length; i++) {
|
|
addRow('#reportedConsultantList', workClientBankRowIdx, workClientBankTpl, dataBank[i]);
|
|
addRow('#reportedConsultantList', workClientBankRowIdx, workClientBankTpl, dataBank[i]);
|
|
workClientBankRowIdx = workClientBankRowIdx + 1;
|
|
workClientBankRowIdx = workClientBankRowIdx + 1;
|
|
- }*/
|
|
|
|
|
|
+ }
|
|
});
|
|
});
|
|
|
|
|
|
</script>
|
|
</script>
|