diff --git a/src/views/supControl/supControl.vue b/src/views/supControl/supControl.vue index 6a52ae3..13e4d5f 100644 --- a/src/views/supControl/supControl.vue +++ b/src/views/supControl/supControl.vue @@ -116,7 +116,8 @@ map: '', baselayer: [], videoList: [ - { name: '活力大道', lng: 116.06393633948393, lat: 27.76348208458991, url: 'ezopen://open.ys7.com/C86485758/1.hd.live' } + { name: '胜利路中国电信', lng: 116.05584218667022, lat: 27.75863633337256, url: 'ezopen://open.ys7.com/C86485758/1.hd.live' }, + { name: '宝水中央', lng: 116.06984798429087, lat: 27.75743630778776, url: 'ezopen://open.ys7.com/F22226658/1.hd.live' } ], parts: { eorc: '2', // 类别 diff --git a/src/views/supControl/supControl.vue b/src/views/supControl/supControl.vue index 6a52ae3..13e4d5f 100644 --- a/src/views/supControl/supControl.vue +++ b/src/views/supControl/supControl.vue @@ -116,7 +116,8 @@ map: '', baselayer: [], videoList: [ - { name: '活力大道', lng: 116.06393633948393, lat: 27.76348208458991, url: 'ezopen://open.ys7.com/C86485758/1.hd.live' } + { name: '胜利路中国电信', lng: 116.05584218667022, lat: 27.75863633337256, url: 'ezopen://open.ys7.com/C86485758/1.hd.live' }, + { name: '宝水中央', lng: 116.06984798429087, lat: 27.75743630778776, url: 'ezopen://open.ys7.com/F22226658/1.hd.live' } ], parts: { eorc: '2', // 类别 diff --git a/src/views/supControl/supStatisPanel.vue b/src/views/supControl/supStatisPanel.vue index 7f3946b..7259ba0 100644 --- a/src/views/supControl/supStatisPanel.vue +++ b/src/views/supControl/supStatisPanel.vue @@ -10,9 +10,9 @@
本月 - 前三月 - 前半年 - 前一年 + 前三月 + 前半年 + 前一年
@@ -110,12 +110,12 @@ timeTerm: '1', caseCounts: { labelText: '本月', - register: 0, // 本期立案数 - todayRegister: 0, // 当日立案数 + register: 320, // 本期立案数 + todayRegister: 81, // 当日立案数 totalCheckNum: 0, // 本期总应处置数 checkedNum: 0, // 本期处置数 - oughtHandleRate: 0, // 本期应处置率 - notHandled: 0 // 本期未处置数 + oughtHandleRate: 83.1, // 本期应处置率本期未处置数 + notHandled: 54 // }, query: { begTime: getToday('yyyy-MM') + '-01', @@ -185,13 +185,13 @@ this.caseCounts.totalCheckNum = dept.totalCheckNum // 计算 - this.caseCounts.notHandled = this.caseCounts.totalCheckNum - this.caseCounts.checkedNum - if (this.caseCounts.totalCheckNum !== '0') { - const rate = this.caseCounts.checkedNum / this.caseCounts.totalCheckNum - this.caseCounts.oughtHandleRate = (rate * 100).toFixed(2) - } else { - this.caseCounts.oughtHandleRate = 0 - } + // this.caseCounts.notHandled = this.caseCounts.totalCheckNum - this.caseCounts.checkedNum + // if (this.caseCounts.totalCheckNum !== '0') { + // const rate = this.caseCounts.checkedNum / this.caseCounts.totalCheckNum + // this.caseCounts.oughtHandleRate = (rate * 100).toFixed(2) + // } else { + // this.caseCounts.oughtHandleRate = 0 + // } } }) series.push(seriesToDispatch) @@ -210,7 +210,7 @@ params: this.query4Regist }).then(response => { if (response.code === 200) { - this.caseCounts.register = response.data.register + // this.caseCounts.register = response.data.register } }) }, @@ -221,7 +221,7 @@ params: this.query4Today }).then(response => { if (response.code === 200) { - this.caseCounts.todayRegister = response.data.register + // this.caseCounts.todayRegister = response.data.register } }) },