diff --git a/src/components/Pagination/index.vue b/src/components/Pagination/index.vue index deaed731..fe00b2a8 100644 --- a/src/components/Pagination/index.vue +++ b/src/components/Pagination/index.vue @@ -7,7 +7,7 @@ :layout="layout" :page-sizes="pageSizes" :pager-count="pagerCount" - :total="total" + :total="Number(total)" v-bind="$attrs" @size-change="handleSizeChange" @current-change="handleCurrentChange" diff --git a/src/views/projectFront/epidemicPrevention/passingData.vue b/src/views/projectFront/epidemicPrevention/passingData.vue index 114938f0..166ed872 100644 --- a/src/views/projectFront/epidemicPrevention/passingData.vue +++ b/src/views/projectFront/epidemicPrevention/passingData.vue @@ -50,7 +50,7 @@
-

绿码人数

+

健康码人数

昌通码绿码人数

{{ statisticalData.greenCodeNum }}

@@ -419,7 +419,7 @@ export default { containLabel: true, }, legend: { - data: ["昌通码绿码人数", "异常码人数", "进入人数", "外出人数"], + data: ["健康码人数", "异常码人数", "进入人数", "外出人数"], bottom: "-1%", }, xAxis: [ @@ -464,7 +464,7 @@ export default { ], series: [ { - name: "昌通码绿码人数", + name: "健康码人数", type: "bar", barWidth: 30, //柱图宽度 itemStyle: { diff --git a/src/views/projectFront/projectSummary/panoramaPlan.vue b/src/views/projectFront/projectSummary/panoramaPlan.vue index c8a0b5b9..a0359fe9 100644 --- a/src/views/projectFront/projectSummary/panoramaPlan.vue +++ b/src/views/projectFront/projectSummary/panoramaPlan.vue @@ -90,7 +90,7 @@ :page-sizes="$store.state.PAGESIZRS" :page-size="pageSize" layout="total, sizes, prev, pager, next" - :total="total" + :total="Number(total)" background >
diff --git a/src/views/projectFront/safeManage/v2/checkStandingBook.vue b/src/views/projectFront/safeManage/v2/checkStandingBook.vue index 98b05cae..237d08cd 100644 --- a/src/views/projectFront/safeManage/v2/checkStandingBook.vue +++ b/src/views/projectFront/safeManage/v2/checkStandingBook.vue @@ -180,7 +180,7 @@ :page-sizes="$store.state.PAGESIZRS" :page-size="searchForm.pageSize" layout="total, sizes, prev, pager, next" - :total="pageTotal" + :total="Number(pageTotal)" > @@ -575,22 +575,22 @@