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

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

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

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

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

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

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

Loading…
Cancel
Save