Browse Source

fix(): 解决导出问题

tags/PMS_V1.0.0_Alpha7
chenqiang 1 year ago
parent
commit
a7930c054c
  1. 4
      src/pages/DataAnalysisPrediction/EquipmentAly/EquipmentRunningStat/loadable.jsx
  2. 4
      src/pages/DataAnalysisPrediction/MemberStat/ParkingAly/loadable.jsx
  3. 4
      src/pages/DataAnalysisPrediction/MemberStat/PayAly/loadable.jsx
  4. 4
      src/pages/DataAnalysisPrediction/MemberStat/RegisterAly/loadable.jsx

4
src/pages/DataAnalysisPrediction/EquipmentAly/EquipmentRunningStat/loadable.jsx

@ -712,7 +712,7 @@ function ExceptionParkReport() {
<p>
共查询到<span> {Data?.total || 0}</span>条数据
</p>
{Data?.total && (
{Data?.total ? (
<ExportBtnNew
children={
<Button className="export-btn" size="medium" type="primary">
@ -732,6 +732,8 @@ function ExceptionParkReport() {
}}
imgno={false}
/>
) : (
""
)}
</div>
<ResultFlow

4
src/pages/DataAnalysisPrediction/MemberStat/ParkingAly/loadable.jsx

@ -603,7 +603,7 @@ function ParkingAly() {
<p>
共查询到<span> {Data?.total || 0}</span>条数据
</p>
{Data?.total && (
{Data?.total ? (
<ExportBtnNew
children={
<Button className="export-btn" size="medium" type="primary">
@ -623,6 +623,8 @@ function ParkingAly() {
}}
imgno={false}
/>
) : (
""
)}
</div>
<ResultFlow

4
src/pages/DataAnalysisPrediction/MemberStat/PayAly/loadable.jsx

@ -986,7 +986,7 @@ function PayAly() {
<p>
共查询到<span> {Data?.total || 0}</span>条数据
</p>
{Data?.total && (
{Data?.total ? (
<ExportBtnNew
children={
<Button className="export-btn" size="medium" type="primary">
@ -1003,7 +1003,7 @@ function PayAly() {
isTableModule={true}
onOk={ReportPaySummaryReport}
/>
)}
):""}
</div>
<ResultFlow
hasLoad={true}

4
src/pages/DataAnalysisPrediction/MemberStat/RegisterAly/loadable.jsx

@ -809,7 +809,7 @@ function RegisterAly() {
<p>
共查询到<span> {Data?.total || 0}</span>条数据
</p>
{Data?.total && (
{Data?.total ? (
<ExportBtnNew
children={
<Button className="export-btn" size="medium" type="primary">
@ -826,7 +826,7 @@ function RegisterAly() {
isTableModule={true}
onOk={ReportPaySummaryReport}
/>
)}
):""}
</div>
<ResultFlow
hasLoad={true}

Loading…
Cancel
Save