From b890d1c574d3d8332def7f4590508a7918139ae0 Mon Sep 17 00:00:00 2001
From: Junjie <540245094@qq.com>
Date: 星期五, 07 十一月 2025 16:57:22 +0800
Subject: [PATCH] #

---
 src/main/java/com/zy/core/thread/impl/ZySiemensCrnThread.java |   26 
 src/main/webapp/static/css/watch/console_vue.css              |  677 +++++++++++++++
 src/main/webapp/views/admin/index.html                        |    2 
 src/main/webapp/views/admin/watch/console.html                |  477 ++++++++++
 src/main/java/com/zy/asrs/entity/BasCrnp.java                 |    2 
 src/main/webapp/views/components/WatchCrnCard.js              |   87 +
 src/main/java/com/zy/asrs/controller/CrnController.java       |  117 ++
 src/main/java/com/zy/asrs/domain/vo/CrnStateTableVo.java      |  110 ++
 src/main/java/com/zy/common/model/enums/HtmlNavIconType.java  |   51 +
 /dev/null                                                     |  578 ------------
 src/main/java/com/zy/common/web/AuthController.java           |    2 
 src/main/webapp/views/admin/watch/crn.html                    |  462 ++++++++++
 src/main/java/com/zy/core/network/ZyCrnConnectThread.java     |    3 
 src/main/webapp/views/index.html                              |    3 
 src/main/webapp/views/admin/watch/test.json                   |    5 
 src/main/java/com/zy/core/network/fake/ZyCrnFakeConnect.java  |   40 
 16 files changed, 2,057 insertions(+), 585 deletions(-)

diff --git a/src/main/java/com/zy/asrs/controller/CrnController.java b/src/main/java/com/zy/asrs/controller/CrnController.java
new file mode 100644
index 0000000..b828dea
--- /dev/null
+++ b/src/main/java/com/zy/asrs/controller/CrnController.java
@@ -0,0 +1,117 @@
+package com.zy.asrs.controller;
+
+import com.baomidou.mybatisplus.mapper.EntityWrapper;
+import com.core.annotations.ManagerAuth;
+import com.core.common.R;
+import com.zy.asrs.domain.vo.CrnStateTableVo;
+import com.zy.asrs.entity.BasCrnp;
+import com.zy.asrs.entity.BasCrnpErr;
+import com.zy.asrs.entity.WrkMast;
+import com.zy.asrs.service.BasCrnpErrService;
+import com.zy.asrs.service.BasCrnpService;
+import com.zy.asrs.service.WrkMastService;
+import com.zy.core.cache.OutputQueue;
+import com.zy.core.cache.SlaveConnection;
+import com.zy.core.enums.CrnModeType;
+import com.zy.core.enums.SlaveType;
+import com.zy.core.model.protocol.CrnProtocol;
+import com.zy.core.thread.CrnThread;
+import lombok.extern.slf4j.Slf4j;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * 鍫嗗灈鏈烘帴鍙�
+ */
+@Slf4j
+@RestController
+@RequestMapping("/crn")
+public class CrnController {
+
+    @Autowired
+    private WrkMastService wrkMastService;
+    @Autowired
+    private BasCrnpErrService basCrnpErrService;
+    @Autowired
+    private BasCrnpService basCrnpService;
+
+    @PostMapping("/table/crn/state")
+    @ManagerAuth(memo = "鍫嗗灈鏈轰俊鎭〃")
+    public R crnStateTable(){
+        List<CrnStateTableVo> list = new ArrayList<>();
+        List<BasCrnp> crnps = basCrnpService.selectList(new EntityWrapper<BasCrnp>().orderBy("crn_no"));
+        for (BasCrnp basCrnp : crnps) {
+            // 琛ㄦ牸琛�
+            CrnStateTableVo vo = new CrnStateTableVo();
+            vo.setCrnNo(basCrnp.getCrnNo());   //  鍫嗗灈鏈哄彿
+            list.add(vo);
+            // 鑾峰彇鍫嗗灈鏈轰俊鎭�
+            CrnThread crnThread = (CrnThread) SlaveConnection.get(SlaveType.Crn, basCrnp.getCrnNo());
+            if (crnThread == null) {
+                continue;
+            }
+            CrnProtocol crnProtocol = crnThread.getStatus();
+            if (crnProtocol == null) {
+                continue;
+            }
+            vo.setWorkNo(crnProtocol.getTaskNo());  //  浠诲姟鍙�
+            vo.setMode(crnProtocol.getModeType().desc);   //  妯″紡鐘舵��
+            vo.setStatus(crnProtocol.getStatusType().desc);     //  鐘舵��
+            vo.setLoading(crnProtocol.getLoaded()==1?"鏈夌墿":"鏃犵墿");  //  鏈夌墿
+            vo.setBay(crnProtocol.getBay());    //  鍒�
+            vo.setLev(crnProtocol.getLevel());  //  灞�
+            vo.setForkOffset(crnProtocol.getForkPosType().desc);    // 璐у弶浣嶇疆
+            vo.setLiftPos(crnProtocol.getLiftPosType().desc);
+            vo.setWalkPos(crnProtocol.getWalkPos()==1?"涓嶅湪瀹氫綅":"鍦ㄥ畾浣�");
+            vo.setXspeed(crnProtocol.getXSpeed());  //  璧拌閫熷害锛坢/min)
+            vo.setYspeed(crnProtocol.getYSpeed());  //  鍗囬檷閫熷害锛坢/min)
+            vo.setZspeed(crnProtocol.getZSpeed());  //  鍙夌墮閫熷害锛坢/min)
+            vo.setXdistance(crnProtocol.getXDistance());  //  璧拌璺濈(Km)
+            vo.setYdistance(crnProtocol.getYDistance());  //  鍗囬檷璺濈(Km)
+            vo.setXduration(crnProtocol.getXDuration());    //  璧拌鏃堕暱(H)
+            vo.setYduration(crnProtocol.getYDuration());    //  鍗囬檷鏃堕暱(H)
+
+            if (crnProtocol.getModeType().equals(CrnModeType.AUTO)) {
+                vo.setDeviceStatus("AUTO");
+            }
+
+            if (crnProtocol.getTaskNo()>0) {
+                WrkMast wrkMast = wrkMastService.selectById(crnProtocol.getTaskNo());
+                if (wrkMast != null) {
+                    vo.setSourceStaNo(String.valueOf(wrkMast.getSourceStaNo()));    //  婧愮珯
+                    vo.setStaNo(String.valueOf(wrkMast.getStaNo()));   //  鐩爣绔�
+                    vo.setSourceLocNo(wrkMast.getSourceLocNo());    //  婧愬簱浣�
+                    vo.setLocNo(wrkMast.getLocNo());    //  鐩爣搴撲綅
+                    vo.setDeviceStatus("WORKING");
+                }
+            }
+
+            vo.setWarnCode(String.valueOf(crnProtocol.getAlarm()));
+            if (crnProtocol.getAlarm() > 0) {
+                BasCrnpErr crnError = basCrnpErrService.selectById(crnProtocol.getAlarm());
+                vo.setAlarm(crnError==null?"鏈煡寮傚父":crnError.getErrName());
+                vo.setDeviceStatus("ERROR");
+            }
+        }
+        return R.ok().add(list);
+    }
+
+    @PostMapping("/output/site")
+    @ManagerAuth(memo = "鍫嗗灈鏈烘姤鏂囨棩蹇楄緭鍑�")
+    public R crnOutput(){
+        StringBuilder str = new StringBuilder();
+        String s;
+        int i = 0;
+        while((s = OutputQueue.CRN.poll()) != null && i <=10) {
+            str.append("\n").append(s);
+            i++;
+        }
+        return R.ok().add(str.toString());
+    }
+
+}
diff --git a/src/main/java/com/zy/asrs/domain/vo/CrnStateTableVo.java b/src/main/java/com/zy/asrs/domain/vo/CrnStateTableVo.java
new file mode 100644
index 0000000..a114d39
--- /dev/null
+++ b/src/main/java/com/zy/asrs/domain/vo/CrnStateTableVo.java
@@ -0,0 +1,110 @@
+package com.zy.asrs.domain.vo;
+
+import lombok.Data;
+
+/**
+ * Created by vincent on 2020-06-02
+ */
+@Data
+public class CrnStateTableVo {
+
+    // 鍫嗗灈鏈哄彿
+    private Integer crnNo;
+
+    // 妯″紡
+    private String mode = "-";
+
+    // 鏈夌墿
+    private String loading = "-";
+
+    // 鍒�
+    private Integer bay;
+
+    // 灞�
+    private Integer lev;
+
+    // 璧拌鍘熺偣
+    private String xOrigin = "-";
+
+    // 鍗囬檷鍘熺偣
+    private String yOrigin = "-";
+
+    // 璐у弶浣嶇疆
+    private String forkOffset = "-";
+
+    // 杞借揣鍙颁綅缃�
+    private String liftPos = "-";
+
+    // 璧拌瀹氫綅
+    private String walkPos = "-";
+
+    // 鎬ュ仠
+    private String stop = "-";
+
+    // 鍒楀潗鏍�
+    private String bayCoor = "-";
+
+    // 灞傚潗鏍�
+    private String levCoor = "-";
+
+    // 瀹屾垚
+    private String complete = "-";
+
+    // 浠诲姟鍙�
+    private Integer workNo = 0;
+
+    // 鐘舵��
+    private String status = "-";
+
+    // 寮傚父鐮�
+    private String warnCode = "-";
+
+    // 寮傚父鎻忚堪
+    private String alarm = "-";
+
+    // 婧愮珯
+    private String sourceStaNo = "-";
+
+    // 鐩爣绔�
+    private String staNo = "-";
+
+    // 婧愬簱浣�
+    private String sourceLocNo = "-";
+
+    // 鐩爣搴撲綅
+    private String locNo = "-";
+
+    // 寮傚父
+    private String error = "";
+
+    // 鍘熺偣
+    private String origin = "";
+
+    // 鍛戒护
+    private String command = "";
+
+    // 璧拌閫熷害锛坢/min)
+    private Integer xspeed = 0;
+
+    // 鍗囬檷閫熷害锛坢/min)
+    private Integer yspeed = 0;
+
+    // 鍙夌墮閫熷害锛坢/min)
+    private Integer zspeed = 0;
+
+    // 璧拌璺濈(Km)
+    private Integer xdistance = 0;
+
+    // 鍗囬檷璺濈(Km)
+    private Integer ydistance = 0;
+
+    // 璧拌鏃堕暱(H)
+    private Integer xduration = 0;
+
+    // 鍗囬檷鏃堕暱(H)
+    private Integer yduration = 0;
+
+    // 璁惧鐘舵��-鐢ㄤ簬鍓嶇鏄剧ず
+    private String deviceStatus = "OFFLINE";
+
+}
diff --git a/src/main/java/com/zy/asrs/entity/BasCrnp.java b/src/main/java/com/zy/asrs/entity/BasCrnp.java
index 67501b6..b9a2efe 100644
--- a/src/main/java/com/zy/asrs/entity/BasCrnp.java
+++ b/src/main/java/com/zy/asrs/entity/BasCrnp.java
@@ -24,7 +24,7 @@
      * 缂栧彿
      */
     @ApiModelProperty(value= "缂栧彿")
-    @TableId(value = "crn_no", type = IdType.AUTO)
+    @TableId(value = "crn_no", type = IdType.INPUT)
     @TableField("crn_no")
     private Integer crnNo;
 
diff --git a/src/main/java/com/zy/common/model/enums/HtmlNavIconType.java b/src/main/java/com/zy/common/model/enums/HtmlNavIconType.java
new file mode 100644
index 0000000..77c4569
--- /dev/null
+++ b/src/main/java/com/zy/common/model/enums/HtmlNavIconType.java
@@ -0,0 +1,51 @@
+package com.zy.common.model.enums;
+
+public enum HtmlNavIconType {
+
+    INDEX("index", "layui-icon-home"),
+    SYSTEM("system", "layui-icon-component"),
+    SET("set", "layui-icon-set"),
+    MERCHANT("merchant", "layui-icon-user"),
+    DEVELOP("develop", "layui-icon-util"),
+    STOCK("stock", "layui-icon-templeate-1"),
+    LOG_REPORT("logReport", "layui-icon-read"),
+    IO_WORK("ioWork", "layui-icon-flag"),
+    WORK_FLOW("workFlow", "layui-icon-form"),
+    BASE("base", "layui-icon-file"),
+    ORDER("erp", "layui-icon-senior"),
+    SENSOR("sensor", "layui-icon-engine"),
+    ;
+
+
+    private String code;
+    private String icon;
+    HtmlNavIconType(String code, String icon){
+        this.code = code;
+        this.icon = icon;
+    }
+
+    public static String get(String code) {
+        for (HtmlNavIconType type : HtmlNavIconType.values()){
+            if (type.code.equals(code)){
+                return type.icon;
+            }
+        }
+        return "layui-icon-file-b";
+    }
+
+    public String getCode() {
+        return code;
+    }
+
+    public void setCode(String code) {
+        this.code = code;
+    }
+
+    public String getIcon() {
+        return icon;
+    }
+
+    public void setIcon(String icon) {
+        this.icon = icon;
+    }
+}
diff --git a/src/main/java/com/zy/common/web/AuthController.java b/src/main/java/com/zy/common/web/AuthController.java
index 7872563..3501652 100644
--- a/src/main/java/com/zy/common/web/AuthController.java
+++ b/src/main/java/com/zy/common/web/AuthController.java
@@ -10,6 +10,7 @@
 import com.zy.common.CodeRes;
 import com.zy.common.entity.Parameter;
 import com.zy.common.model.PowerDto;
+import com.zy.common.model.enums.HtmlNavIconType;
 import com.zy.common.utils.RandomValidateCodeUtil;
 import com.zy.system.entity.*;
 import com.zy.system.service.*;
@@ -166,6 +167,7 @@
             }
             map.put("menuId", menu.getId());
             map.put("menuCode", menu.getCode());
+            map.put("menuIcon", HtmlNavIconType.get(menu.getCode()));
             map.put("menu", menu.getName());
             map.put("subMenu", subMenu);
             result.add(map);
diff --git a/src/main/java/com/zy/core/network/ZyCrnConnectThread.java b/src/main/java/com/zy/core/network/ZyCrnConnectThread.java
index 5df657b..985f96f 100644
--- a/src/main/java/com/zy/core/network/ZyCrnConnectThread.java
+++ b/src/main/java/com/zy/core/network/ZyCrnConnectThread.java
@@ -7,6 +7,7 @@
 import com.zy.core.model.command.CrnCommand;
 import com.zy.core.network.api.ZyCrnConnectApi;
 import com.zy.core.network.entity.ZyCrnStatusEntity;
+import com.zy.core.network.fake.ZyCrnFakeConnect;
 import com.zy.core.network.real.ZyCrnRealConnect;
 import lombok.extern.slf4j.Slf4j;
 
@@ -44,6 +45,8 @@
     public boolean connect() {
         if (deviceConfig.getFake() == 0) {
             zyCrnConnectApi = new ZyCrnRealConnect(siemensNet, deviceConfig);
+        }else {
+            zyCrnConnectApi = new ZyCrnFakeConnect(deviceConfig);
         }
 
         boolean connect = zyCrnConnectApi.connect();
diff --git a/src/main/java/com/zy/core/network/fake/ZyCrnFakeConnect.java b/src/main/java/com/zy/core/network/fake/ZyCrnFakeConnect.java
new file mode 100644
index 0000000..f68bdb1
--- /dev/null
+++ b/src/main/java/com/zy/core/network/fake/ZyCrnFakeConnect.java
@@ -0,0 +1,40 @@
+package com.zy.core.network.fake;
+
+import com.alibaba.fastjson.JSON;
+import com.zy.asrs.entity.DeviceConfig;
+import com.zy.core.model.CommandResponse;
+import com.zy.core.model.command.CrnCommand;
+import com.zy.core.network.api.ZyCrnConnectApi;
+import com.zy.core.network.entity.ZyCrnStatusEntity;
+
+public class ZyCrnFakeConnect implements ZyCrnConnectApi {
+
+    private ZyCrnStatusEntity crnStatus;
+    private DeviceConfig deviceConfig;
+
+    public ZyCrnFakeConnect(DeviceConfig deviceConfig) {
+        this.deviceConfig = deviceConfig;
+        this.crnStatus = JSON.parseObject(deviceConfig.getFakeInitStatus(), ZyCrnStatusEntity.class);
+    }
+
+    @Override
+    public boolean connect() {
+        return true;
+    }
+
+    @Override
+    public boolean disconnect() {
+        return true;
+    }
+
+    @Override
+    public ZyCrnStatusEntity getStatus() {
+        return this.crnStatus;
+    }
+
+    @Override
+    public CommandResponse sendCommand(CrnCommand command) {
+        CommandResponse response = new CommandResponse(false);
+        return response;
+    }
+}
diff --git a/src/main/java/com/zy/core/thread/impl/ZySiemensCrnThread.java b/src/main/java/com/zy/core/thread/impl/ZySiemensCrnThread.java
index b2ec61c..94e2d8f 100644
--- a/src/main/java/com/zy/core/thread/impl/ZySiemensCrnThread.java
+++ b/src/main/java/com/zy/core/thread/impl/ZySiemensCrnThread.java
@@ -3,10 +3,13 @@
 import HslCommunication.Profinet.Siemens.SiemensPLCS;
 import HslCommunication.Profinet.Siemens.SiemensS7Net;
 import com.alibaba.fastjson.JSON;
+import com.baomidou.mybatisplus.mapper.EntityWrapper;
 import com.core.common.DateUtils;
 import com.core.common.SpringUtils;
+import com.zy.asrs.entity.BasCrnp;
 import com.zy.asrs.entity.DeviceConfig;
 import com.zy.asrs.entity.DeviceDataLog;
+import com.zy.asrs.service.BasCrnpService;
 import com.zy.asrs.service.DeviceDataLogService;
 import com.zy.asrs.utils.Utils;
 import com.zy.common.utils.RedisUtil;
@@ -66,12 +69,15 @@
                     case 1:
                         readStatus();
                         break;
+                    case 2:
+                        sendCommand((CrnCommand) task.getData());
+                        break;
                     default:
                         break;
                 }
                 Thread.sleep(200);
             } catch (Exception e) {
-//                e.printStackTrace();
+                e.printStackTrace();
             }
         }
     }
@@ -106,9 +112,9 @@
     @Override
     public boolean connect() {
         SiemensS7Net siemensS7Net = new SiemensS7Net(SiemensPLCS.S1200, deviceConfig.getIp());
-        ThreadHandler thread = new ZyCrnConnectThread(siemensS7Net, deviceConfig);
-        new Thread(thread).start();
-        DeviceConnectPool.put(SlaveType.Crn, deviceConfig.getDeviceNo(), thread);
+        zyCrnConnectThread = new ZyCrnConnectThread(siemensS7Net, deviceConfig);
+        new Thread(zyCrnConnectThread).start();
+        DeviceConnectPool.put(SlaveType.Crn, deviceConfig.getDeviceNo(), zyCrnConnectThread);
         return true;
     }
 
@@ -184,6 +190,18 @@
             //鏇存柊閲囬泦鏃堕棿
             crnProtocol.setDeviceDataLog(System.currentTimeMillis());
         }
+
+        BasCrnpService basCrnpService = SpringUtils.getBean(BasCrnpService.class);
+        if (basCrnpService != null) {
+            BasCrnp basCrnp = basCrnpService.selectOne(new EntityWrapper<BasCrnp>().eq("crn_no", deviceConfig.getDeviceNo()));
+            if(basCrnp == null) {
+                basCrnp = new BasCrnp();
+                basCrnp.setCrnNo(deviceConfig.getDeviceNo());
+                basCrnp.setStatus(1);
+                basCrnp.setCreateTime(new Date());
+                basCrnpService.insert(basCrnp);
+            }
+        }
     }
 
     @Override
diff --git a/src/main/webapp/static/css/watch/console_vue.css b/src/main/webapp/static/css/watch/console_vue.css
new file mode 100644
index 0000000..4c17594
--- /dev/null
+++ b/src/main/webapp/static/css/watch/console_vue.css
@@ -0,0 +1,677 @@
+body {
+	margin: 0;
+	padding: 0;
+	background-color: #f0f0f0;
+}
+
+.pointContainer {
+	display: flex;
+	justify-content: center;
+}
+
+.item {
+	width: 35px;
+	height: 35px;
+	border-right: none;
+	cursor: default;
+	color: rgb(194, 76, 65);
+	display: flex;
+	justify-content: center;
+	align-items: center;
+	user-select: none;
+	background: #f0f0f0;
+}
+
+.shelf {
+	height: 35px;
+	border-right: none;
+	cursor: default;
+	color: rgb(194, 76, 65);
+	display: flex;
+	justify-content: center;
+	align-items: center;
+	user-select: none;
+	background: #fff;
+}
+
+.track-item {
+	width: 100%;
+	height: 35px;
+	border-right: none;
+	cursor: default;
+	color: rgb(194, 76, 65);
+	display: flex;
+	justify-content: center;
+	align-items: center;
+	user-select: none;
+	background: #f5d88f;;
+	padding: 0;
+	margin: 0;
+	position: relative;
+	z-index: 1;
+}
+
+/* 绔欑偣 */
+.site {
+	color: #333;
+	height: 100%;
+	cursor: pointer;
+	text-align: center;
+	background-color: rgb(120, 255, 129);
+	font-size: 13px;
+	display: flex;
+	justify-content: center;
+	align-items: center;
+	user-select: none;
+}
+
+.crn-item {
+	color: #333;
+	height: 35px;
+	cursor: pointer;
+	text-align: center;
+	background-color: rgb(120, 255, 129);
+	font-size: 13px;
+	display: flex;
+	justify-content: center;
+	align-items: center;
+	user-select: none;
+	margin: 1px;
+	position: absolute;
+	z-index: 2;
+}
+
+/* rgv */
+.rgv-item {
+	color: #333;
+	height: 35px;
+	cursor: pointer;
+	text-align: center;
+	background-color: rgb(120, 255, 129);
+	font-size: 13px;
+	display: flex;
+	justify-content: center;
+	align-items: center;
+	user-select: none;
+	padding: 0;
+	margin: 0;
+	position: absolute;
+	z-index: 2;
+}
+
+/*绌虹珯鐐�*/
+.site-k {
+	/*border: 1px solid rgb(108, 167, 168);*/
+	background-color: rgb(108, 167, 168);
+}
+
+/* 鍏ュ簱 */
+.machine-pakin {
+	background-color: rgb(163, 214, 242);
+}
+
+/* 鍑哄簱 */
+.machine-pakout {
+	background-color: rgb(151, 180, 0);
+}
+
+/* 搴撳埌搴� */
+.machine-stock-move {
+	background-color: rgb(58, 77, 249);
+}
+
+/* 绔欏埌绔� */
+.machine-site-move {
+	background-color: rgb(240, 140, 10);
+}
+
+/* PToP */
+.machine-p-move {
+	background-color: rgb(29, 152, 23);
+}
+
+/* 寮傚父 */
+.machine-error {
+	background-color: rgb(252, 48, 48);
+}
+
+/* 鑷姩 */
+.machine-auto {
+	background-color: rgb(132, 255, 115);
+}
+
+/* 闈炶嚜鍔�/鎵嬪姩 */
+.machine-un-auto {
+	background-color: rgb(184, 184, 184);
+}
+
+.machine-working {
+	background-color: rgb(255, 214, 11);
+}
+
+/* 鍏ュ簱 */
+.machine-put-flag {
+	padding: 0 10px;
+	background-color: rgb(163, 214, 242);
+}
+
+/* 鍑哄簱 */
+.machine-take-flag {
+	padding: 0 10px;
+	background-color: rgb(151, 180, 0);
+}
+
+/* 搴撳埌搴� */
+.machine-stock-move-flag {
+	padding: 0 10px;
+	background-color: rgb(58, 77, 249);
+}
+
+/* 绔欏埌绔� */
+.machine-site-move-flag {
+	padding: 0 10px;
+	background-color: rgb(240, 140, 10);
+}
+
+/* PToP */
+.machine-p-move-flag {
+	padding: 0 10px;
+	background-color: rgb(29, 152, 23);
+}
+
+/* 寮傚父 */
+.machine-error-flag {
+	padding: 0 10px;
+	background-color: rgb(252, 48, 48);
+}
+
+/* 鑷姩 */
+.machine-auto-flag {
+	padding: 0 10px;
+	background-color: rgb(132, 255, 115);
+}
+
+/* 闈炶嚜鍔�/鎵嬪姩 */
+.machine-unauto-flag {
+	padding: 0 10px;
+	background-color: rgb(184, 184, 184);
+}
+
+/* 鑷姩+鏈夌墿+ID */
+.site-auto-run-id {
+	background-color: rgb(252, 48, 48);
+}
+
+/* 鑷姩+鏈夌墿 */
+.site-auto-run {
+	background-color: rgb(250, 81, 246);
+}
+
+/* 鑷姩+ID */
+.site-auto-id {
+	background-color: rgb(196, 196, 0);
+}
+
+/* 鑷姩 */
+.site-auto {
+	background-color: rgb(120, 255, 129);
+}
+
+/* 闈炶嚜鍔�/鎵嬪姩 */
+.site-unauto {
+	background-color: rgb(184, 184, 184);
+}
+
+/*绌洪棽*/
+.shuttle-idle {
+	background-color: rgb(120, 255, 129);
+}
+
+/*浣滀笟涓�*/
+.shuttle-working {
+	background-color: rgb(196, 196, 0);
+}
+
+/*绛夊緟纭*/
+.shuttle-waiting {
+	background-color: rgb(184, 184, 184);
+}
+
+/*鍏呯數涓�*/
+.shuttle-charging {
+	background-color: rgb(250, 81, 246);
+}
+
+/*鍏呯數浠诲姟绛夊緟纭*/
+.shuttle-charging-waiting {
+	background-color: rgb(58, 77, 249);
+}
+
+/*鏁呴殰淇涓�*/
+.shuttle-fixing {
+	background-color: rgb(252, 48, 48);
+}
+
+/*绂荤嚎*/
+.shuttle-offline {
+	background-color: rgb(0, 0, 0);
+}
+
+/*绌洪棽*/
+.lift-idle {
+	background-color: rgb(120, 255, 129);
+}
+
+/*浣滀笟涓�*/
+.lift-working {
+	background-color: rgb(196, 196, 0);
+}
+
+/*绛夊緟纭*/
+.lift-waiting {
+	background-color: rgb(184, 184, 184);
+}
+
+/*绂荤嚎*/
+.lift-offline {
+	background-color: rgb(0, 0, 0);
+}
+
+/* 鍫嗗灈鏈哄脊绐� */
+#crnWindow {
+	width: 291px;
+	height: 365px;
+	background-image: url(../../images/Popup-yellow.png);
+	position: fixed;
+	color:white;
+	left: 50%;
+	top: 50%;
+	transform: translate(-50%,-50%);
+	z-index: 101;
+}
+
+/* 杈撻�佽澶囧脊绐� */
+#siteWindow {
+	width: 300px;
+	height: 340px;
+	position: fixed;
+	left: 50%;
+	top: 50%;
+	transform: translate(-50%, -50%);
+	border-radius: 20px 20px 0 0;
+	overflow: hidden;
+}
+
+/* RGV寮圭獥 */
+#rgvWindow {
+	width: 291px;
+	height: 365px;
+	background-image: url(../../images/Popup-yellow.png);
+	position: fixed;
+	color:white;
+	left: 50%;
+	top: 50%;
+	transform: translate(-50%,-50%);
+	z-index: 101;
+}
+
+#siteWindow-head {
+	width: 300px;
+	height: 55px;
+	background: #73fe7a;
+	font-weight: 700;
+	display: flex;
+	justify-content: space-between;
+	align-items: center;
+}
+
+#siteWindow-head .detailed {
+	display: inline-block;
+	background: none;
+	color: #00000;
+	margin-left: 20px;
+}
+
+#siteWindow-head button {
+	width: 25px;
+	height: 25px;
+	padding: 0px;
+	border: none;
+	border-radius: 25px;
+	background-image: url(../../images/siteclose.png);
+	display: inline-block;
+	float: right;
+	margin-right: 20px;
+}
+
+#crnWindow-head {
+	width: 291px;
+	height: 55px;
+	line-height: 55px;
+	margin-left: 55px;
+	color: #000000;
+	font-weight: 700;
+	letter-spacing: 2px;
+
+}
+#crnWindow-head .detailed {
+	display: inline-block;
+}
+#crnWindow-head button {
+	width: 25px;
+	height: 25px;
+	padding: 0px;
+	border: none;
+	border-radius: 25px;
+	background-image: url(../../images/siteclose.png);
+	display: inline-block;
+	float: right;
+	margin-top: 15px;
+	margin-right: 80px;
+}
+
+#rgvWindow-head {
+	width: 291px;
+	height: 55px;
+	line-height: 55px;
+	margin-left: 55px;
+	color: #000000;
+	font-weight: 700;
+	letter-spacing: 2px;
+
+}
+#rgvWindow-head .detailed {
+	display: inline-block;
+}
+#rgvWindow-head button {
+	width: 25px;
+	height: 25px;
+	padding: 0px;
+	border: none;
+	border-radius: 25px;
+	background-image: url(../../images/siteclose.png);
+	display: inline-block;
+	float: right;
+	margin-top: 15px;
+	margin-right: 80px;
+}
+
+.siteWindow-body {
+	height: 285px;
+	padding: 6px;
+	background: rgba(0, 0, 0, .6);
+}
+
+#siteWindow .form-item,
+#siteWindow .form-item-checkbox {
+	display: flex;
+	justify-content: space-between;
+	margin-top: 5px;
+}
+
+#siteWindow .form-item-label span,
+#siteWindow .form-item-label-checkbox span {
+	color: #fff;
+}
+
+#siteWindow form .form-item-input input {
+	background-color: rgba(255, 255, 255, .3);
+	color: #FFFFFF;
+	padding: 0;
+	border: none;
+	border-radius: 2px;
+	height: 18px;
+	padding-left: 10px;
+}
+
+.floorBtnBox {
+	margin-bottom: 10px;
+}
+
+.floorBtnBox button {
+	width: 110px;
+	height: 40px;
+}
+
+.footer {
+	width: 100%;
+	height: 23%;
+	position: absolute;
+	bottom: 3.2%;
+}
+
+.line-status {
+	float: left;
+	width: 15%;
+	height: 100%;
+	background-color: rgba(0, 0, 0, 0.3);
+	border-radius: 15px;
+	margin-left: 1%;
+}
+
+/* 鎺у埗琛ㄥご */
+.body-head {
+	height: 35px;
+	width: 100%;
+	background-image: url(../../images/status_bar_1.png);
+	background-repeat: no-repeat;
+	margin-left: 5%;
+	margin-top: 20px;
+	text-indent: 25px;
+	color: white;
+}
+
+/* 鏉$爜鎵弿鍣� */
+.bar-code {
+	display: inline-block;
+	float: left;
+	position: fixed;
+	width: 34%;
+	height: 23%;
+	background-color: rgba(0, 0, 0, 0.3);
+	border-radius: 15px;
+	margin-left: 1%;
+	overflow: hidden;
+}
+
+.switch_r {
+	color: #FFFFFF;
+	font-size: 14px;
+	width: 130px;
+	height: 153px;
+	float: right;
+	padding-top: 30px;
+}
+
+#system-run-desc {
+	font-size: 20px;
+	margin-top: 15px;
+}
+
+.allStatus {
+	margin-left: 5%;
+	font-size: 14px;
+	color: #FFFFFF;
+}
+
+.state {
+	height: 34px;
+	width: 200px;
+	background-color: rgba(255, 255, 255, 0.1);
+	background-image: url(../../images/stacker.png);
+	background-repeat: no-repeat;
+	border-radius: 17px 0 0 17px;
+	padding-left: 50px;
+	line-height: 34px;
+	margin-bottom: 10px;
+	margin-left: 5%;
+	color: #FFFFFF;
+	font-size: 10px;
+}
+
+.states {
+	background-image: url(../../images/line.png);
+	/*margin-bottom:54px;*/
+}
+
+.line-ss {
+	display: inline-block;
+	float: right;
+	height: 15px;
+	width: 40px;
+	margin-top: 10px;
+	margin-right: 15px;
+	line-height: 15px;
+	text-align: center;
+	background-color: rgba(5, 5, 5, 0.3);
+	color: #ffdd00;
+}
+
+/*鎵爜琛ㄥ崟*/
+.tablebox {
+	display: inline-block;
+	width: 290px;
+	height: 162px;
+	margin-left: 1.5%;
+	color: white;
+	font-size: 14px;
+	list-style: none;
+	line-height: 27px;
+	text-indent: 10px;
+	overflow: hidden;
+}
+
+.table-head {
+	width: 100%;
+	height: 27px;
+	background: linear-gradient(to right, rgb(94, 193, 184), rgb(12, 71, 63));
+}
+
+#code {
+	background-image: url(../../images/status_bar_2.png);
+	background-repeat: no-repeat;
+	margin-left: 2%;
+}
+
+.table-body li {
+	background-color: #5D7677;
+}
+
+.table-body li:nth-child(even) {
+	background-color: #4A6565;
+}
+
+.state-ss {
+	margin-left: 60px;
+}
+
+.shuttle-status-box {
+	height: 100px;
+	overflow-y: scroll;
+	overflow-x: hidden;
+}
+
+.lift-status-box {
+	height: 120px;
+	overflow-y: scroll;
+	overflow-x: hidden;
+}
+
+.right {
+	float: right;
+	text-indent: 10px;
+	padding-right: 10px;
+}
+
+/*=============== SCROLL BAR ===============*/
+::-webkit-scrollbar {
+	width: .6rem;
+	border-radius: .5rem;
+	background-color: hsl(228, 8%, 76%);
+}
+
+::-webkit-scrollbar-thumb {
+	background-color: hsl(228, 8%, 64%);
+	border-radius: .5rem;
+}
+
+::-webkit-scrollbar-thumb:hover {
+	background-color: hsl(228, 8%, 54%);
+}
+
+.sxcar {
+	width: 35px;
+	height: 35px;
+	background-image: url(../../images/sxcar.png);
+	background-size: 100% 100%;
+	position: absolute;
+	top: 0;
+	left: 0;
+	display: flex;
+	justify-content: center;
+	align-items: center;
+	text-shadow: 2px 2px 4px #000000;
+	font-size: 18px;
+	user-select: none;
+
+	/* 鍏抽敭淇敼閮ㄥ垎 */
+	transform: translate(var(--x-pos), var(--y-pos));
+	transition: transform 0.5s ease-in-out;
+}
+
+/* 寮圭獥 */
+form .form-item {
+	display: inline-block;
+	padding-left: 10px;
+}
+form .form-item-label {
+	display: inline-block;
+	width: 90px;
+	font-size: 10px;
+}
+form .form-item-input {
+	display: inline-block;
+	width: 180px;
+
+}
+form .form-item-input input {
+	background-color: rgba(255,255,255,.3);
+	color: #FFFFFF;
+	padding: 0;
+	border: none;
+	border-radius: 2px;
+	height: 18px;
+	padding-left: 10px;
+}
+/* checkbox */
+form .form-item-checkbox {
+	display: inline-block;
+	padding-left: 10px;
+	width: 20%;
+}
+form .form-item-label-checkbox {
+	display: inline-block;
+	width: auto;
+	font-size: 14px;
+}
+form .form-item-input-checkbox {
+	display: inline-block;
+	width: auto;
+}
+
+.excel-table {
+	border-collapse: collapse;
+	width: 100%;
+	padding: 0;
+	margin: 0;
+}
+
+.excel-table td {
+	padding: 0;
+	margin: 0;
+	text-align: center;
+}
+
+.excel-table .merged {
+	display: none;
+}
diff --git a/src/main/webapp/static/readStatus.json b/src/main/webapp/static/readStatus.json
deleted file mode 100644
index ba73f7b..0000000
--- a/src/main/webapp/static/readStatus.json
+++ /dev/null
@@ -1,58 +0,0 @@
-{
-	"msgType": "responseMsg",
-	"robotId": 50001,
-	"response": {
-		"header": {
-			"responseId": 1234,
-			"version": "1.0"
-		},
-		"body": {
-			"responseType": "state",
-			"workingMode": 1,
-			"free": 1,
-			"speed": 1000,
-			"loadState": 1,
-			"suspendState": 0,
-			"liftPosition": 1,
-			"runDir": 1,
-			"runDir2": 1,
-			"chargState": 0,
-			"powerPercent": 0,
-			"maxCellVoltage": 4165,
-			"minCellVoltage": 4147,
-			"voltage": 5405,
-			"chargeCycleTimes": 0,
-			"surplusQuantity": 450,
-			"countQuantity": 500,
-			"point": {
-				"x": 13,
-				"y": 11,
-				"z": 1
-			},
-			"coord": {
-				"x": 13000,
-				"y": 11000,
-				"z": 1
-			},
-			"task": {
-				"x": 1,
-				"y": 2,
-				"z": 1,
-				"taskState": 0,
-				"taskId": 0,
-				"lastTaskId": 0,
-				"recentTaskId": 0
-			},
-			"errState": 0,
-			"errCode": [0, 0, 0, 0, 0],
-			"statusSum": {
-				"mileage": 0,
-				"liftNumber": 0,
-				"dropNumber": 0,
-				"reversingX": 0,
-				"reversingY": 0
-			},
-			"errTime": 68391
-		}
-	}
-}
diff --git a/src/main/webapp/static/testMoveData.json b/src/main/webapp/static/testMoveData.json
deleted file mode 100644
index bb98fa1..0000000
--- a/src/main/webapp/static/testMoveData.json
+++ /dev/null
@@ -1,578 +0,0 @@
-[
-  {
-    "x": 1,
-    "y": 59,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "bottom",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 0,
-    "h": 0,
-    "g": 0
-  },
-  {
-    "x": 2,
-    "y": 59,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "bottom",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 48,
-    "h": 48,
-    "g": 0
-  },
-  {
-    "x": 3,
-    "y": 59,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "bottom",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 47,
-    "h": 47,
-    "g": 0
-  },
-  {
-    "x": 4,
-    "y": 59,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "bottom",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 46,
-    "h": 46,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 59,
-    "z": 1,
-    "isInflectionPoint": true,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 45,
-    "h": 45,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 58,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 46,
-    "h": 44,
-    "g": 2
-  },
-  {
-    "x": 5,
-    "y": 57,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 43,
-    "h": 43,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 56,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 42,
-    "h": 42,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 55,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 41,
-    "h": 41,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 54,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 40,
-    "h": 40,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 53,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 39,
-    "h": 39,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 52,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 38,
-    "h": 38,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 51,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 37,
-    "h": 37,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 50,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 36,
-    "h": 36,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 49,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 35,
-    "h": 35,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 48,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 34,
-    "h": 34,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 47,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 33,
-    "h": 33,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 46,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 32,
-    "h": 32,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 45,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 31,
-    "h": 31,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 44,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 30,
-    "h": 30,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 43,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 29,
-    "h": 29,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 42,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 28,
-    "h": 28,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 41,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 27,
-    "h": 27,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 40,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 26,
-    "h": 26,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 39,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 25,
-    "h": 25,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 38,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 24,
-    "h": 24,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 37,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 23,
-    "h": 23,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 36,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 22,
-    "h": 22,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 35,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 21,
-    "h": 21,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 34,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 20,
-    "h": 20,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 33,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 19,
-    "h": 19,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 32,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 18,
-    "h": 18,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 31,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 17,
-    "h": 17,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 30,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 16,
-    "h": 16,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 29,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 15,
-    "h": 15,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 28,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 14,
-    "h": 14,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 27,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 13,
-    "h": 13,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 26,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 12,
-    "h": 12,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 25,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 11,
-    "h": 11,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 24,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 10,
-    "h": 10,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 23,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 9,
-    "h": 9,
-    "g": 0
-  },
-  {
-    "x": 5,
-    "y": 22,
-    "z": 1,
-    "isInflectionPoint": false,
-    "direction": "left",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 8,
-    "h": 8,
-    "g": 0
-  },
-  {
-    "x": 6,
-    "y": 22,
-    "z": 1,
-    "isInflectionPoint": true,
-    "direction": "bottom",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 7,
-    "h": 7,
-    "g": 0
-  },
-  {
-    "x": 7,
-    "y": 22,
-    "z": 1,
-    "isInflectionPoint": true,
-    "direction": "bottom",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 7,
-    "h": 7,
-    "g": 0
-  },
-  {
-    "x": 8,
-    "y": 22,
-    "z": 1,
-    "isInflectionPoint": true,
-    "direction": "bottom",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 7,
-    "h": 7,
-    "g": 0
-  },
-  {
-    "x": 9,
-    "y": 22,
-    "z": 1,
-    "isInflectionPoint": true,
-    "direction": "bottom",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 7,
-    "h": 7,
-    "g": 0
-  },
-  {
-    "x": 9,
-    "y": 21,
-    "z": 1,
-    "isInflectionPoint": true,
-    "direction": "bottom",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 7,
-    "h": 7,
-    "g": 0
-  },
-  {
-    "x": 8,
-    "y": 21,
-    "z": 1,
-    "isInflectionPoint": true,
-    "direction": "bottom",
-    "moveDistance": 1000,
-    "father": null,
-    "f": 7,
-    "h": 7,
-    "g": 0
-  }
-]
\ No newline at end of file
diff --git a/src/main/webapp/views/admin/index.html b/src/main/webapp/views/admin/index.html
index e9d4c80..f10017b 100644
--- a/src/main/webapp/views/admin/index.html
+++ b/src/main/webapp/views/admin/index.html
@@ -161,7 +161,7 @@
 
     // 榛樿鍔犺浇涓婚〉
     index.loadHome({
-      menuPath: baseUrl+'/views/admin/wrkMast/wrkMast.html',
+      menuPath: baseUrl+'/views/admin/watch/console.html',
       menuName: '<i class="layui-icon layui-icon-home"></i>'
     });
 
diff --git a/src/main/webapp/views/admin/watch/console.html b/src/main/webapp/views/admin/watch/console.html
new file mode 100644
index 0000000..504652d
--- /dev/null
+++ b/src/main/webapp/views/admin/watch/console.html
@@ -0,0 +1,477 @@
+<!DOCTYPE html>
+<html lang="en">
+	<head>
+		<meta charset="UTF-8">
+		<title>WCS鎺у埗涓績</title>
+		<link rel="stylesheet" href="../../../static/css/animate.min.css">
+		<link rel="stylesheet" href="../../../static/vue/element/element.css">
+		<link rel="stylesheet" href="../../../static/css/watch/console_vue.css">
+		<script type="text/javascript" src="../../../static/js/jquery/jquery-3.3.1.min.js"></script>
+		<script type="text/javascript" src="../../../static/layui/layui.js"></script>
+		<script type="text/javascript" src="../../../static/js/handlebars/handlebars-v4.5.3.js"></script>
+		<script type="text/javascript" src="../../../static/js/common.js"></script>
+		<script type="text/javascript" src="../../../static/vue/js/vue.min.js"></script>
+		<script type="text/javascript" src="../../../static/vue/element/element.js"></script>
+	</head>
+	<body>
+		<div id="app">
+			<div style="display: flex;margin-top: 30px;margin-left: 20px;">
+				<div style="width: 20%;height: 60vh;margin-right: 20px;">
+					<el-tabs type="border-card" v-model="activateCard" @tab-click="handleCardClick">
+						<el-tab-pane label="鍫嗗灈鏈�" name="crn">
+							<watch-crn-card :param="crnParam"></watch-crn-card>
+						</el-tab-pane>
+						<el-tab-pane label="杈撻�佺嚎" name="devp">杈撻�佺嚎</el-tab-pane>
+						<el-tab-pane label="RGV" name="rgv">RGV</el-tab-pane>
+						<el-tab-pane label="鍦板浘閰嶇疆" name="mapSetting">鍦板浘閰嶇疆</el-tab-pane>
+					</el-tabs>
+				</div>
+				<div id="mapDataId" style="zoom: 0.6;position: relative;">
+					<table class="excel-table">
+						<tr v-for="(row,index) in map" :key="index">
+							<td
+									v-for="(col,idx) in row" :key="idx"
+									:rowspan="col.rowSpan"
+									:colspan="col.colSpan"
+									:style="{width: col.width}"
+									v-if="col.type != 'merge'"
+							>
+								<div v-if="col.type == 'none'">
+									<div class="item" style="visibility: hidden">{{idx}}</div>
+								</div>
+								<div v-else-if="col.type == 'shelf'">
+									<div class="shelf">{{col.shelfIdx}}</div>
+								</div>
+								<div v-else-if="col.type == 'devp'">
+									<div class="site" :style="{height: col.rowPx}" :id="'site-' + col.value" @click="openSite(col.value)">{{col.value}}</div>
+								</div>
+								<div v-else-if="col.type == 'rgv'" style="position: relative;">
+									<div class="rgv-item" v-if="getDeviceNo(col.value) != -1" :style="{width: col.width}" :id="'rgv-' + getDeviceNo(col.value)" @click="openRgv(getDeviceNo(col.value))">{{getDeviceNo(col.value)}}</div>
+									<div class="track-item" v-if="getTrackSiteNo(col.value) == -1"></div>
+									<div class="track-item" v-else :id="'rgvTrackSiteNo-' + getTrackSiteNo(col.value)"></div>
+								</div>
+								<div v-else-if="col.type == 'crn'">
+									<div class="crn-item" v-if="getDeviceNo(col.value) != -1" :style="{width: col.width}" :id="'crn-' + getDeviceNo(col.value)" @click="openCrn(getDeviceNo(col.value))">{{getDeviceNo(col.value)}}</div>
+									<div class="track-item" v-if="getTrackSiteNo(col.value) == -1"></div>
+									<div class="track-item" v-else :id="'crnTrackSiteNo-' + getTrackSiteNo(col.value)"></div>
+								</div>
+							</td>
+
+<!--							<td>-->
+<!--								&lt;!&ndash; 鏄剧ず琛屽彿 &ndash;&gt;-->
+<!--								<div class="item" style="background: none;color: #000;">#{{index+1}}</div>-->
+<!--							</td>-->
+						</tr>
+					</table>
+				</div>
+			</div>
+
+		</div>
+
+		<script src="../../components/WatchCrnCard.js"></script>
+		<script>
+			var app = new Vue({
+				el: '#app',
+				data: {
+					map: [],//鍦板浘鏁版嵁
+					crnList: [], //鍫嗗灈鏈洪泦鍚�
+					systemStatus: true,//绯荤粺杩愯鐘舵��
+					consoleInterval: null,//瀹氭椂鍣ㄥ瓨鍌ㄥ彉閲�
+					crnInitPosition: [],
+					rgvPosition: [],
+					activateCard: 'crn',
+					crnParam: {
+						crnNo: 0
+					}
+				},
+				created() {
+					this.init()
+				},
+				watch: {
+
+				},
+				methods: {
+					init() {
+						this.getMap()
+						this.getSystemRunningStatus() //鑾峰彇绯荤粺杩愯鐘舵��
+
+						this.consoleInterval = setInterval(() => {
+							this.getCrnInfo() //鑾峰彇鍫嗗灈鏈烘暟鎹�
+							this.getSiteInfo() //鑾峰彇杈撻�佺珯鐐规暟鎹�
+							this.getRgvInfo() //鑾峰彇RGV鏁版嵁
+						}, 1000)
+					},
+					//鑾峰彇鍦板浘鏁版嵁
+					getMap() {
+						let rowPx = 35;
+						let colPx = 35;
+
+						$.ajax({
+							url: "./test.json",
+							method: "get",
+							success: (res) => {
+								let data = res.data;
+								let mapData = JSON.parse(data)
+								mapData.forEach((row) => {
+									let shelfIdx = 1;
+									row.forEach((col) => {
+										if (col.type == 'shelf') {
+											col.shelfIdx = shelfIdx;
+											shelfIdx++;
+										}
+
+										col.rowPx = (col.rowSpan * rowPx) + "px";
+										col.colPx = (col.colSpan * colPx) + "px";
+
+										col.width = (col.cellWidth / 30) + "px";
+									})
+								})
+								this.map = mapData;
+							}
+						})
+					},
+					openCrn(id) {
+						this.crnParam.crnNo = id;
+					},
+					openRgv(id) {
+						this.rgvWindow = true; //鎵撳紑RGV淇℃伅寮圭獥
+						$(".detailed").empty();
+						$('.detailed').append(id + '鍙稲GV');
+						$.ajax({
+							url: baseUrl + "/console/rgv/detail",
+							headers: {
+								'token': localStorage.getItem('token')
+							},
+							data: {
+								rgvNo: id
+							},
+							method: 'post',
+							success: function(res) {
+								for (var val in res.data) {
+									var find = $("#rgvWindow").find(":input[name='" + val + "']");
+									if (find[0].type === 'text') {
+										find.val(res.data[val]);
+									} else if (find[0].type === 'checkbox') {
+										find.attr("checked", res.data[val] === 'Y');
+									}
+								}
+							}
+
+						})
+					},
+					openSite(id) {
+						this.siteWindow = true; //鎵撳紑绔欑偣淇℃伅寮圭獥
+						$(".detailed").empty();
+						$('.detailed').append(id + '绔欑偣璇︾粏淇℃伅');
+						$.ajax({
+							url: baseUrl + "/console/site/detail",
+							headers: {
+								'token': localStorage.getItem('token')
+							},
+							data: {
+								siteId: id
+							},
+							method: 'post',
+							success: function(res) {
+								for (var val in res.data) {
+									var find = $("#siteWindow").find(":input[name='" + val + "']");
+									if (find[0].type === 'text') {
+										find.val(res.data[val]);
+									} else if (find[0].type === 'checkbox') {
+										find.attr("checked", res.data[val] === 'Y');
+									}
+								}
+							}
+
+						})
+					},
+					getSiteInfo() {
+						//鑾峰彇杈撻�佺珯鐐规暟鎹�
+						$.ajax({
+							url: baseUrl + "/console/latest/data/site",
+							headers: {'token': localStorage.getItem('token')},
+							method: 'POST',
+							success: function (res) {
+								if (res.code === 200) {
+									var sites = res.data;
+									for (var i = 0; i < sites.length; i++){
+										var siteEl = $("#site-"+sites[i].siteId);
+										siteEl.attr("class", "site " + sites[i].siteStatus);
+										if (sites[i].workNo != null && sites[i].workNo>0) {
+											siteEl.html(sites[i].siteId + "[" + sites[i].workNo + "]");
+										} else {
+											siteEl.html(sites[i].siteId);
+										}
+									}
+								} else if (res.code === 403) {
+									parent.location.href = baseUrl + "/login";
+								} else {
+									console.log(res.msg);
+								}
+							}
+						});
+					},
+					getCrnInfo() {
+						let that = this
+						//鑾峰彇鍫嗗灈鏈烘暟鎹�
+						$.ajax({
+							url: baseUrl + "/console/latest/data/crn",
+							headers: {'token': localStorage.getItem('token')},
+							method: 'POST',
+							success: function (res) {
+								if (res.code === 200) {
+									var crns = res.data;
+
+									if (that.crnInitPosition.length == 0) {
+										let position = []
+										for (var i = 0; i < crns.length; i++) {
+											var crnEl = $("#crn-" + crns[i].crnId);
+											position.push({
+												id: crns[i].crnId,
+												left: crnEl.offset().left + crnEl.width()
+											})
+										}
+										that.crnInitPosition = position
+										return;
+									}
+
+									let crnList = []
+									for (var i = 0; i < crns.length; i++) {
+										var crnEl = $("#crn-" + crns[i].crnId);
+										crnEl.attr("class", "crn-item " + crns[i].crnStatus);
+
+										if (crns[i].bay < 0 || crns[i].bay === -2) {
+											crns[i].bay = 1
+										}
+
+										let basePosition = 0;
+										that.crnInitPosition.forEach((item) => {
+											if (item.id == crns[i].crnId) {
+												basePosition = item.left
+											}
+										})
+
+										var offSet = crns[i].offset;
+										let finalOffset = basePosition + offSet;
+										if (finalOffset < basePosition) {
+											finalOffset = basePosition;
+										}
+										crnEl.animate({left: finalOffset + 'px'}, 1000);
+
+										crnList.push({
+											crnNo: crns[i].crnId,
+											crnStatus: crns[i].crnStatus
+										})
+									}
+									that.crnList = crnList;
+
+								} else if (res.code === 403) {
+									parent.location.href = baseUrl + "/login";
+								} else {
+									console.log(res.msg);
+								}
+							}
+						});
+					},
+					getRgvInfo() {
+						let that = this
+						//鑾峰彇RGV鏁版嵁
+						$.ajax({
+							url: baseUrl + "/console/latest/data/rgv",
+							headers: {'token': localStorage.getItem('token')},
+							method: 'POST',
+							success: function (res) {
+								if (res.code === 200) {
+									var rgvs = res.data;
+
+									if (that.rgvPosition.length == 0) {
+										let position = []
+										for (var i = 0; i < rgvs.length; i++) {
+											var rgvEl = $("#rgv-" + rgvs[i].rgvId);
+											position.push({
+												id: rgvs[i].rgvId,
+												trackSiteNo: rgvs[i].trackSiteNo,
+												initLeft: rgvEl.offset().left
+											})
+										}
+										that.rgvPosition = position
+										return;
+									}
+
+									for (var i = 0; i < rgvs.length; i++) {
+										var rgvEl = $("#rgv-" + rgvs[i].rgvId);
+										if (rgvs[i].rgvStatus == 'IDLE') {
+											rgvEl.attr("class", "rgv-item");
+										}else if (rgvs[i].rgvStatus == 'WORKING') {
+											rgvEl.attr("class", "rgv-item machine-working");
+										}
+
+										let trackSiteNo = rgvs[i].trackSiteNo;
+										let trackSiteEl = $("#rgvTrackSiteNo-" + trackSiteNo);
+
+										let flag = false;
+										that.rgvPosition.forEach((item) => {
+											if (item.id == rgvs[i].rgvId) {
+												if (item.trackSiteNo != trackSiteNo) {
+													flag = true
+												}
+											}
+										})
+
+										if (flag) {
+											let finalOffset = 0;
+											let targetPosition = trackSiteEl.parent().parent().position().left;
+											let rgvPosition = rgvEl.position().left;
+											let calcResult = targetPosition - rgvPosition
+											if (calcResult > 0) {
+												finalOffset = targetPosition + trackSiteEl.width();
+											}else {
+												finalOffset = targetPosition;
+											}
+
+											rgvEl.animate({left: finalOffset + "px"}, 500);
+
+											let position = []
+											that.rgvPosition.forEach((item) => {
+												if (item.id == rgvs[i].rgvId) {
+													item.trackSiteNo = trackSiteNo
+												}
+												position.push(item)
+											})
+											that.rgvPosition = position
+										}
+
+									}
+								} else if (res.code === 403) {
+									parent.location.href = baseUrl + "/login";
+								} else {
+									console.log(res.msg);
+								}
+							}
+						});
+					},
+					systemSwitch() {
+						// 绯荤粺寮�鍏�
+						let that = this
+						if (this.systemStatus) {
+							this.$prompt('璇疯緭鍏ュ彛浠わ紝骞跺仠姝CS绯荤粺', '鎻愮ず', {
+								confirmButtonText: '纭畾',
+								cancelButtonText: '鍙栨秷',
+							}).then(({
+								value
+							}) => {
+								that.doSwitch(0, value)
+							}).catch(() => {
+
+							});
+						} else {
+							this.doSwitch(1)
+						}
+					},
+					doSwitch(operatorType, password) {
+						let that = this
+						$.ajax({
+							url: baseUrl + "/console/system/switch",
+							headers: {
+								'token': localStorage.getItem('token')
+							},
+							data: {
+								operatorType: operatorType,
+								password: password
+							},
+							method: 'POST',
+							success: function(res) {
+								if (res.code === 200) {
+									if (res.data.status) {
+										$('#system-toggle-checked').attr("checked", true);
+										$('#system-run-desc').html("绯荤粺杩愯涓�...");
+										that.systemStatus = true;
+										parent.systemRunning = true;
+									} else {
+										$('#system-toggle-checked').attr("checked", false);
+										$('#system-run-desc').html("绯荤粺宸插仠姝�!");
+										that.systemStatus = false;
+										parent.systemRunning = false;
+									}
+								} else if (res.code === 403) {
+									parent.location.href = baseUrl + "/login";
+								} else {
+									that.$message({
+										message: res.msg,
+										type: 'error'
+									});
+								}
+							}
+						});
+					},
+					getSystemRunningStatus() {
+						// 鑾峰彇wcs绯荤粺杩愯鐘舵��
+						let that = this
+						$.ajax({
+							url: baseUrl + "/console/system/running/status",
+							headers: {
+								'token': localStorage.getItem('token')
+							},
+							method: 'POST',
+							success: function(res) {
+								if (res.code === 200) {
+									if (res.data.status) {
+										$('#system-toggle-checked').attr("checked", true);
+										$('#system-run-desc').html("绯荤粺杩愯涓�...");
+										that.systemStatus = true;
+										parent.systemRunning = true;
+									} else {
+										$('#system-toggle-checked').attr("checked", false);
+										$('#system-run-desc').html("绯荤粺宸插仠姝�!");
+										that.systemStatus = false;
+										parent.systemRunning = false;
+									}
+								} else if (res.code === 403) {
+									parent.location.href = baseUrl + "/login";
+								} else {
+									that.$message({
+										message: res.msg,
+										type: 'error'
+									});
+								}
+							}
+						});
+					},
+					getDeviceNo(obj) {
+						if (this.isJson(obj)) {
+							let data = JSON.parse(obj)
+							if (data.deviceNo == null || data.deviceNo == undefined) {
+								return -1;
+							}
+							return data.deviceNo;
+						}else {
+							return -1;
+						}
+					},
+					getTrackSiteNo(obj) {
+						if (this.isJson(obj)) {
+							let data = JSON.parse(obj)
+							if (data.trackSiteNo == null || data.trackSiteNo == undefined) {
+								return -1;
+							}
+							return data.trackSiteNo;
+						}else {
+							return -1;
+						}
+					},
+					isJson(str) {
+						try {
+							JSON.parse(str);
+							return true;
+						} catch (e) {
+							return false;
+						}
+					},
+					handleCardClick(tab, event) {
+
+					}
+				}
+			})
+		</script>
+	</body>
+</html>
diff --git a/src/main/webapp/views/admin/watch/crn.html b/src/main/webapp/views/admin/watch/crn.html
new file mode 100644
index 0000000..ae8f23a
--- /dev/null
+++ b/src/main/webapp/views/admin/watch/crn.html
@@ -0,0 +1,462 @@
+<!DOCTYPE html>
+<html lang="zh-CN">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>鍫嗗灈鏈虹洃鎺х郴缁�</title>
+    <link rel="stylesheet" href="../../../static/vue/element/element.css">
+    <link rel="stylesheet" href="../../../static/css/shuttle_page.min.css">
+    <script src="../../../static/js/shuttle_page.js"></script>
+    <script type="text/javascript" src="../../../static/js/jquery/jquery-3.3.1.min.js"></script>
+    <script type="text/javascript" src="../../../static/js/common.js"></script>
+    <script type="text/javascript" src="../../../static/vue/js/vue.min.js"></script>
+    <script type="text/javascript" src="../../../static/vue/element/element.js"></script>
+    <style>
+        body {
+            font-family: 'Noto Sans SC', sans-serif;
+            background-color: #0f172a;
+            color: #e2e8f0;
+        }
+        .card {
+            background-color: #1e293b;
+            border-radius: 0.75rem;
+            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+            transition: all 0.3s ease;
+        }
+        /*.card:hover {*/
+        /*    transform: translateY(-2px);*/
+        /*    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);*/
+        /*}*/
+        .btn {
+            background-color: #3b82f6;
+            color: white;
+            border-radius: 0.5rem;
+            padding: 0.5rem 1rem;
+            transition: all 0.3s ease;
+        }
+        .btn:hover {
+            background-color: #2563eb;
+            transform: translateY(-1px);
+        }
+        .status-active {
+            color: #4ade80;
+        }
+        .status-inactive {
+            color: #f87171;
+        }
+        .progress-bar {
+            height: 0.75rem;
+            border-radius: 0.375rem;
+            background-color: #334155;
+        }
+        .progress-fill {
+            height: 100%;
+            border-radius: 0.375rem;
+            background-color: #4ade80;
+            transition: width 0.5s ease;
+        }
+        .table-striped tbody tr:nth-child(odd) {
+            background-color: #1e293b;
+        }
+        .table-striped tbody tr:nth-child(even) {
+            background-color: #1a2537;
+        }
+    </style>
+</head>
+<body class="min-h-screen">
+    <div id="app">
+        <div class="container mx-auto px-4 py-8">
+            <!-- 椤堕儴鏍囬鍜岀姸鎬佹爮 -->
+            <div class="flex flex-col md:flex-row justify-between items-center mb-8">
+                <h1 class="text-3xl font-bold text-blue-400 mb-4 md:mb-0">
+                    <i class="fas fa-robot mr-2"></i>鍫嗗灈鏈虹洃鎺х郴缁�
+                </h1>
+                <div class="flex items-center space-x-4">
+                    <div class="flex items-center">
+                        <div class="w-3 h-3 rounded-full bg-green-500 mr-2"></div>
+                        <span>鍦ㄧ嚎: {{ deviceStatusCountMap.online }}</span>
+                    </div>
+                    <div class="flex items-center">
+                        <div class="w-3 h-3 rounded-full bg-yellow-500 mr-2"></div>
+                        <span>鏁呴殰: {{ deviceStatusCountMap.error }}</span>
+                    </div>
+                    <div class="flex items-center">
+                        <div class="w-3 h-3 rounded-full bg-red-500 mr-2"></div>
+                        <span>绂荤嚎: {{ deviceStatusCountMap.offline }}</span>
+                    </div>
+                </div>
+            </div>
+
+            <!-- 涓昏鐩戞帶鍖哄煙 -->
+            <div class="card p-6 mb-8">
+                <!-- 鍫嗗灈鏈虹姸鎬佽〃鏍� -->
+                <div class="card p-6">
+                    <div class="flex justify-between items-center mb-4">
+                        <h2 class="text-xl font-semibold text-blue-300">
+                            <i class="fas fa-list-alt mr-2"></i>鍫嗗灈鏈虹姸鎬�
+                        </h2>
+                        <div class="relative">
+                            <select v-model="selectListStatus" class="bg-slate-700 text-white rounded px-3 py-1 pr-8">
+                                <option value="all">鍏ㄩ儴鐘舵��</option>
+                                <option value="online">鍦ㄧ嚎</option>
+                                <option value="idle">绌洪棽</option>
+                                <option value="running">杩愯涓�</option>
+                                <option value="offline">绂荤嚎</option>
+                                <option value="error">鏁呴殰</option>
+                            </select>
+                        </div>
+                    </div>
+                    <div class="overflow-auto" style="height: 500px;">
+                        <table class="w-full table-striped">
+                            <thead>
+                            <tr class="text-left text-slate-300 border-b border-slate-600 bg-slate-800 sticky top-0 z-10">
+                                <th class="py-3 px-4">缂栧彿</th>
+                                <th class="py-3 px-4">宸ヤ綔鍙�</th>
+                                <th class="py-3 px-4">妯″紡</th>
+                                <th class="py-3 px-4">鐘舵��</th>
+                                <th class="py-3 px-4">婧愬簱浣�</th>
+                                <th class="py-3 px-4">鐩爣搴撲綅</th>
+                                <th class="py-3 px-4">鏄惁鏈夌墿</th>
+                                <th class="py-3 px-4">鍒�</th>
+                                <th class="py-3 px-4">灞�</th>
+                                <th class="py-3 px-4">璐у弶瀹氫綅</th>
+                                <th class="py-3 px-4">杞借揣鍙板畾浣�</th>
+                                <th class="py-3 px-4">璧拌鍦ㄥ畾浣�</th>
+                                <th class="py-3 px-4">璧拌閫熷害锛坢/min)</th>
+                                <th class="py-3 px-4">鍗囬檷閫熷害锛坢/min)</th>
+                                <th class="py-3 px-4">鍙夌墮閫熷害锛坢/min)</th>
+                                <th class="py-3 px-4">璧拌璺濈(Km)</th>
+                                <th class="py-3 px-4">鍗囬檷璺濈(Km)</th>
+                                <th class="py-3 px-4">璧拌鏃堕暱(H)</th>
+                                <th class="py-3 px-4">鍗囬檷鏃堕暱(H)</th>
+                                <th class="py-3 px-4">鏁呴殰浠g爜</th>
+                                <th class="py-3 px-4">鏁呴殰鎻忚堪</th>
+                            </tr>
+                            </thead>
+                            <tbody>
+                                <tr v-for="(item,idx) in crnList" :key="idx" class="hover:bg-slate-700">
+                                    <td class="py-3 px-4">{{ item.crnNo }}</td>
+                                    <td class="py-3 px-4">{{ item.workNo }}</td>
+                                    <td class="py-3 px-4">{{ item.mode }}</td>
+                                    <td class="py-3 px-4">{{ item.status }}</td>
+                                    <td class="py-3 px-4">{{ item.sourceLocNo }}</td>
+                                    <td class="py-3 px-4">{{ item.locNo }}</td>
+                                    <td class="py-3 px-4">{{ item.loading }}</td>
+                                    <td class="py-3 px-4">{{ item.bay }}</td>
+                                    <td class="py-3 px-4">{{ item.lev }}</td>
+                                    <td class="py-3 px-4">{{ item.forkOffset }}</td>
+                                    <td class="py-3 px-4">{{ item.liftPos }}</td>
+                                    <td class="py-3 px-4">{{ item.walkPos }}</td>
+                                    <td class="py-3 px-4">{{ item.xspeed }}</td>
+                                    <td class="py-3 px-4">{{ item.yspeed }}</td>
+                                    <td class="py-3 px-4">{{ item.zspeed }}</td>
+                                    <td class="py-3 px-4">{{ item.xdistance }}</td>
+                                    <td class="py-3 px-4">{{ item.ydistance }}</td>
+                                </tr>
+                            </tbody>
+                        </table>
+                    </div>
+                </div>
+            </div>
+
+            <!-- 鎿嶄綔鎺у埗鍖哄煙 -->
+            <div class="card p-6 mb-8">
+                <h2 class="text-xl font-semibold text-blue-300 mb-4">
+                    <i class="fas fa-sliders-h mr-2"></i>鎺у埗闈㈡澘
+                </h2>
+                <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-2 gap-2">
+                    <div class="bg-slate-700 p-4 rounded-lg">
+                        <h3 class="text-lg font-medium mb-2">璁惧鎺у埗</h3>
+                        <div class="flex flex-wrap gap-2" style="display: flex;justify-content: center;">
+                            <div>
+                                <el-input @change="changeControlLiftNo" v-model="controlData.liftNo" style="width: 150px;" placeholder="缂栧彿"></el-input>
+                            </div>
+                            <div>
+                                <el-input v-model="controlData.sourceStaNo" style="width: 200px;" placeholder="婧愮珯"></el-input>
+                            </div>
+                            <div>
+                                <el-input v-model="controlData.staNo" style="width: 200px;" placeholder="鐩爣绔�"></el-input>
+                            </div>
+                        </div>
+                    </div>
+                    <div class="bg-slate-700 p-4 rounded-lg">
+                        <h3 class="text-lg font-medium mb-2">璁惧鎸囦护</h3>
+                        <div class="flex flex-wrap gap-2" style="display: flex;justify-content: center;">
+                            <button class="btn bg-slate-600 hover:bg-slate-500" @click="liftOperator('movePallet')">
+                                <i class="fas fa-level-up mr-1"></i>绉诲姩鎵樼洏
+                            </button>
+                            <button class="btn bg-slate-600 hover:bg-slate-500" @click="liftOperator('switchShuttle')">
+                                <i class="fas fa-level-down mr-1"></i>灏忚溅鎹㈠眰
+                            </button>
+                            <button class="btn bg-slate-600 hover:bg-slate-500" @click="liftOperator('move')">
+                                <i class="fas fa-battery-three-quarters mr-1"></i>绉诲姩
+                            </button>
+                            <button class="btn bg-slate-600 hover:bg-slate-500" @click="liftOperator('reset')">
+                                <i class="fas fa-home mr-1"></i>澶嶄綅
+                            </button>
+                        </div>
+                    </div>
+                </div>
+            </div>
+
+        </div>
+    </div>
+</body>
+
+<script>
+    var app = new Vue({
+        el: '#app',
+        data: {
+            ws: null,
+            crnList: [], //鍫嗗灈鏈洪泦鍚�
+            crnAllList: [],
+            selectListStatus: "all",
+            deviceStatusCountMap: {},
+            controlData: {
+                crnNo: "",
+                taskNo: "",
+                sourceLocNo: "",
+                targetLocNo: ""
+            },
+            controlLiftInfo: null,
+        },
+        created() {
+            this.init()
+        },
+        watch: {
+
+        },
+        methods: {
+            init() {
+                this.consoleInterval = setInterval(() => {
+                    this.getCrnStateInfo() //鑾峰彇鍫嗗灈鏈轰俊鎭�
+                }, 1000)
+            },
+            getCrnStateInfo() {
+                let that = this
+                $.ajax({
+                    url: baseUrl + "/crn/table/crn/state",
+                    headers: {
+                        'token': localStorage.getItem('token')
+                    },
+                    method: "post",
+                    success: (res) => {
+                        // 鍫嗗灈鏈轰俊鎭〃鑾峰彇
+                        if (res.code == 200) {
+                            let list = res.data;
+
+                            let allList = []
+                            let runningList = []
+                            let idleList = []
+                            let errorList = []
+                            let offlineList = []
+                            let onlineList = []
+
+                            list.forEach((item) => {
+                                allList.push(item)
+
+                                if(item.mode == "鑷姩") {
+                                    runningList.push(item)
+                                }
+
+                                if(item.mode == "鑷姩") {
+                                    idleList.push(item)
+                                }
+
+                                if(item.alarm > 0) {
+                                    errorList.push(item)
+                                }
+
+                                if (item.protocolStatusType == "绂荤嚎") {
+                                    offlineList.push(item)
+                                }else {
+                                    onlineList.push(item)
+                                }
+                            })
+
+                            if (this.selectListStatus == "all") {
+                                this.liftList = allList;
+                            }else if (this.selectListStatus == "running") {
+                                this.liftList = runningList;
+                            }else if (this.selectListStatus == "idle") {
+                                this.liftList = idleList;
+                            }else if (this.selectListStatus == "error") {
+                                this.liftList = errorList;
+                            }else if (this.selectListStatus == "offline") {
+                                this.liftList = offlineList;
+                            }else if (this.selectListStatus == "online") {
+                                this.liftList = onlineList;
+                            }
+
+                            let tmpMap = {
+                                idle: idleList.length,
+                                running: runningList.length,
+                                error: errorList.length,
+                                offline: offlineList.length,
+                                online: idleList.length + runningList.length,
+                            }
+                            this.deviceStatusCountMap = tmpMap;
+
+                            this.liftAllList = allList;
+                            if (this.controlLiftInfo != null) {
+                                allList.forEach((item) => {
+                                    if(item.liftNo == this.controlLiftInfo.liftNo) {
+                                        this.controlLiftInfo = item;
+                                    }
+                                });
+                            }
+                        }
+                    }
+                })
+            },
+            liftOperator(type) {
+                let that = this;
+                if (this.controlData.liftNo == null || this.controlData.liftNo == "") {
+                    this.$message({
+                        message: '璇疯緭鍏ヨ澶囩紪鍙�',
+                        type: 'warning'
+                    });
+                    return;
+                }
+
+                let requestParam = {
+                    liftNo: this.controlData.liftNo
+                };
+
+                if (type == 'movePallet') {
+                    if (this.controlData.sourceStaNo == null || this.controlData.sourceStaNo == "") {
+                        this.$message({
+                            message: '璇疯緭鍏ユ簮绔�',
+                            type: 'warning'
+                        });
+                        return;
+                    }
+
+                    if (this.controlData.staNo == null || this.controlData.staNo == "") {
+                        this.$message({
+                            message: '璇疯緭鍏ョ洰鏍囩珯',
+                            type: 'warning'
+                        });
+                        return;
+                    }
+
+                    requestParam.liftTaskMode = 1;
+                    requestParam.sourceStaNo = this.controlData.sourceStaNo;
+                    requestParam.staNo = this.controlData.staNo;
+                }else if (type == 'switchShuttle') {
+                    if (this.controlData.sourceStaNo == null || this.controlData.sourceStaNo == "") {
+                        this.$message({
+                            message: '璇疯緭鍏ユ簮绔�',
+                            type: 'warning'
+                        });
+                        return;
+                    }
+
+                    if (this.controlData.staNo == null || this.controlData.staNo == "") {
+                        this.$message({
+                            message: '璇疯緭鍏ョ洰鏍囩珯',
+                            type: 'warning'
+                        });
+                        return;
+                    }
+
+                    requestParam.liftTaskMode = 2;
+                    requestParam.sourceStaNo = this.controlData.sourceStaNo;
+                    requestParam.staNo = this.controlData.staNo;
+                }else if (type == 'move') {
+                    if (this.controlData.sourceStaNo == null || this.controlData.sourceStaNo == "") {
+                        this.$message({
+                            message: '璇疯緭鍏ユ簮绔�',
+                            type: 'warning'
+                        });
+                        return;
+                    }
+
+                    if (this.controlData.staNo == null || this.controlData.staNo == "") {
+                        this.$message({
+                            message: '璇疯緭鍏ョ洰鏍囩珯',
+                            type: 'warning'
+                        });
+                        return;
+                    }
+
+                    requestParam.liftTaskMode = 3;
+                    requestParam.sourceStaNo = this.controlData.sourceStaNo;
+                    requestParam.staNo = this.controlData.staNo;
+                }else if (type == 'reset') {
+                    requestParam.liftTaskMode = 9996;
+                }
+
+                $.ajax({
+                    url: baseUrl + "/lift/operator/lift",
+                    headers: {'token': localStorage.getItem('token')},
+                    method: 'POST',
+                    data: requestParam,
+                    success: function (res) {
+                        if (res.code === 200) {
+                            that.$message({
+                                message: res.msg,
+                                type: 'success'
+                            });
+                        } else if (res.code === 403) {
+                            window.location.href = baseUrl + "/login";
+                        } else {
+                            that.$message({
+                                message: res.msg,
+                                type: 'warning'
+                            });
+                        }
+                    }
+                });
+            },
+            changeControlLiftNo() {
+                let liftNo = this.controlData.liftNo;
+                if (liftNo == null || liftNo == "") {
+                    this.controlLiftInfo = null
+                }
+
+                this.liftAllList.forEach((item) => {
+                    if (item.liftNo == liftNo) {
+                        this.controlLiftInfo = item;
+                    }
+                });
+            },
+            websocketConnect() {
+                if (this.ws == null) {
+                    this.ws = new WebSocket("ws://" + window.location.host + baseUrl + "/console/websocket");
+                    this.ws.onopen = this.webSocketOnOpen
+                    this.ws.onerror = this.webSocketOnError
+                    this.ws.onmessage = this.webSocketOnMessage
+                    this.ws.onclose = this.webSocketClose
+                }
+            },
+            webSocketOnOpen(e) {
+                console.log("open");
+            },
+            webSocketOnError(e) {
+                this.ws = null;
+                console.log(e);
+            },
+            webSocketOnMessage(e) {
+                const result = JSON.parse(e.data);
+                if (result.url == "/lift/table/lift/state") {
+                    this.setLiftStateInfo(JSON.parse(result.data))
+                }
+            },
+            webSocketClose(e) {
+                this.ws = null;
+                console.log("close");
+            },
+            sendWs(message) {
+                if (this.ws == null) {
+                    return;
+                }
+
+                if (this.ws.readyState == WebSocket.OPEN) {
+                    this.ws.send(message);
+                }
+            }
+        }
+    })
+</script>
+</html>
\ No newline at end of file
diff --git a/src/main/webapp/views/admin/watch/test.json b/src/main/webapp/views/admin/watch/test.json
new file mode 100644
index 0000000..bb8a8a1
--- /dev/null
+++ b/src/main/webapp/views/admin/watch/test.json
@@ -0,0 +1,5 @@
+{
+  "msg": "鎿嶄綔鎴愬姛",
+  "code": 200,
+  "data": "[[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":3,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1008},{\"rowSpan\":3,\"cellWidth\":2048,\"colSpan\":2,\"cellHeight\":285,\"type\":\"devp\",\"value\":1009},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":2,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1010},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1012},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1013},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1088},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":3,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1015},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1002},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1087},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1016},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1003},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1007},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1006},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1086},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"{\\\"deviceNo\\\":1}\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1006},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1018},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1019},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1020},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":8,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1084},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":3,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1022},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1023},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":2,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1025},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"{\\\"deviceNo\\\":2}\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1026},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"type\":\"rgv\",\"value\":\"{\\\"trackSiteNo\\\":1,\\\"deviceNo\\\":1}\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"type\":\"rgv\",\"value\":\"{\\\"trackSiteNo\\\":3}\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"type\":\"rgv\",\"value\":\"{\\\"trackSiteNo\\\":4}\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"type\":\"rgv\",\"value\":\"{\\\"trackSiteNo\\\":2}\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":4,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1028},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":270,\"type\":\"devp\",\"value\":2002},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":270,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":270,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":270,\"type\":\"devp\",\"value\":2003},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":270,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":270,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":270,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":6,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1083},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1029},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":2,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1031},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"{\\\"deviceNo\\\":3}\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1032},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":4,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1035},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":270,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":270,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":270,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":270,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":270,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":270,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":270,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1034},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1036},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":11,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1081},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":2,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1038},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"{\\\"deviceNo\\\":4}\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1039},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":4,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1041},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":270,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":270,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":270,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":270,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":270,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":270,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":270,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1042},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":5,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1044},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"{\\\"deviceNo\\\":5}\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1045},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":270,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":270,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":270,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":270,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":270,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":270,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":270,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":2,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1047},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1048},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1049},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":4,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1051},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"{\\\"deviceNo\\\":6}\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"crn\",\"value\":\"鍫嗗灈鏈篭"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":3,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1079},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1052},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":3072,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1856,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2016,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2144,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2208,\"colSpan\":1,\"cellHeight\":285,\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":3136,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2240,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"shelf\",\"value\":\"璐ф灦\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":2,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1078},{\"rowSpan\":2,\"cellWidth\":3552,\"colSpan\":2,\"cellHeight\":285,\"type\":\"devp\",\"value\":1053},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1054},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1055},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1060},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1061},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1066},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1067},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1069},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1070},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1072},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1073},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1077},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1056},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1062},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1068},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1071},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1074},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":2,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1076},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":3,\"cellHeight\":285,\"type\":\"devp\",\"value\":1059},{\"rowSpan\":1,\"cellWidth\":1920,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1057},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1065},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1063},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"merge\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":3552,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1058},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1064},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}],[{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":2048,\"colSpan\":1,\"cellHeight\":285,\"type\":\"devp\",\"value\":1075},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"},{\"rowSpan\":1,\"cellWidth\":\"\",\"colSpan\":1,\"cellHeight\":\"\",\"type\":\"none\",\"value\":\"\"}]]"
+}
\ No newline at end of file
diff --git a/src/main/webapp/views/components/WatchCrnCard.js b/src/main/webapp/views/components/WatchCrnCard.js
new file mode 100644
index 0000000..f38e6c4
--- /dev/null
+++ b/src/main/webapp/views/components/WatchCrnCard.js
@@ -0,0 +1,87 @@
+Vue.component('watch-crn-card', {
+    template: `
+    <div>
+        <div>鍫嗗灈鏈虹洃鎺�</div>
+        <el-collapse v-model="activeNames">
+          <el-collapse-item v-for="(item) in crnList" :name="item.crnNo">
+            <template slot="title">
+                <div style="width: 100%;display: flex;">
+                   <div style="width: 50%;">{{ item.crnNo }}鍙峰爢鍨涙満</div>
+                   <div style="width: 50%;text-align: right;">
+                      <el-tag v-if="item.deviceStatus == 'AUTO'" type="success" size="small">鑷姩</el-tag>
+                      <el-tag v-else-if="item.deviceStatus == 'WORKING'" size="small">浣滀笟涓�</el-tag>
+                      <el-tag v-else-if="item.deviceStatus == 'ERROR'" type="danger" size="small">鏁呴殰</el-tag>
+                      <el-tag v-else type="warning" size="small">绂荤嚎</el-tag>
+                   </div>
+                </div>
+            </template>
+            <el-descriptions border direction="vertical">
+                <el-descriptions-item label="缂栧彿">{{ item.crnNo }}</el-descriptions-item>
+                <el-descriptions-item label="宸ヤ綔鍙�">{{ item.workNo }}</el-descriptions-item>
+                <el-descriptions-item label="妯″紡">{{ item.mode }}</el-descriptions-item>
+                <el-descriptions-item label="鐘舵��">{{ item.status }}</el-descriptions-item>
+                <el-descriptions-item label="婧愬簱浣�">{{ item.sourceLocNo }}</el-descriptions-item>
+                <el-descriptions-item label="鐩爣搴撲綅">{{ item.locNo }}</el-descriptions-item>
+                <el-descriptions-item label="鏄惁鏈夌墿">{{ item.loading }}</el-descriptions-item>
+                <el-descriptions-item label="鍒�">{{ item.bay }}</el-descriptions-item>
+                <el-descriptions-item label="灞�">{{ item.lev }}</el-descriptions-item>
+                <el-descriptions-item label="璐у弶瀹氫綅">{{ item.forkOffset }}</el-descriptions-item>
+                <el-descriptions-item label="杞借揣鍙板畾浣�">{{ item.liftPos }}</el-descriptions-item>
+                <el-descriptions-item label="璧拌鍦ㄥ畾浣�">{{ item.walkPos }}</el-descriptions-item>
+                <el-descriptions-item label="璧拌閫熷害锛坢/min)">{{ item.xspeed }}</el-descriptions-item>
+                <el-descriptions-item label="鍗囬檷閫熷害锛坢/min)">{{ item.yspeed }}</el-descriptions-item>
+                <el-descriptions-item label="鍙夌墮閫熷害锛坢/min)">{{ item.zspeed }}</el-descriptions-item>
+                <el-descriptions-item label="璧拌璺濈(Km)">{{ item.xdistance }}</el-descriptions-item>
+                <el-descriptions-item label="鍗囬檷璺濈(Km)">{{ item.ydistance }}</el-descriptions-item>
+                <el-descriptions-item label="璧拌鏃堕暱(H)">{{ item.xDuration }}</el-descriptions-item>
+                <el-descriptions-item label="鍗囬檷鏃堕暱(H)">{{ item.yduration }}</el-descriptions-item>
+                <el-descriptions-item label="鏁呴殰浠g爜">{{ item.warnCode }}</el-descriptions-item>
+                <el-descriptions-item label="鏁呴殰鎻忚堪">{{ item.alarm }}</el-descriptions-item>
+            </el-descriptions>
+          </el-collapse-item>
+        </el-collapse>
+    </div>
+    `,
+    props: ['param'],
+    data() {
+        return {
+            crnList: [],
+            activeNames: ''
+        }
+    },
+    created() {
+        setInterval(() => {
+            this.getCrnStateInfo()
+        },1000)
+    },
+    watch: {
+        param: {
+            handler(newVal, oldVal) {
+                if(newVal.crnNo != 0) {
+                    this.activeNames = newVal.crnNo
+                }
+            },
+            deep: true,       // 娣卞害鐩戝惉宓屽灞炴��
+            immediate: true   // 绔嬪嵆瑙﹀彂涓�娆★紙鍙�夛級
+        }
+    },
+    methods: {
+        getCrnStateInfo() {
+            let that = this
+            $.ajax({
+                url: baseUrl + "/crn/table/crn/state",
+                headers: {
+                    'token': localStorage.getItem('token')
+                },
+                method: "post",
+                success: (res) => {
+                    // 鍫嗗灈鏈轰俊鎭〃鑾峰彇
+                    if (res.code == 200) {
+                        let list = res.data;
+                        that.crnList = list;
+                    }
+                }
+            })
+        },
+    }
+});
\ No newline at end of file
diff --git a/src/main/webapp/views/index.html b/src/main/webapp/views/index.html
index cc6bd94..b22a549 100644
--- a/src/main/webapp/views/index.html
+++ b/src/main/webapp/views/index.html
@@ -21,7 +21,7 @@
             <li><a id="console" onclick="nav(this.id)" class="nav-select" href="#">涓绘帶鍥�</a></li>
 <!--            <li><a id="forklift" onclick="nav(this.id)" class="nav-unselect" href="#">璐у弶鎻愬崌鏈�</a></li>-->
             <li><a id="lift" onclick="nav(this.id)" class="nav-unselect" href="#">鎻愬崌鏈�</a></li>
-            <li><a id="shuttle" onclick="nav(this.id)" class="nav-unselect" href="#">鍥涘悜绌挎杞�</a></li>
+            <li><a id="crn" onclick="nav(this.id)" class="nav-unselect" href="#">鍫嗗灈鏈�</a></li>
             <li><a id="admin" onclick="nav(this.id)" class="nav-unselect" href="#">绠$悊鍚庡彴</a></li>
         </ul>
     </div>
@@ -34,6 +34,7 @@
 </footer>
 </body>
 <script>
+    window.location.href = './admin/index.html'
     // 瀵艰埅鏍�
     function nav(id) {
         if(id == 'admin') {

--
Gitblit v1.9.1