|
|
@ -42,7 +42,7 @@ function OperationReport() { |
|
|
|
operator_id: "0", //商户 |
|
|
|
name: "", //停车场名称 |
|
|
|
park_type: "", //车场类型 1=路内 2=路外 |
|
|
|
operator_status: "", //商用状态(1为待上线,2为商用,3为试运营,4为下线) |
|
|
|
operator_status: [0], //商用状态(1为待上线,2为商用,3为试运营,4为下线) |
|
|
|
area: [5910983100858368], |
|
|
|
date_type: "1", |
|
|
|
is_excel: 0, |
|
|
@ -531,7 +531,10 @@ function OperationReport() { |
|
|
|
//获取页面显示数据 |
|
|
|
const getData = (data) => { |
|
|
|
setLoading(false); |
|
|
|
ajax.ElectInvoice.getOperationReport({ ...data }).then( |
|
|
|
ajax.ElectInvoice.getOperationReport({ |
|
|
|
...data, |
|
|
|
area: data?.area?.length ? data?.area[data.area.length - 1] : "", |
|
|
|
}).then( |
|
|
|
(res) => { |
|
|
|
if (parseInt(res?.status) === 20000) { |
|
|
|
setRoadata(res?.data?.total); |
|
|
@ -774,6 +777,8 @@ function OperationReport() { |
|
|
|
style={{ |
|
|
|
width: "100%", |
|
|
|
}} |
|
|
|
mode="multiple" |
|
|
|
maxTagCount={2} |
|
|
|
placeholder="请选择" |
|
|
|
options={sysConfig.operatorStatus} |
|
|
|
onChange={(e) => |
|
|
@ -823,7 +828,7 @@ function OperationReport() { |
|
|
|
</Tooltip> |
|
|
|
</span> |
|
|
|
<p className="money"> |
|
|
|
{Roadata[ele.value]} |
|
|
|
{Roadata[ele.value] || 0} |
|
|
|
<span>元</span> |
|
|
|
</p> |
|
|
|
</div> |
|
|
@ -866,7 +871,7 @@ function OperationReport() { |
|
|
|
)} |
|
|
|
</span> |
|
|
|
<p className="money"> |
|
|
|
{Roadata[ele.value]} |
|
|
|
{Roadata[ele.value] || 0} |
|
|
|
<span>元</span> |
|
|
|
</p> |
|
|
|
</div> |
|
|
@ -897,7 +902,7 @@ function OperationReport() { |
|
|
|
)} |
|
|
|
</span> |
|
|
|
<p className="money"> |
|
|
|
{Roadata[ele.value]} |
|
|
|
{Roadata[ele.valuet] || 0} |
|
|
|
<span>元</span> |
|
|
|
</p> |
|
|
|
</div> |
|
|
|