From e1aedb6f6f124db2a3f785fec76923640c6feefc Mon Sep 17 00:00:00 2001 From: liuye Date: Mon, 26 Dec 2022 16:16:10 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E4=BA=91=E5=B9=BF=E6=92=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/AppBroadcast/selectEquipment.vue | 2 +- src/project/qianxinan/AppPointsRanking/AppPointsRanking.vue | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/apps/AppBroadcast/selectEquipment.vue b/src/apps/AppBroadcast/selectEquipment.vue index 02192b3b..0e64176b 100644 --- a/src/apps/AppBroadcast/selectEquipment.vue +++ b/src/apps/AppBroadcast/selectEquipment.vue @@ -58,7 +58,7 @@ export default { methods: { areaSelect(e) { this.areaId = e - // this.getList() + this.getList() }, getList() { this.$http.post(`/app/appdlbquipment/list?current=1&size=1000&name=${this.keyword}&devStatus=5&areaId=${this.areaId}`).then((res) => { diff --git a/src/project/qianxinan/AppPointsRanking/AppPointsRanking.vue b/src/project/qianxinan/AppPointsRanking/AppPointsRanking.vue index ea2e6133..9b6cf43c 100644 --- a/src/project/qianxinan/AppPointsRanking/AppPointsRanking.vue +++ b/src/project/qianxinan/AppPointsRanking/AppPointsRanking.vue @@ -44,13 +44,13 @@ currentTabs: 0, tabList: [ { - name: '待管理', + name: '总排行', }, { - name: '管理中', + name: '县局排行', }, { - name: '已解除', + name: '派出所排行', }, ], barStyle: { From 0792277ebdcba0bdeb7c30c8fef4ce191d694074 Mon Sep 17 00:00:00 2001 From: liuye Date: Mon, 26 Dec 2022 16:18:43 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E5=88=A0=E9=99=A4=E5=88=86=E9=A1=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/AppBroadcast/selectEquipment.vue | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/apps/AppBroadcast/selectEquipment.vue b/src/apps/AppBroadcast/selectEquipment.vue index 0e64176b..02cafd36 100644 --- a/src/apps/AppBroadcast/selectEquipment.vue +++ b/src/apps/AppBroadcast/selectEquipment.vue @@ -66,11 +66,12 @@ export default { res.data.records.map(item => { item.isCheck = false }) - if (this.current > 1) { - this.list = [...this.list, ...res.data.records] - } else { - this.list = res.data.records - } + this.list = res.data.records + // if (this.current > 1) { + // this.list = [...this.list, ...res.data.records] + // } else { + // this.list = res.data.records + // } } }) },