From 29f2beb09c95c191943000d4ce15613076929871 Mon Sep 17 00:00:00 2001 From: eric777 Date: Thu, 25 Jan 2024 15:35:00 +0800 Subject: [PATCH 1/3] =?UTF-8?q?jiahan.wu=20[cr]=20=E8=AE=BE=E5=A4=87?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E4=BF=A1=E6=81=AF=E5=AF=BC=E5=85=A5=E6=A8=A1?= =?UTF-8?q?=E5=9D=97(=E5=88=97=E8=A1=A8=E3=80=81=E5=88=A0=E9=99=A4?= =?UTF-8?q?=E3=80=81=E5=AF=BC=E5=85=A5=E3=80=81=E5=AF=BC=E5=87=BA=E5=8A=9F?= =?UTF-8?q?=E8=83=BD)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/model/deviceImportInfo/index.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/views/model/deviceImportInfo/index.vue b/src/views/model/deviceImportInfo/index.vue index bcb2151..86b7001 100644 --- a/src/views/model/deviceImportInfo/index.vue +++ b/src/views/model/deviceImportInfo/index.vue @@ -364,6 +364,8 @@ function submitForm() { loading.value = false; getList(); + }).catch(err => { + proxy.$modal.msgError("设备参数上传出现异常"); }); } }); From f0767a22e8ead3446ee35a28a87afe24899996c2 Mon Sep 17 00:00:00 2001 From: 18512435990 Date: Fri, 26 Jan 2024 15:19:42 +0800 Subject: [PATCH 2/3] ok --- src/api/model/strategy/adjust.js | 53 + src/api/model/strategy/adjustAsset.js | 53 + src/api/model/strategy/adjustParams.js | 62 + src/api/model/strategy/method.js | 60 + src/api/model/strategy/plan.js | 62 + src/views/model/asset/params.vue | 1 - src/views/model/strategy/adjust/index.vue | 281 ++ .../model/strategy/adjustAsset/index.vue | 275 ++ .../model/strategy/adjustParams/index.vue | 315 ++ src/views/model/strategy/method/index.vue | 248 ++ src/views/model/strategy/plan/index.vue | 364 ++ src/views/model/viewdesgin/desgin.vue | 3025 +++++++++++++- src/views/model/viewdesgin/h.js | 3465 ++++++++++++++++- src/views/model/viewdesgin/index.vue | 172 + 14 files changed, 8272 insertions(+), 164 deletions(-) create mode 100644 src/api/model/strategy/adjust.js create mode 100644 src/api/model/strategy/adjustAsset.js create mode 100644 src/api/model/strategy/adjustParams.js create mode 100644 src/api/model/strategy/method.js create mode 100644 src/api/model/strategy/plan.js create mode 100644 src/views/model/strategy/adjust/index.vue create mode 100644 src/views/model/strategy/adjustAsset/index.vue create mode 100644 src/views/model/strategy/adjustParams/index.vue create mode 100644 src/views/model/strategy/method/index.vue create mode 100644 src/views/model/strategy/plan/index.vue create mode 100644 src/views/model/viewdesgin/index.vue diff --git a/src/api/model/strategy/adjust.js b/src/api/model/strategy/adjust.js new file mode 100644 index 0000000..2ac6222 --- /dev/null +++ b/src/api/model/strategy/adjust.js @@ -0,0 +1,53 @@ +import request from '@/utils/request' + +// 查询调控策略列表 +export function listAdjust(query) { + return request({ + url: '/model/dcBaseStrategyAdjust/list', + method: 'get', + params: query + }) +} + +// 查询调控策略详细 +export function getAdjust(id) { + return request({ + url: '/model/dcBaseStrategyAdjust/' + id, + method: 'get' + }) +} + +// 新增调控策略 +export function addAdjust(data) { + return request({ + url: '/model/dcBaseStrategyAdjust', + method: 'post', + data: data + }) +} + +// 修改调控策略 +export function updateAdjust(data) { + return request({ + url: '/model/dcBaseStrategyAdjust', + method: 'put', + data: data + }) +} + +// 删除调控策略 +export function delAdjust(id) { + return request({ + url: '/model/dcBaseStrategyAdjust/' + id, + method: 'delete' + }) +} + +// 导出调控策略 +export function exportAdjust(query) { + return request({ + url: '/${baseUrl}/export', + method: 'get', + params: query + }) +} \ No newline at end of file diff --git a/src/api/model/strategy/adjustAsset.js b/src/api/model/strategy/adjustAsset.js new file mode 100644 index 0000000..08830d0 --- /dev/null +++ b/src/api/model/strategy/adjustAsset.js @@ -0,0 +1,53 @@ +import request from '@/utils/request' + +// 查询调控策略资产列表 +export function listAdjustAsset(query) { + return request({ + url: '/model/dcBaseStrategyAdjustAsset/list', + method: 'get', + params: query + }) +} + +// 查询调控策略资产详细 +export function getAdjustAsset(id) { + return request({ + url: '/model/dcBaseStrategyAdjustAsset/' + id, + method: 'get' + }) +} + +// 新增调控策略资产 +export function addAdjustAsset(data) { + return request({ + url: '/model/dcBaseStrategyAdjustAsset', + method: 'post', + data: data + }) +} + +// 修改调控策略资产 +export function updateAdjustAsset(data) { + return request({ + url: '/model/dcBaseStrategyAdjustAsset', + method: 'put', + data: data + }) +} + +// 删除调控策略资产 +export function delAdjustAsset(id) { + return request({ + url: '/model/dcBaseStrategyAdjustAsset/' + id, + method: 'delete' + }) +} + +// 导出调控策略资产 +export function exportAdjustAsset(query) { + return request({ + url: '/${baseUrl}/export', + method: 'get', + params: query + }) +} \ No newline at end of file diff --git a/src/api/model/strategy/adjustParams.js b/src/api/model/strategy/adjustParams.js new file mode 100644 index 0000000..a7c58d5 --- /dev/null +++ b/src/api/model/strategy/adjustParams.js @@ -0,0 +1,62 @@ +import request from '@/utils/request' + +// 查询调控策略参数列表 +export function listAdjustParams(query) { + return request({ + url: '/model/dcBaseStrategyAdjustParams/list', + method: 'get', + params: query + }) +} + +// 查询调控策略参数详细 +export function getAdjustParams(id) { + return request({ + url: '/model/dcBaseStrategyAdjustParams/' + id, + method: 'get' + }) +} + +// 新增调控策略参数 +export function addAdjustParams(data) { + return request({ + url: '/model/dcBaseStrategyAdjustParams', + method: 'post', + data: data + }) +} + +// 修改调控策略参数 +export function updateAdjustParams(data) { + return request({ + url: '/model/dcBaseStrategyAdjustParams', + method: 'put', + data: data + }) +} + +// 删除调控策略参数 +export function delAdjustParams(id) { + return request({ + url: '/model/dcBaseStrategyAdjustParams/' + id, + method: 'delete' + }) +} + +// 导出调控策略参数 +export function exportAdjustParams(query) { + return request({ + url: '/${baseUrl}/export', + method: 'get', + params: query + }) +} + +// 查询资产 +export function getAdjustAssets(query) { + return request({ + url: '/model/dcBaseStrategyAdjustParams/asset/list', + method: 'get', + params: query + }) +} \ No newline at end of file diff --git a/src/api/model/strategy/method.js b/src/api/model/strategy/method.js new file mode 100644 index 0000000..4d0c702 --- /dev/null +++ b/src/api/model/strategy/method.js @@ -0,0 +1,60 @@ +import request from '@/utils/request' + +// 查询调控方案列表 +export function listMethod(query) { + return request({ + url: '/model/dcBaseStrategyMethod/list', + method: 'get', + params: query + }) +} +// 查询调控方案列表 +export function listNoPage(query) { + return request({ + url: '/model/dcBaseStrategyMethod/listNoPage', + method: 'get', + params: query + }) +} +// 查询调控方案详细 +export function getMethod(id) { + return request({ + url: '/model/dcBaseStrategyMethod/' + id, + method: 'get' + }) +} + +// 新增调控方案 +export function addMethod(data) { + return request({ + url: '/model/dcBaseStrategyMethod', + method: 'post', + data: data + }) +} + +// 修改调控方案 +export function updateMethod(data) { + return request({ + url: '/model/dcBaseStrategyMethod', + method: 'put', + data: data + }) +} + +// 删除调控方案 +export function delMethod(id) { + return request({ + url: '/model/dcBaseStrategyMethod/' + id, + method: 'delete' + }) +} + +// 导出调控方案 +export function exportMethod(query) { + return request({ + url: '/${baseUrl}/export', + method: 'get', + params: query + }) +} \ No newline at end of file diff --git a/src/api/model/strategy/plan.js b/src/api/model/strategy/plan.js new file mode 100644 index 0000000..bdc01ca --- /dev/null +++ b/src/api/model/strategy/plan.js @@ -0,0 +1,62 @@ +import request from '@/utils/request' + +// 查询调控计划列表 +export function listPlan(query) { + return request({ + url: '/model/dcBaseStrategyPlan/list', + method: 'get', + params: query + }) +} + +// 查询调控计划详细 +export function getPlan(id) { + return request({ + url: '/model/dcBaseStrategyPlan/' + id, + method: 'get' + }) +} + +// 新增调控计划 +export function addPlan(data) { + return request({ + url: '/model/dcBaseStrategyPlan', + method: 'post', + data: data + }) +} + +// 修改调控计划 +export function updatePlan(data) { + return request({ + url: '/model/dcBaseStrategyPlan', + method: 'put', + data: data + }) +} + +// 删除调控计划 +export function delPlan(id) { + return request({ + url: '/model/dcBaseStrategyPlan/' + id, + method: 'delete' + }) +} + +// 导出调控计划 +export function exportPlan(query) { + return request({ + url: '/${baseUrl}/export', + method: 'get', + params: query + }) +} + +// 修改调控计划 +export function changeState(data) { + return request({ + url: '/model/dcBaseStrategyPlan/changeState', + method: 'put', + data: data + }) +} \ No newline at end of file diff --git a/src/views/model/asset/params.vue b/src/views/model/asset/params.vue index fb271b3..2ea1cde 100644 --- a/src/views/model/asset/params.vue +++ b/src/views/model/asset/params.vue @@ -163,7 +163,6 @@ const { queryParams, form, rules } = toRefs(data); /** 查询资产参数列表 */ function getList() { - console.log(assetCode) queryParams.value.assetCode = assetCode; loading.value = true; listParams(queryParams.value).then(response => { diff --git a/src/views/model/strategy/adjust/index.vue b/src/views/model/strategy/adjust/index.vue new file mode 100644 index 0000000..885c76c --- /dev/null +++ b/src/views/model/strategy/adjust/index.vue @@ -0,0 +1,281 @@ + + + \ No newline at end of file diff --git a/src/views/model/strategy/adjustAsset/index.vue b/src/views/model/strategy/adjustAsset/index.vue new file mode 100644 index 0000000..4f27550 --- /dev/null +++ b/src/views/model/strategy/adjustAsset/index.vue @@ -0,0 +1,275 @@ + + + diff --git a/src/views/model/strategy/adjustParams/index.vue b/src/views/model/strategy/adjustParams/index.vue new file mode 100644 index 0000000..04dbe45 --- /dev/null +++ b/src/views/model/strategy/adjustParams/index.vue @@ -0,0 +1,315 @@ + + + diff --git a/src/views/model/strategy/method/index.vue b/src/views/model/strategy/method/index.vue new file mode 100644 index 0000000..afd921a --- /dev/null +++ b/src/views/model/strategy/method/index.vue @@ -0,0 +1,248 @@ + + + \ No newline at end of file diff --git a/src/views/model/strategy/plan/index.vue b/src/views/model/strategy/plan/index.vue new file mode 100644 index 0000000..521e6da --- /dev/null +++ b/src/views/model/strategy/plan/index.vue @@ -0,0 +1,364 @@ + + + diff --git a/src/views/model/viewdesgin/desgin.vue b/src/views/model/viewdesgin/desgin.vue index 5c8ac42..4163c19 100644 --- a/src/views/model/viewdesgin/desgin.vue +++ b/src/views/model/viewdesgin/desgin.vue @@ -1,17 +1,222 @@ - diff --git a/src/views/model/viewdesgin/h.js b/src/views/model/viewdesgin/h.js index 3e544e0..ede45df 100644 --- a/src/views/model/viewdesgin/h.js +++ b/src/views/model/viewdesgin/h.js @@ -30,150 +30,3385 @@ export function getMesh() { * 2.3 例:{P00001:23,P00002:22,P00003:2222,P00004:45.8,P00005:32.6,P00006:88} * */ + // return { + // struct: { + // key: 123, + // type: "table", + // style: '', + // class: 'tw', + // items: [ + // { + // type: "tr", + // rowIndex: 0, + // items: [ + // { + // key: '0-0', + // type: "th", + // colIndex: 0, + // valueType: 0, + // value: "#", + // style: 'width: 80px', + // rowspan: 1, + // colspan: 1 + // }, + // { + // key: '0-1', + // type: "th", + // colIndex: 1, + // valueType: 0, + // value: "一供温", + // style: 'width: 100px', + // rowspan: 1, + // colspan: 1 + // }, + // { + // key: '0-2', + // type: "th", + // colIndex: 2, + // valueType: 0, + // value: "一回温", + // style: 'width: 100px', + // rowspan: 1, + // colspan: 1 + // }, + // { + // key: '0-3', + // type: "th", + // colIndex: 3, + // valueType: 0, + // value: "二供温", + // style: 'width: 100px', + // rowspan: 1, + // colspan: 1 + // }, + // ] + // }, + // { + // type: "tr", + // rowIndex: 1, + // items: [ + // { + // type: "td", + // colIndex: 0, + // key: '1-0', + // valueType: 0, + // value: "万盈大厦", + // style: '', + // rowspan: 2, + // colspan: 1 + // }, + // { + // type: "td", + // colIndex: 1, + // key: '1-1', + // valueType: 1, + // code: 'P00001', + // style: '', + // rowspan: 1, + // colspan: 1 + // }, + // { + // type: "td", + // colIndex: 2, + // key: '1-2', + // valueType: 1, + // code: "P00002", + // style: '', + // rowspan: 1, + // colspan: 1 + // }, + // { + // type: "td", + // colIndex: 3, + // key: '1-3', + // valueType: 1, + // code: "P00003", + // style: '', + // rowspan: 1, + // colspan: 1 + // } + // ] + // }, + // { + // type: "tr", + // rowIndex: 2, + // items: [ + // // { + // // type: "td", + // // colIndex: 0, + // // key: '2-0', + // // valueType: 0, + // // value: "万盈大厦", + // // style: '', + // // rowspan:1, + // // colspan:1 + // // }, + // { + // type: "td", + // colIndex: 1, + // key: '2-1', + // valueType: 1, + // code: 'P00001', + // style: '', + // rowspan: 1, + // colspan: 1 + // }, + // { + // type: "td", + // colIndex: 2, + // key: '2-2', + // valueType: 1, + // code: "P00002", + // style: '', + // rowspan: 1, + // colspan: 1 + // }, + // { + // type: "td", + // colIndex: 3, + // key: '2-3', + // valueType: 1, + // code: "P00003", + // style: '', + // rowspan: 1, + // colspan: 1 + // } + // ] + // }, + // { + // type: "tr", + // rowIndex: 3, + // style: "height:150px ;", + // items: [ + // { + // type: "td", + // colIndex: 0, + // key: '3-0', + // valueType: 0, + // value: "民丰大厦", + // style: '', + // rowspan: 1, + // colspan: 1 + // }, + // { + // type: "td", + // colIndex: 1, + // key: '3-1', + // valueType: 1, + // code: 'P00004', + // style: '', + // rowspan: 1, + // colspan: 1 + // }, + // { + // type: "td", + // colIndex: 2, + // key: '3-2', + // valueType: 2, + // rowspan: 1, + // colspan: 1, + // items: [ + // { + // type: "div", + // style: "margin-left: 3px;float: left;margin-top: 3px;", + // valueType: 1, + // code: 'P00005' + // }, + // { + // type: "span", + // class: "btn", + // valueType: 3, + // event: 'onClick', + // fun: "callfun", + // param: { + // value: 'P00005' + // } + // } + // ] + // } + // , + // { + // type: "td", + // colIndex: 3, + // key: '3-3', + // valueType: 1, + // code: "P00006", + // style: '', + // rowspan: 1, + // colspan: 1 + // } + // ] + // } + // ] + // }, + // params: { + // P00001: 0, + // P00002: 12, + // P00003: 0, + // P00004: 0, + // P00005: 0, + // P00006: 0 + // } + // } + return { - struct: { - key:123, - type:"table", - style:'', - class:'tw', - items:[ + "struct": { + "key": "report", + "type": "table", + "class": "tw", + "items": [ { - type:"tr", - rowIndex:0, - items:[ + "type": "tr", + "key": 0, + "rowIndex": 0, + "style": "height:30px", + "items": [ + { + "colIndex": 0, + "type": "th", + "key": "0-0", + "style": "width:127px;color: rgb(255, 255, 255);background-color: #b45f06;", + "valueType": 0, + "value": "换热站", + "rowspan": 2, + "colspan": 1, + "delTag": false + }, + { + "colIndex": 1, + "type": "th", + "key": "0-1", + "style": "width:96px;color: rgb(255, 255, 255);background-color: #b45f06;", + "valueType": 0, + "value": "分区", + "rowspan": 2, + "colspan": 1, + "delTag": false + }, { - type:"th", - colIndex:0, - valueType:0, - value:"#", - style:'width: 80px' + "colIndex": 2, + "type": "th", + "key": "0-2", + "style": "width:189px;color: rgb(255, 255, 255);background-color: #b45f06;text-align: center;", + "valueType": 0, + "value": "一次网", + "rowspan": 1, + "colspan": 3, + "delTag": false }, { - type:"th", - colIndex:1, - valueType:0, - value:"一供温", - style:'width: 100px' + "colIndex": 3, + "type": "th", + "key": "0-3", + "style": "width:189px;background-color: #b45f06;", + "valueType": 0, + "value": "", + "rowspan": 1, + "colspan": 1, + "delTag": true }, { - type:"th", - colIndex:2, - valueType:0, - value:"一回温", - style:'width: 100px' + "colIndex": 4, + "type": "th", + "key": "0-4", + "style": "width:189px;background-color: #b45f06;", + "valueType": 0, + "value": "", + "rowspan": 1, + "colspan": 1, + "delTag": true }, { - type:"th", - colIndex:3, - valueType:0, - value:"二供温", - style:'width: 100px' + "colIndex": 5, + "type": "th", + "key": "0-5", + "style": "width:109px;background-color: #b45f06;", + "valueType": 0, + "value": "", + "rowspan": 1, + "colspan": 1, + "delTag": false }, + { + "colIndex": 6, + "type": "th", + "key": "0-6", + "style": "width:109px;background-color: #b45f06;", + "valueType": 0, + "value": "", + "rowspan": 1, + "colspan": 1, + "delTag": false + }, + { + "colIndex": 7, + "type": "th", + "key": "0-7", + "style": "width:109px;background-color: #b45f06;", + "valueType": 0, + "value": "", + "rowspan": 1, + "colspan": 1, + "delTag": false + } ] }, { - type:"tr", - rowIndex:1, - items:[ - { - type:"td", - colIndex:0, - key:1-0, - valueType:0, - value:"万盈大厦", - style:'' - }, - { - type: "td", - colIndex: 1, - key: 1-1, - valueType: 1, - code: 'P00001', - style: '' - }, - { - type: "td", - colIndex: 2, - key: 1-2, - valueType: 1, - code: "P00002", - style: '' - }, - { - type: "td", - colIndex: 3, - key: 1-3, - valueType: 1, - code: "P00003", - style: '' + "type": "tr", + "key": 1, + "rowIndex": 1, + "style": "height:27px", + "items": [ + { + "colIndex": 0, + "type": "td", + "key": "1-0", + "style": "width:127px;background-color: #b45f06;", + "valueType": 0, + "value": "", + "rowspan": 1, + "colspan": 1, + "delTag": true + }, + { + "colIndex": 1, + "type": "td", + "key": "1-1", + "style": "width:96px;background-color: #b45f06;", + "valueType": 0, + "value": "", + "rowspan": 1, + "colspan": 1, + "delTag": true + }, + { + "colIndex": 2, + "type": "td", + "key": "1-2", + "style": "width:189px;color: rgb(255, 255, 255);background-color: #b45f06;text-align: center;", + "valueType": 0, + "value": "供压", + "rowspan": 1, + "colspan": 1, + "delTag": false + }, + { + "colIndex": 3, + "type": "td", + "key": "1-3", + "style": "width:189px;color: rgb(255, 255, 255);background-color: #b45f06;text-align: center;", + "valueType": 0, + "value": "热量", + "rowspan": 1, + "colspan": 1, + "delTag": false + }, + { + "colIndex": 4, + "type": "td", + "key": "1-4", + "style": "width:189px;color: rgb(255, 255, 255);background-color: #b45f06;text-align: center;", + "valueType": 0, + "value": "流量", + "rowspan": 1, + "colspan": 1, + "delTag": false + }, + { + "colIndex": 5, + "type": "td", + "key": "1-5", + "style": "width:109px;color: #ffffff;background-color: #b45f06;", + "valueType": 0, + "value": "阀门开度设定", + "rowspan": 1, + "colspan": 1, + "delTag": false + }, + { + "colIndex": 6, + "type": "td", + "key": "1-6", + "style": "width:109px;background-color: #b45f06;", + "valueType": 0, + "value": "", + "rowspan": 1, + "colspan": 1, + "delTag": false + }, + { + "colIndex": 7, + "type": "td", + "key": "1-7", + "style": "width:109px;background-color: #b45f06;", + "valueType": 0, + "value": "", + "rowspan": 1, + "colspan": 1, + "delTag": false } ] }, { - type: "tr", - rowIndex: 2, - style: "height:150px ;", - items: [ - { - type:"td", - colIndex:0, - key:2-1, - valueType:0, - value:"民丰大厦", - style:'' - }, - { - type:"td", - colIndex:1, - key:2-2, - valueType:1, - code:'P00004', - style:'' - }, - { - type: "td", - colIndex: 2, - key: 2-3, - valueType: 2, - items: [ + "type": "tr", + "key": 2, + "rowIndex": 2, + "style": "height:35px", + "items": [ + { + "colIndex": 0, + "type": "td", + "key": "2-0", + "style": "width:127px;color: #ff0000;", + "valueType": 4, + "value": "${资产-热源.大唐管井_C0005}", + "rowspan": 1, + "colspan": 1, + "delTag": false, + "items": [ { - type: "div", - style: "margin-left: 3px;float: left;margin-top: 3px;", - valueType: 1, - code: 'P00005' + "type": "span", + "class": "img red", + "valueType": 5 }, { - type: "div", - class: "btn", - valueType: 3, - event: 'onClick', - fun: "callfun", - param: { - value: 'P00005' + "type": "div", + "style": "margin-left: 3px;float: left;margin-top: 3px;", + "valueType": 0, + "value": "大唐管井" + } + ] + }, + { + "colIndex": 1, + "type": "td", + "key": "2-1", + "style": "width:96px;color: rgb(0, 0, 0);", + "valueType": 0, + "value": "低区", + "rowspan": 1, + "colspan": 1, + "delTag": false + }, + { + "colIndex": 2, + "type": "td", + "key": "2-2", + "style": "width:189px;color: rgb(0, 0, 255);", + "valueType": 1, + "value": "#{大唐管井.一次网供压_P0002-0}", + "rowspan": 1, + "colspan": 1, + "delTag": false, + "code": "P0002" + }, + { + "colIndex": 3, + "type": "td", + "key": "2-3", + "style": "width:189px;color: rgb(0, 0, 0);", + "valueType": 1, + "value": "#{大唐管井.一次网供温_P0001-0}", + "rowspan": 1, + "colspan": 1, + "delTag": false, + "code": "P0001" + }, + { + "colIndex": 4, + "type": "td", + "key": "2-4", + "style": "width:189px;color: rgb(0, 0, 0);", + "valueType": 1, + "value": "#{大唐管井.一次网回温_P0003-0}", + "rowspan": 1, + "colspan": 1, + "delTag": false, + "code": "P0003" + }, + { + "colIndex": 5, + "type": "td", + "key": "2-5", + "style": "width:109px;background-color: undefined;", + "valueType": 2, + "value": "#{大唐管井.阀门开度设定值_P0005-1}", + "rowspan": 1, + "colspan": 1, + "delTag": false, + "items": [ + { + "type": "div", + "style": "margin-left: 3px;float: left;margin-top: 3px;", + "valueType": 1, + "code": "P0005" + }, + { + "type": "span", + "class": "btn", + "valueType": 3, + "event": "onClick", + "fun": "callfun", + "param": { + "value": "P0005" } } ] + }, + { + "colIndex": 6, + "type": "td", + "key": "2-6", + "style": "width:109px;", + "valueType": 0, + "value": "", + "rowspan": 1, + "colspan": 1, + "delTag": false + }, + { + "colIndex": 7, + "type": "td", + "key": "2-7", + "style": "width:109px;", + "valueType": 0, + "value": "", + "rowspan": 1, + "colspan": 1, + "delTag": false + } + ] + }, + { + "type": "tr", + "key": 3, + "rowIndex": 3, + "style": "height:29px", + "items": [ + { + "colIndex": 0, + "type": "td", + "key": "3-0", + "style": "width:127px;color: rgb(255, 255, 255);background-color: rgb(61, 133, 198);", + "valueType": 0, + "value": "换热站", + "rowspan": 2, + "colspan": 1, + "delTag": false + }, + { + "colIndex": 1, + "type": "td", + "key": "3-1", + "style": "width:96px;color: rgb(255, 255, 255);background-color: rgb(61, 133, 198);", + "valueType": 0, + "value": "分区", + "rowspan": 2, + "colspan": 1, + "delTag": false + }, + { + "colIndex": 2, + "type": "td", + "key": "3-2", + "style": "width:189px;color: rgb(255, 255, 255);background-color: rgb(61, 133, 198);text-align: center;", + "valueType": 0, + "value": "一次网", + "rowspan": 1, + "colspan": 3, + "delTag": false + }, + { + "colIndex": 3, + "type": "td", + "key": "3-3", + "style": "width:189px;background-color: undefined;", + "valueType": 0, + "value": "", + "rowspan": 1, + "colspan": 1, + "delTag": true + }, + { + "colIndex": 4, + "type": "td", + "key": "3-4", + "style": "width:189px;background-color: undefined;", + "valueType": 0, + "value": "", + "rowspan": 1, + "colspan": 1, + "delTag": true + }, + { + "colIndex": 5, + "type": "td", + "key": "3-5", + "style": "width:109px;color: rgb(255, 255, 255);background-color: rgb(61, 133, 198);text-align: center;", + "valueType": 0, + "value": "二次网", + "rowspan": 1, + "colspan": 3, + "delTag": false + }, + { + "colIndex": 6, + "type": "td", + "key": "3-6", + "style": "width:109px;background-color: undefined;", + "valueType": 0, + "value": "", + "rowspan": 1, + "colspan": 1, + "delTag": true + }, + { + "colIndex": 7, + "type": "td", + "key": "3-7", + "style": "width:109px;background-color: undefined;", + "valueType": 0, + "value": "", + "rowspan": 1, + "colspan": 1, + "delTag": true + } + ] + }, + { + "type": "tr", + "key": 4, + "rowIndex": 4, + "style": "height:29px", + "items": [ + { + "colIndex": 0, + "type": "td", + "key": "4-0", + "style": "width:127px;background-color: undefined;", + "valueType": 0, + "value": "", + "rowspan": 1, + "colspan": 1, + "delTag": true + }, + { + "colIndex": 1, + "type": "td", + "key": "4-1", + "style": "width:96px;background-color: undefined;", + "valueType": 0, + "value": "", + "rowspan": 1, + "colspan": 1, + "delTag": true + }, + { + "colIndex": 2, + "type": "td", + "key": "4-2", + "style": "width:189px;color: rgb(255, 255, 255);background-color: rgb(61, 133, 198);text-align: center;", + "valueType": 0, + "value": "供压", + "rowspan": 1, + "colspan": 1, + "delTag": false + }, + { + "colIndex": 3, + "type": "td", + "key": "4-3", + "style": "width:189px;color: rgb(255, 255, 255);background-color: rgb(61, 133, 198);text-align: center;", + "valueType": 0, + "value": "供温", + "rowspan": 1, + "colspan": 1, + "delTag": false + }, + { + "colIndex": 4, + "type": "td", + "key": "4-4", + "style": "width:189px;color: rgb(255, 255, 255);background-color: rgb(61, 133, 198);text-align: center;", + "valueType": 0, + "value": "回温", + "rowspan": 1, + "colspan": 1, + "delTag": false + }, + { + "colIndex": 5, + "type": "td", + "key": "4-5", + "style": "width:109px;color: rgb(255, 255, 255);background-color: rgb(61, 133, 198);text-align: center;", + "valueType": 0, + "value": "供压", + "rowspan": 1, + "colspan": 1, + "delTag": false + }, + { + "colIndex": 6, + "type": "td", + "key": "4-6", + "style": "width:109px;color: rgb(255, 255, 255);background-color: rgb(61, 133, 198);text-align: center;", + "valueType": 0, + "value": "供温", + "rowspan": 1, + "colspan": 1, + "delTag": false + }, + { + "colIndex": 7, + "type": "td", + "key": "4-7", + "style": "width:109px;color: rgb(255, 255, 255);background-color: rgb(61, 133, 198);text-align: center;", + "valueType": 0, + "value": "回温", + "rowspan": 1, + "colspan": 1, + "delTag": false + } + ] + }, + { + "type": "tr", + "key": 5, + "rowIndex": 5, + "style": "height:32px", + "items": [ + { + "colIndex": 0, + "type": "td", + "key": "5-0", + "style": "width:127px;color: rgb(0, 0, 0);", + "valueType": 4, + "value": "${资产-换热站.圣丰2#_C0001}", + "rowspan": 2, + "colspan": 1, + "delTag": false, + "items": [ + { + "type": "span", + "class": "img red", + "valueType": 5 + }, + { + "type": "div", + "style": "margin-left: 3px;float: left;margin-top: 3px;", + "valueType": 0, + "value": "圣丰2#" + } + ] + }, + { + "colIndex": 1, + "type": "td", + "key": "5-1", + "style": "width:96px;color: rgb(0, 0, 0);", + "valueType": 0, + "value": "低区", + "rowspan": 1, + "colspan": 1, + "delTag": false + }, + { + "colIndex": 2, + "type": "td", + "key": "5-2", + "style": "width:189px;color: rgb(0, 0, 0);", + "valueType": 1, + "value": "#{圣丰2#.一次网供压_P0006-0}", + "rowspan": 1, + "colspan": 1, + "delTag": false, + "code": "P0006" + }, + { + "colIndex": 3, + "type": "td", + "key": "5-3", + "style": "width:189px;color: rgb(0, 0, 0);", + "valueType": 1, + "value": "#{圣丰2#.一次网供温_P0005-0}", + "rowspan": 1, + "colspan": 1, + "delTag": false, + "code": "P0005" + }, + { + "colIndex": 4, + "type": "td", + "key": "5-4", + "style": "width:189px;color: rgb(0, 0, 0);", + "valueType": 1, + "value": "#{圣丰2#.一次网回温_P0007-0}", + "rowspan": 1, + "colspan": 1, + "delTag": false, + "code": "P0007" + }, + { + "colIndex": 5, + "type": "td", + "key": "5-5", + "style": "width:109px;", + "valueType": 0, + "value": "", + "rowspan": 1, + "colspan": 1, + "delTag": false + }, + { + "colIndex": 6, + "type": "td", + "key": "5-6", + "style": "width:109px;", + "valueType": 0, + "value": "", + "rowspan": 1, + "colspan": 1, + "delTag": false + }, + { + "colIndex": 7, + "type": "td", + "key": "5-7", + "style": "width:109px;", + "valueType": 0, + "value": "", + "rowspan": 1, + "colspan": 1, + "delTag": false } - , - { - type:"td", - colIndex:3, - key:2-4, - valueType:1, - code:"P00006", - style:'' + ] + }, + { + "type": "tr", + "key": 6, + "rowIndex": 6, + "style": "height:20.5px", + "items": [ + { + "colIndex": 0, + "type": "td", + "key": "6-0", + "style": "width:127px;background-color: undefined;", + "valueType": 0, + "value": "", + "rowspan": 1, + "colspan": 1, + "delTag": true + }, + { + "colIndex": 1, + "type": "td", + "key": "6-1", + "style": "width:96px;background-color: undefined;", + "valueType": 0, + "value": "高区", + "rowspan": 1, + "colspan": 1, + "delTag": false + }, + { + "colIndex": 2, + "type": "td", + "key": "6-2", + "style": "width:189px;color: rgb(0, 0, 0);", + "valueType": 1, + "value": "#{圣丰2#.一次网供压_P0006-0}", + "rowspan": 1, + "colspan": 1, + "delTag": false, + "code": "P0006" + }, + { + "colIndex": 3, + "type": "td", + "key": "6-3", + "style": "width:189px;color: rgb(0, 0, 0);", + "valueType": 1, + "value": "#{圣丰2#.一次网供温_P0005-0}", + "rowspan": 1, + "colspan": 1, + "delTag": false, + "code": "P0005" + }, + { + "colIndex": 4, + "type": "td", + "key": "6-4", + "style": "width:189px;color: rgb(0, 0, 0);", + "valueType": 1, + "value": "#{圣丰2#.一次网回温_P0007-0}", + "rowspan": 1, + "colspan": 1, + "delTag": false, + "code": "P0007" + }, + { + "colIndex": 5, + "type": "td", + "key": "6-5", + "style": "width:109px;", + "valueType": 0, + "value": "", + "rowspan": 1, + "colspan": 1, + "delTag": false + }, + { + "colIndex": 6, + "type": "td", + "key": "6-6", + "style": "width:109px;", + "valueType": 0, + "value": "", + "rowspan": 1, + "colspan": 1, + "delTag": false + }, + { + "colIndex": 7, + "type": "td", + "key": "6-7", + "style": "width:109px;", + "valueType": 0, + "value": "", + "rowspan": 1, + "colspan": 1, + "delTag": false } ] } ] }, - params: { - P00001: 0, - P00002: 12, - P00003: 0, - P00004: 0, - P00005: 0, - P00006: 0 + "params": { + "P0002": 0, + "P0001": 0, + "P0003": 0, + "P0005": 0, + "P0006": 0, + "P0007": 0 } } +} + + +let data = { + "name": "report", + "color": "", + "index": 0, + "status": 1, + "order": 0, + "hide": 0, + "row": 30, + "column": 30, + "defaultRowHeight": 19, + "defaultColWidth": 73, + "celldata": [ + { + "r": 0, + "c": 0, + "v": { + "v": "换热站", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "换热站", + "bg": "#b45f06", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 1, + "vt": 0, + "mc": { + "r": 0, + "c": 0, + "rs": 2, + "cs": 1 + } + } + }, + { + "r": 0, + "c": 1, + "v": { + "v": "分区", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "分区", + "bg": "#b45f06", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 1, + "vt": 0, + "mc": { + "r": 0, + "c": 1, + "rs": 2, + "cs": 1 + } + } + }, + { + "r": 0, + "c": 2, + "v": { + "v": "一次网", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "一次网", + "bg": "#b45f06", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 0, + "vt": 0, + "mc": { + "r": 0, + "c": 2, + "rs": 1, + "cs": 3 + } + } + }, + { + "r": 0, + "c": 3, + "v": { + "mc": { + "r": 0, + "c": 2 + }, + "bg": "#b45f06" + } + }, + { + "r": 0, + "c": 4, + "v": { + "mc": { + "r": 0, + "c": 2 + }, + "bg": "#b45f06" + } + }, + { + "r": 0, + "c": 5, + "v": { + "v": null, + "bg": "#b45f06" + } + }, + { + "r": 0, + "c": 6, + "v": { + "v": null, + "bg": "#b45f06" + } + }, + { + "r": 0, + "c": 7, + "v": { + "v": null, + "bg": "#b45f06" + } + }, + { + "r": 1, + "c": 0, + "v": { + "mc": { + "r": 0, + "c": 0 + }, + "bg": "#b45f06" + } + }, + { + "r": 1, + "c": 1, + "v": { + "mc": { + "r": 0, + "c": 1 + }, + "bg": "#b45f06" + } + }, + { + "r": 1, + "c": 2, + "v": { + "v": "供压", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "供压", + "bg": "#b45f06", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 0, + "vt": 0 + } + }, + { + "r": 1, + "c": 3, + "v": { + "v": "热量", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "热量", + "bg": "#b45f06", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 0, + "vt": 0 + } + }, + { + "r": 1, + "c": 4, + "v": { + "v": "流量", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "流量", + "bg": "#b45f06", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 0, + "vt": 0 + } + }, + { + "r": 1, + "c": 5, + "v": { + "v": null, + "bg": "#b45f06" + } + }, + { + "r": 1, + "c": 6, + "v": { + "v": null, + "bg": "#b45f06" + } + }, + { + "r": 1, + "c": 7, + "v": { + "v": null, + "bg": "#b45f06" + } + }, + { + "r": 2, + "c": 0, + "v": { + "v": "大唐管井", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "大唐管井", + "bg": null, + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "#ff0000", + "ht": 1, + "vt": 0 + } + }, + { + "r": 2, + "c": 1, + "v": { + "v": "低区", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "低区", + "bg": null, + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(0, 0, 0)", + "ht": 1, + "vt": 0 + } + }, + { + "r": 2, + "c": 2, + "v": { + "v": "#{大唐管井.一次网供压_P0002}", + "ct": { + "fa": "@", + "t": "s" + }, + "m": "#{大唐管井.一次网供压_P0002}", + "bg": null, + "bl": 0, + "it": 0, + "ff": 8, + "fs": 11, + "fc": "rgb(0, 0, 255)", + "ht": 1, + "vt": 0 + } + }, + { + "r": 2, + "c": 3, + "v": { + "v": "#{大唐管井.一次网供温_P0001}", + "ct": { + "fa": "@", + "t": "s" + }, + "m": "#{大唐管井.一次网供温_P0001}", + "bg": null, + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(0, 0, 0)", + "ht": 1, + "vt": 0 + } + }, + { + "r": 2, + "c": 4, + "v": { + "v": "#{大唐管井.一次网回温_P0003}", + "ct": { + "fa": "@", + "t": "s" + }, + "m": "#{大唐管井.一次网回温_P0003}", + "bg": null, + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(0, 0, 0)", + "ht": 1, + "vt": 0 + } + }, + { + "r": 3, + "c": 0, + "v": { + "v": "换热站", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "换热站", + "bg": "rgb(61, 133, 198)", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 1, + "vt": 0, + "mc": { + "r": 3, + "c": 0, + "rs": 2, + "cs": 1 + } + } + }, + { + "r": 3, + "c": 1, + "v": { + "v": "分区", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "分区", + "bg": "rgb(61, 133, 198)", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 1, + "vt": 0, + "mc": { + "r": 3, + "c": 1, + "rs": 2, + "cs": 1 + } + } + }, + { + "r": 3, + "c": 2, + "v": { + "v": "一次网", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "一次网", + "bg": "rgb(61, 133, 198)", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 0, + "vt": 0, + "mc": { + "rs": 1, + "cs": 3, + "r": 3, + "c": 2 + } + } + }, + { + "r": 3, + "c": 3, + "v": { + "mc": { + "r": 3, + "c": 2 + } + } + }, + { + "r": 3, + "c": 4, + "v": { + "mc": { + "r": 3, + "c": 2 + } + } + }, + { + "r": 3, + "c": 5, + "v": { + "v": "二次网", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "二次网", + "bg": "rgb(61, 133, 198)", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 0, + "vt": 0, + "mc": { + "rs": 1, + "cs": 3, + "r": 3, + "c": 5 + } + } + }, + { + "r": 3, + "c": 6, + "v": { + "mc": { + "r": 3, + "c": 5 + } + } + }, + { + "r": 3, + "c": 7, + "v": { + "mc": { + "r": 3, + "c": 5 + } + } + }, + { + "r": 4, + "c": 0, + "v": { + "mc": { + "r": 3, + "c": 0 + } + } + }, + { + "r": 4, + "c": 1, + "v": { + "mc": { + "r": 3, + "c": 1 + } + } + }, + { + "r": 4, + "c": 2, + "v": { + "v": "供压", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "供压", + "bg": "rgb(61, 133, 198)", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 0, + "vt": 0 + } + }, + { + "r": 4, + "c": 3, + "v": { + "v": "供温", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "供温", + "bg": "rgb(61, 133, 198)", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 0, + "vt": 0 + } + }, + { + "r": 4, + "c": 4, + "v": { + "v": "回温", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "回温", + "bg": "rgb(61, 133, 198)", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 0, + "vt": 0 + } + }, + { + "r": 4, + "c": 5, + "v": { + "v": "供压", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "供压", + "bg": "rgb(61, 133, 198)", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 0, + "vt": 0 + } + }, + { + "r": 4, + "c": 6, + "v": { + "v": "供温", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "供温", + "bg": "rgb(61, 133, 198)", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 0, + "vt": 0 + } + }, + { + "r": 4, + "c": 7, + "v": { + "v": "回温", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "回温", + "bg": "rgb(61, 133, 198)", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 0, + "vt": 0 + } + }, + { + "r": 5, + "c": 0, + "v": { + "v": "${资产-换热站.圣丰2#_C0001}", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "${资产-换热站.圣丰2#_C0001}", + "bg": null, + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(0, 0, 0)", + "ht": 1, + "vt": 0 + } + }, + { + "r": 5, + "c": 1, + "v": { + "v": "低区", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "低区", + "bg": null, + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(0, 0, 0)", + "ht": 1, + "vt": 0 + } + }, + { + "r": 5, + "c": 2, + "v": { + "v": "#{圣丰2#.一次网供压_P0006}", + "ct": { + "fa": "@", + "t": "s" + }, + "m": "#{圣丰2#.一次网供压_P0006}", + "bg": null, + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(0, 0, 0)", + "ht": 1, + "vt": 0 + } + }, + { + "r": 5, + "c": 3, + "v": { + "v": "#{圣丰2#.一次网供温_P0005}", + "ct": { + "fa": "@", + "t": "s" + }, + "m": "#{圣丰2#.一次网供温_P0005}", + "bg": null, + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(0, 0, 0)", + "ht": 1, + "vt": 0 + } + }, + { + "r": 5, + "c": 4, + "v": { + "v": "#{圣丰2#.一次网回温_P0007}", + "ct": { + "fa": "@", + "t": "s" + }, + "m": "#{圣丰2#.一次网回温_P0007}", + "bg": null, + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(0, 0, 0)", + "ht": 1, + "vt": 0 + } + } + ], + "config": { + "merge": { + "0_0": { + "r": 0, + "c": 0, + "rs": 2, + "cs": 1 + }, + "0_1": { + "r": 0, + "c": 1, + "rs": 2, + "cs": 1 + }, + "0_2": { + "r": 0, + "c": 2, + "rs": 1, + "cs": 3 + }, + "3_2": { + "rs": 1, + "cs": 3, + "r": 3, + "c": 2 + }, + "3_0": { + "r": 3, + "c": 0, + "rs": 2, + "cs": 1 + }, + "3_1": { + "r": 3, + "c": 1, + "rs": 2, + "cs": 1 + }, + "3_5": { + "rs": 1, + "cs": 3, + "r": 3, + "c": 5 + } + }, + "rowlen": { + "0": 30, + "1": 27, + "2": 35, + "3": 29, + "4": 29, + "5": 32, + "6": 20.5, + "7": 30, + "8": 30, + "9": 30, + "10": 30, + "11": 30, + "12": 30, + "13": 30, + "14": 30, + "15": 30, + "16": 30, + "17": 30, + "18": 30, + "19": 30, + "20": 30, + "21": 30, + "22": 30, + "23": 30, + "24": 30, + "25": 30, + "26": 30, + "27": 30 + }, + "columnlen": { + "0": 96, + "1": 96, + "2": 189, + "3": 189, + "4": 189, + "5": 109, + "6": 109, + "7": 109, + "8": 96, + "9": 96, + "10": 96, + "11": 96, + "12": 96, + "13": 96, + "14": 96 + }, + "rowhidden": {}, + "colhidden": {}, + "borderInfo": {}, + "authority": {}, + "customHeight": { + "0": 1, + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1 + }, + "customWidth": { + "0": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1 + } + }, + "scrollLeft": 0, + "scrollTop": 0, + "luckysheet_select_save": [ + { + "left": 384, + "width": 189, + "top": 365, + "height": 30, + "left_move": 384, + "width_move": 189, + "top_move": 365, + "height_move": 30, + "row": [ + 12, + 12 + ], + "column": [ + 3, + 3 + ], + "row_focus": 12, + "column_focus": 3 + } + ], + "calcChain": [], + "isPivotTable": false, + "pivotTable": {}, + "filter_select": null, + "filter": null, + "luckysheet_alternateformat_save": [], + "luckysheet_alternateformat_save_modelCustom": [], + "luckysheet_conditionformat_save": [], + "frozen": {}, + "chart": [], + "zoomRatio": 1, + "image": [], + "showGridLines": 1, + "dataVerification": {}, + "jfgird_select_save": [], + "data": [ + [ + { + "v": "换热站", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "换热站", + "bg": "#b45f06", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 1, + "vt": 0, + "mc": { + "r": 0, + "c": 0, + "rs": 2, + "cs": 1 + } + }, + { + "v": "分区", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "分区", + "bg": "#b45f06", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 1, + "vt": 0, + "mc": { + "r": 0, + "c": 1, + "rs": 2, + "cs": 1 + } + }, + { + "v": "一次网", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "一次网", + "bg": "#b45f06", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 0, + "vt": 0, + "mc": { + "r": 0, + "c": 2, + "rs": 1, + "cs": 3 + } + }, + { + "mc": { + "r": 0, + "c": 2 + }, + "bg": "#b45f06" + }, + { + "mc": { + "r": 0, + "c": 2 + }, + "bg": "#b45f06" + }, + { + "v": null, + "bg": "#b45f06" + }, + { + "v": null, + "bg": "#b45f06" + }, + { + "v": null, + "bg": "#b45f06" + }, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + { + "mc": { + "r": 0, + "c": 0 + }, + "bg": "#b45f06" + }, + { + "mc": { + "r": 0, + "c": 1 + }, + "bg": "#b45f06" + }, + { + "v": "供压", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "供压", + "bg": "#b45f06", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 0, + "vt": 0 + }, + { + "v": "热量", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "热量", + "bg": "#b45f06", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 0, + "vt": 0 + }, + { + "v": "流量", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "流量", + "bg": "#b45f06", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 0, + "vt": 0 + }, + { + "v": null, + "bg": "#b45f06" + }, + { + "v": null, + "bg": "#b45f06" + }, + { + "v": null, + "bg": "#b45f06" + }, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + { + "v": "大唐管井", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "大唐管井", + "bg": null, + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "#ff0000", + "ht": 1, + "vt": 0 + }, + { + "v": "低区", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "低区", + "bg": null, + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(0, 0, 0)", + "ht": 1, + "vt": 0 + }, + { + "v": "#{大唐管井.一次网供压_P0002}", + "ct": { + "fa": "@", + "t": "s" + }, + "m": "#{大唐管井.一次网供压_P0002}", + "bg": null, + "bl": 0, + "it": 0, + "ff": 8, + "fs": 11, + "fc": "rgb(0, 0, 255)", + "ht": 1, + "vt": 0 + }, + { + "v": "#{大唐管井.一次网供温_P0001}", + "ct": { + "fa": "@", + "t": "s" + }, + "m": "#{大唐管井.一次网供温_P0001}", + "bg": null, + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(0, 0, 0)", + "ht": 1, + "vt": 0 + }, + { + "v": "#{大唐管井.一次网回温_P0003}", + "ct": { + "fa": "@", + "t": "s" + }, + "m": "#{大唐管井.一次网回温_P0003}", + "bg": null, + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(0, 0, 0)", + "ht": 1, + "vt": 0 + }, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + { + "v": "换热站", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "换热站", + "bg": "rgb(61, 133, 198)", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 1, + "vt": 0, + "mc": { + "r": 3, + "c": 0, + "rs": 2, + "cs": 1 + } + }, + { + "v": "分区", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "分区", + "bg": "rgb(61, 133, 198)", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 1, + "vt": 0, + "mc": { + "r": 3, + "c": 1, + "rs": 2, + "cs": 1 + } + }, + { + "v": "一次网", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "一次网", + "bg": "rgb(61, 133, 198)", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 0, + "vt": 0, + "mc": { + "rs": 1, + "cs": 3, + "r": 3, + "c": 2 + } + }, + { + "mc": { + "r": 3, + "c": 2 + } + }, + { + "mc": { + "r": 3, + "c": 2 + } + }, + { + "v": "二次网", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "二次网", + "bg": "rgb(61, 133, 198)", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 0, + "vt": 0, + "mc": { + "rs": 1, + "cs": 3, + "r": 3, + "c": 5 + } + }, + { + "mc": { + "r": 3, + "c": 5 + } + }, + { + "mc": { + "r": 3, + "c": 5 + } + }, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + { + "mc": { + "r": 3, + "c": 0 + } + }, + { + "mc": { + "r": 3, + "c": 1 + } + }, + { + "v": "供压", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "供压", + "bg": "rgb(61, 133, 198)", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 0, + "vt": 0 + }, + { + "v": "供温", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "供温", + "bg": "rgb(61, 133, 198)", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 0, + "vt": 0 + }, + { + "v": "回温", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "回温", + "bg": "rgb(61, 133, 198)", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 0, + "vt": 0 + }, + { + "v": "供压", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "供压", + "bg": "rgb(61, 133, 198)", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 0, + "vt": 0 + }, + { + "v": "供温", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "供温", + "bg": "rgb(61, 133, 198)", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 0, + "vt": 0 + }, + { + "v": "回温", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "回温", + "bg": "rgb(61, 133, 198)", + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(255, 255, 255)", + "ht": 0, + "vt": 0 + }, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + { + "v": "圣丰2#", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "圣丰2#", + "bg": null, + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(0, 0, 0)", + "ht": 1, + "vt": 0 + }, + { + "v": "低区", + "ct": { + "fa": "General", + "t": "g" + }, + "m": "低区", + "bg": null, + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(0, 0, 0)", + "ht": 1, + "vt": 0 + }, + { + "v": "#{圣丰2#.一次网供压_P0006}", + "ct": { + "fa": "@", + "t": "s" + }, + "m": "#{圣丰2#.一次网供压_P0006}", + "bg": null, + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(0, 0, 0)", + "ht": 1, + "vt": 0 + }, + { + "v": "#{圣丰2#.一次网供温_P0005}", + "ct": { + "fa": "@", + "t": "s" + }, + "m": "#{圣丰2#.一次网供温_P0005}", + "bg": null, + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(0, 0, 0)", + "ht": 1, + "vt": 0 + }, + { + "v": "#{圣丰2#.一次网回温_P0007}", + "ct": { + "fa": "@", + "t": "s" + }, + "m": "#{圣丰2#.一次网回温_P0007}", + "bg": null, + "bl": 0, + "it": 0, + "ff": 5, + "fs": 11, + "fc": "rgb(0, 0, 0)", + "ht": 1, + "vt": 0 + }, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ], + [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null + ] + ], + "visibledatarow": [ + 31, + 59, + 95, + 125, + 155, + 188, + 210, + 241, + 272, + 303, + 334, + 365, + 396, + 427, + 458, + 489, + 520, + 551, + 582, + 613, + 644, + 675, + 706, + 737, + 768, + 799, + 830, + 861, + 881, + 901 + ], + "visibledatacolumn": [ + 97, + 194, + 384, + 574, + 764, + 874, + 984, + 1094, + 1191, + 1288, + 1385, + 1482, + 1579, + 1676, + 1773, + 1847, + 1921, + 1995, + 2069, + 2143, + 2217, + 2291, + 2365, + 2439, + 2513, + 2587, + 2661, + 2735, + 2809, + 2883 + ], + "ch_width": 3003, + "rh_height": 981, + "luckysheet_selection_range": [], + "images": {}, + "hyperlink": {}, + "dynamicArray": [] } \ No newline at end of file diff --git a/src/views/model/viewdesgin/index.vue b/src/views/model/viewdesgin/index.vue new file mode 100644 index 0000000..e1b4eb9 --- /dev/null +++ b/src/views/model/viewdesgin/index.vue @@ -0,0 +1,172 @@ + + + + + \ No newline at end of file From 6a66b6e4bbd09d98e71cb74709ad0fcf65663062 Mon Sep 17 00:00:00 2001 From: eric777 Date: Fri, 26 Jan 2024 16:56:38 +0800 Subject: [PATCH 3/3] =?UTF-8?q?jiahan.wu=20[cr]=20=E8=AE=BE=E5=A4=87?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E5=AF=BC=E5=85=A5=E6=A8=A1=E5=9D=97=E9=9C=80?= =?UTF-8?q?=E6=B1=82=E5=8F=98=E6=9B=B4=201.=E6=9C=8D=E5=8A=A1=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E7=94=B1=E6=96=87=E6=9C=AC=E6=A1=86=E8=B0=83=E6=95=B4?= =?UTF-8?q?=E4=B8=BA=E4=B8=8B=E6=8B=89=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/model/tbserverinfo.js | 8 ++++ src/views/model/deviceImportInfo/index.vue | 54 ++++++++++++++++------ 2 files changed, 49 insertions(+), 13 deletions(-) diff --git a/src/api/model/tbserverinfo.js b/src/api/model/tbserverinfo.js index 2c8cb1d..d48bb80 100644 --- a/src/api/model/tbserverinfo.js +++ b/src/api/model/tbserverinfo.js @@ -50,4 +50,12 @@ export function exportTbserverinfo(query) { method: 'get', params: query }) +} + +// 查询TB服务信息 +export function queryTbserverinfoList() { + return request({ + url: '/model/dcBusiServerinfo/select/list', + method: 'get' + }) } \ No newline at end of file diff --git a/src/views/model/deviceImportInfo/index.vue b/src/views/model/deviceImportInfo/index.vue index 86b7001..0d05e97 100644 --- a/src/views/model/deviceImportInfo/index.vue +++ b/src/views/model/deviceImportInfo/index.vue @@ -11,7 +11,7 @@ @@ -22,13 +22,17 @@ @keyup.enter="handleQuery" /> - - + + + + 搜索 @@ -63,7 +67,7 @@ - + @@ -105,8 +109,17 @@ - - + + + + @@ -155,6 +168,7 @@