|
@@ -75,7 +75,7 @@ class MissionSchedule extends BaseWidget {
|
|
|
planMode: undefined,
|
|
|
pointInfo: undefined,
|
|
|
regionId: undefined,
|
|
|
- userIds: undefined,
|
|
|
+ userId: undefined,
|
|
|
description: undefined,
|
|
|
planRate: undefined,
|
|
|
geoType: undefined,
|
|
@@ -309,7 +309,7 @@ class MissionSchedule extends BaseWidget {
|
|
|
planMode: undefined,
|
|
|
pointInfo: undefined,
|
|
|
regionId: undefined,
|
|
|
- userIds: undefined,
|
|
|
+ userId: undefined,
|
|
|
description: undefined,
|
|
|
planRate: undefined,
|
|
|
geoType: undefined,
|
|
@@ -417,7 +417,7 @@ class MissionSchedule extends BaseWidget {
|
|
|
|
|
|
checkContentVal.push(checkContent[i].getAttribute("value"));
|
|
|
}
|
|
|
- this.addData.userIds = checkContentVal.join(",")
|
|
|
+ this.addData.userId = checkContentVal.join(",")
|
|
|
this.addData.description = this.domObj.find('.plan_name').val();
|
|
|
this.addData.planRate = parseFloat(this.domObj.find('.plan_rate').val());
|
|
|
this.addData.geoType = this.domObj.find(".plantype option:selected").attr("data-type");
|
|
@@ -437,7 +437,7 @@ class MissionSchedule extends BaseWidget {
|
|
|
this.toast.Show("请选择结束时间");
|
|
|
return;
|
|
|
}
|
|
|
- if (this.addData.userIds + "" == "NaN" || this.addData.userIds == "") {
|
|
|
+ if (this.addData.userId + "" == "NaN" || this.addData.userId == "") {
|
|
|
this.toast.Show("请选择巡检人员");
|
|
|
return;
|
|
|
}
|
|
@@ -1300,13 +1300,13 @@ class MissionSchedule extends BaseWidget {
|
|
|
strusers = "<option selected value=''>暂无巡检人员</option>"
|
|
|
} else {
|
|
|
$.each(results.result.records, function (index, item) {
|
|
|
- if (this.addData.userIds) {
|
|
|
- for(var i = 0;i<this.addData.userIds.split(",").length;i++){
|
|
|
- var id = this.addData.userIds.split(",")[i];
|
|
|
+ if (this.addData.userId) {
|
|
|
+ for(var i = 0;i<this.addData.userId.split(",").length;i++){
|
|
|
+ var id = this.addData.userId.split(",")[i];
|
|
|
if(item.id==id){
|
|
|
strusers+="<option value='"+item.id+"' selected='selected'>"+item.realName+"</option>";
|
|
|
break;
|
|
|
- }else if(i == this.addData.userIds.split(",").length-1){
|
|
|
+ }else if(i == this.addData.userId.split(",").length-1){
|
|
|
strusers+="<option value='"+item.id+"'>"+item.realName+"</option>";
|
|
|
break;
|
|
|
}else{
|