ÏîÄ¿´úÂë/WCS/WIDESEAWCS_Client/src/views/Home.vue
@@ -239,6 +239,13 @@
         </el-row>
         <el-row :gutter="20" type="flex" justify="start" align="top" tag="div" style="margin-bottom: 10px;">
            <el-col :span="24" :offset="0" :push="0" :pull="0" tag="div">
               <el-form-item label="有货状态:">
                  <j-el-description :value="RGV01.InStock" type="primary" ellipsis></j-el-description>
               </el-form-item>
            </el-col>
         </el-row>
         <el-row :gutter="20" type="flex" justify="start" align="top" tag="div" style="margin-bottom: 10px;">
            <el-col :span="24" :offset="0" :push="0" :pull="0" tag="div">
               <el-form-item label="报警信息:">
                  <j-el-description :value="RGV01.Alarm" type="primary" ellipsis></j-el-description>
               </el-form-item>
@@ -415,6 +422,13 @@
         </el-row>
         <el-row :gutter="20" type="flex" justify="start" align="top" tag="div" style="margin-bottom: 10px;">
            <el-col :span="24" :offset="0" :push="0" :pull="0" tag="div">
               <el-form-item label="有货状态:">
                  <j-el-description :value="RGV02.InStock" type="primary" ellipsis></j-el-description>
               </el-form-item>
            </el-col>
         </el-row>
         <el-row :gutter="20" type="flex" justify="start" align="top" tag="div" style="margin-bottom: 10px;">
            <el-col :span="24" :offset="0" :push="0" :pull="0" tag="div">
               <el-form-item label="报警信息:">
                  <j-el-description :value="RGV02.Alarm" type="primary" ellipsis></j-el-description>
               </el-form-item>
@@ -586,6 +600,13 @@
            <el-col :span="12" :offset="0" :push="0" :pull="0" tag="div">
               <el-form-item label="当前水平位置:">
                  <j-el-description :value="RGV03.LevelPoint" type="primary" ellipsis></j-el-description>
               </el-form-item>
            </el-col>
         </el-row>
         <el-row :gutter="20" type="flex" justify="start" align="top" tag="div" style="margin-bottom: 10px;">
            <el-col :span="24" :offset="0" :push="0" :pull="0" tag="div">
               <el-form-item label="有货状态:">
                  <j-el-description :value="RGV03.InStock" type="primary" ellipsis></j-el-description>
               </el-form-item>
            </el-col>
         </el-row>
@@ -1429,6 +1450,7 @@
            DeviceName: "",
            DeviceCOde: "",
            StackerAlarm: "",
            InStock:"",
         },
         RGVFirst: false,
         RGVSecond: false,
@@ -1450,6 +1472,7 @@
            DeviceName: "",
            DeviceCode: "RGV01",
            Alarm:"",
            InStock:"",
         },
         RGV02: {
            Automatic: "",
@@ -1460,6 +1483,7 @@
            DeviceName: "",
            DeviceCode: "RGV02",
            Alarm:"",
            InStock:"",
         },
         RGV03: {
            Automatic: "",
@@ -1470,6 +1494,7 @@
            DeviceName: "",
            DeviceCode: "RGV03",
            Alarm:"",
            InStock:"",
         },
         formRGV: {
            TaskType: "",
@@ -1668,7 +1693,11 @@
            this.StackerCrane.DeviceCode = eventData.data.deviceCode;
            this.StackerCrane.CurrentTaskNum = eventData.data.currentTaskNum;
            this.StackerCrane.StackerAlarm = eventData.data.stackerAlarm;
                if(eventData.data.inStock){
               this.StackerCrane.InStock="有货";
            }else{
               this.StackerCrane.InStock="空闲";
            }
            this.$nextTick(() => {
               this.$refs[componentKey].moveDot(this.StackerCrane);
            });
@@ -1686,6 +1715,12 @@
            this.RGV01.DeviceName = x.data.deviceName;
            this.RGV01.DeviceCode = x.data.deviceCode;
            this.RGV01.Alarm = x.data.alarm;
            if(x.data.inStock){
               this.RGV01.InStock="有货";
            }else{
               this.RGV01.InStock="空闲";
            }
         } else if (x.data.deviceCode == "RGV02") {
            this.RGV02.Automatic = x.data.automatic == null ? "故障" : x.data.automatic;
            this.RGV02.Fault = x.data.fault == null ? "故障" : x.data.fault;
@@ -1694,6 +1729,11 @@
            this.RGV02.DeviceName = x.data.deviceName;
            this.RGV02.CurrentTaskNum = x.data.currentTaskNum;
            this.RGV02.Alarm = x.data.alarm;
            if(x.data.inStock){
               this.RGV02.InStock="有货";
            }else{
               this.RGV02.InStock="空闲";
            }
         } else if (x.data.deviceCode == "RGV03") {
            this.RGV03.Automatic = x.data.automatic == null ? "故障" : x.data.automatic;
            this.RGV03.Fault = x.data.fault == null ? "故障" : x.data.fault;
@@ -1702,6 +1742,11 @@
            this.RGV03.DeviceName = x.data.deviceName;
            this.RGV03.CurrentTaskNum = x.data.currentTaskNum;
            this.RGV03.Alarm = x.data.alarm;
            if(x.data.inStock){
               this.RGV03.InStock="有货";
            }else{
               this.RGV03.InStock="空闲";
            }
         }
      });