Browse Source

点号查询修改,测绘申请修改

CharlesLeocc 3 years ago
parent
commit
82516ea2e6

+ 3 - 3
src/widgets/DianhaoQuery/Widget.html

@@ -9,12 +9,12 @@
             </select>
         </div>
         <legend title="折叠/展开">
-            号:
-            <span class="glyphicon glyphicon-question-sign" title="输入号。"></span>
+            设备编号:
+            <span class="glyphicon glyphicon-question-sign" title="输入号。"></span>
         </legend>
         <div class="foldable">
             <input type="text" class="input-sm form-control title" maxlength="50" >
         </div>
         <button type="button" class="btn btn-primary btn-sm btn-block dianhaoQuery-queryBtn">查询</button>
-    </fieldset> 
+    </fieldset>
 </div>

+ 6 - 3
src/widgets/DianhaoQuery/Widget.ts

@@ -90,8 +90,11 @@ class DianhaoQuery extends BaseWidget {
     addOptionToDrapdow(layers) {
         //添加下拉列表的option
         for (var i = 0, length = layers.length; i < length; i++) {
-            var option = "<option layerId='" + layers[i].urlindex + ':' + layers[i].id + "'>" + layers[i].mapname + "</option>";
-            $(option).appendTo($(".dianhaoQuery-layerName"));
+            if(layers[i].mapname != "穿越点"){
+                var option = "<option layerId='" + layers[i].urlindex + ':' + layers[i].id + "'>" + layers[i].mapname + "</option>";
+                $(option).appendTo($(".dianhaoQuery-layerName"));
+            }
+
 
         }
     }
@@ -290,4 +293,4 @@ class DianhaoQuery extends BaseWidget {
                     selectDom.attr("size", )
                 }.bind(this));
     }
-}
+}

+ 2 - 2
src/widgets/DianhaoQuery/config.json

@@ -4,6 +4,6 @@
     "styleUrl":"widgets/PanelDemo/css/style.css",
     "hello":"Hello ",
     "getFieldUniqueValueUrl":"/exts/TFGeoAPISOE/getFieldUniqueValue",
-    "queryfield":"SID"
+    "queryfield":"CODE"
 
-}
+}

+ 8 - 8
src/widgets/MissionSchedule/Widget.ts

@@ -75,7 +75,7 @@ class MissionSchedule extends BaseWidget {
         planMode: undefined,//车巡、人巡
         pointInfo: undefined,
         regionId: undefined,//巡检片区编码
-        userIds: undefined,//用户id
+        userId: undefined,//用户id
         description: undefined,//计划名称
         planRate: undefined,//计划完成率,
         geoType: undefined,//下发计划图形的样式类型
@@ -309,7 +309,7 @@ class MissionSchedule extends BaseWidget {
             planMode: undefined,//车巡、人巡
             pointInfo: undefined,//
             regionId: undefined,//巡检片区编码
-            userIds: undefined,//用户id
+            userId: undefined,//用户id
             description: undefined,//计划名称
             planRate: undefined,//计划完成率
             geoType: undefined,//图形样式类型
@@ -417,7 +417,7 @@ class MissionSchedule extends BaseWidget {
                     //checkContent[i].find("input[type=checkbox]");
                     checkContentVal.push(checkContent[i].getAttribute("value"));
                 }
-            this.addData.userIds = checkContentVal.join(",")//parseInt(this.domObj.find('.users option:selected ').val());
+            this.addData.userId = checkContentVal.join(",")//parseInt(this.domObj.find('.users option:selected ').val());
             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{

+ 1 - 1
src/widgets/PipeRecord/Widget.html

@@ -17,7 +17,7 @@
                 </button>
         </div>
         <div class="form-group">
-            <button id="btn_edit" type="button" class="btn_editKeyEquipment">
+            <button id="btn_edit" type="button" class="btn_update">
                     修改
                 </button>
         </div>

+ 1 - 1
src/widgets/PipeRecord/Widget.ts

@@ -301,7 +301,7 @@ class PipeRecord extends BaseWidget {
             // testData:this.config.dataInfo,
             searchInfo: that.searchInfo,//条件在不断变化,故需要有全局的条件监听
             displayTitle: ["工程名称", "工程性质", "联系人","联系电话", "申请人","地址","户数","申请时间"],
-            displayField: ["name", "type", "contacts","contactsNumber", "createUserName","buriedAddress","houseHolds","createTime"],
+            displayField: ["name", "typeName", "contacts","contactsNumber", "createUserName","buriedAddress","houseHolds","createTime"],
             extentDisplayTitle: ['详情'],
             extentDisplayContent: [{
                 field: "infoWrite",