XAWDJ0277HWXPT2\Administrator 5 سال پیش
والد
کامیت
02158bb56b

تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 1 - 1
web/index.html


تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 2 - 2
web/js/app.bc53acd1.js


تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 1 - 1
web/js/app.bc53acd1.js.map


تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 2 - 0
web/js/chunk-a80ca5cc.2a04098d.js


تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 1 - 0
web/js/chunk-a80ca5cc.2a04098d.js.map


تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 0 - 2
web/js/chunk-a80ca5cc.c7d9709f.js


تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 0 - 1
web/js/chunk-a80ca5cc.c7d9709f.js.map


+ 2 - 22
webConfig/src/views/projectManagement.vue

@@ -494,15 +494,6 @@
                         <el-option key="0" label="LED" value="0"></el-option>
                         <el-option key="1" label="Insecticidal lamp" value="1"></el-option>
                     </el-select>
-                    <el-select v-model="lightControlData[item.model]" placeholder="please choose" v-if="item.type == 'select' && item.model == 'network_id'"
-                    @keyup.native="lampKeydown($event)">
-                        <el-option
-                          v-for="item in networkList"
-                          :key="item.id"
-                          :label="item.name"
-                          :value="item.id">
-                        </el-option>
-                     </el-select>
 
                      <el-select
                         v-model="lightControlData[item.model]"
@@ -1073,7 +1064,6 @@
                 addLightControlDialog:false,
                 lightControlData:{
                     lamp_no:'',
-                    network_id:'',
                     status:'',
                     section:'',
                     address:'',
@@ -1098,7 +1088,6 @@
                     {model:'lamp_no',label:'Lamp number',unit:''},
                     {model:'poName',label:'PO name',type:'select',unit:''},
                     {model:'supplierName',label:'Supplier name',type:'select',unit:''},
-                    {model:'network_id',label:'Network',type:"select",unit:''},
                     {model:'protocoltype',label:'Network protocol type',type:"select",unit:''},{model:'section',label:'Road',unit:''},{model:'address',label:'Wireless module address',unit:''},
                     // {model:'poleheight',label:'Lamp-post length',unit:'(m)'},
                     // {model:'polediameter',label:'Lamp-post diameter',unit:'(mm)'},
@@ -1128,10 +1117,7 @@
                 lightControlTitle:'创建灯控',
                 lightControlButton:'立 刻 创 建',
                 lampcontrolListHC:{},
-                lightControlDataRules:{ 
-                    network_id: [
-                        { required: true, message: '不能为空', trigger: 'blur' }
-                    ],
+                lightControlDataRules:{
                     lamp_no: [
                         { required: true, message: '不能为空'},
                     ],
@@ -1146,9 +1132,6 @@
                     ],
                 },
                 lightControlDataRulesEN:{
-                    network_id: [
-                        { required: true, message: 'Not null', trigger: 'blur' }
-                    ],
                     lamp_no: [
                         { required: true, message: 'Not null'},
                     ],
@@ -3339,7 +3322,7 @@
                 })
             },
             /*添加灯控*/
-            addLightControlFun(value){
+            addLightControlFun(){
                 this.getCompanyNav(3);
                 this.getCompanyNav(4);
                 this.lightControlTitle = 'Add Lamp';
@@ -3348,9 +3331,6 @@
                 this.addLightControlDialog = true;
                 this.$nextTick(function(){
                     this.$refs['lightControlData'].resetFields();
-                    if(value != 0){
-                        this.lightControlData.network_id = value
-                    }
                     this.lightControlData.longitude = this.detailData.longitude;
                     this.lightControlData.latitude = this.detailData.latitude;
                 })