|
@ -539,6 +539,7 @@ function UserInfo() { |
|
|
setDetailVisible(true); |
|
|
setDetailVisible(true); |
|
|
} |
|
|
} |
|
|
function changeKey(key) { |
|
|
function changeKey(key) { |
|
|
|
|
|
setResultData([]) |
|
|
setTabKey(key); |
|
|
setTabKey(key); |
|
|
} |
|
|
} |
|
|
//历史处理详情 |
|
|
//历史处理详情 |
|
@ -602,7 +603,7 @@ function UserInfo() { |
|
|
ajax({//绑定认证 |
|
|
ajax({//绑定认证 |
|
|
url: "/api/ope/user/get_bind_car", |
|
|
url: "/api/ope/user/get_bind_car", |
|
|
type: "get", |
|
|
type: "get", |
|
|
data: { memberId: e.memberId }, |
|
|
|
|
|
|
|
|
data: { memberId: e?.memberId||memberId }, |
|
|
}).then((res) => { |
|
|
}).then((res) => { |
|
|
let { status, data, total } = res |
|
|
let { status, data, total } = res |
|
|
if (status == 20000) { |
|
|
if (status == 20000) { |
|
@ -669,10 +670,11 @@ function UserInfo() { |
|
|
if (status == 20000) { |
|
|
if (status == 20000) { |
|
|
if (data.list) { |
|
|
if (data.list) { |
|
|
setResultData(data.list) |
|
|
setResultData(data.list) |
|
|
|
|
|
setTotal(data.total) |
|
|
} else { |
|
|
} else { |
|
|
setResultData(data) |
|
|
setResultData(data) |
|
|
|
|
|
setTotal(total) |
|
|
} |
|
|
} |
|
|
//setTotal(total) |
|
|
|
|
|
} else { |
|
|
} else { |
|
|
setResultData([]) |
|
|
setResultData([]) |
|
|
message.error(res.message) |
|
|
message.error(res.message) |
|
@ -864,7 +866,7 @@ function UserInfo() { |
|
|
<div className="ltc-box-title"><div className="ltc-icon"></div>绑定认证</div> |
|
|
<div className="ltc-box-title"><div className="ltc-icon"></div>绑定认证</div> |
|
|
<div className="ltc-content"> |
|
|
<div className="ltc-content"> |
|
|
{ |
|
|
{ |
|
|
baseData.bingCar ? |
|
|
|
|
|
|
|
|
baseData.bindCar ? |
|
|
bindData.map((e, index) => { |
|
|
bindData.map((e, index) => { |
|
|
return <div className="ltc-item ltc-item-bind"> |
|
|
return <div className="ltc-item ltc-item-bind"> |
|
|
<div className="new-item">所属车辆-{index + 1}</div><div className="new-value"><a>{e.plate_color}:{e.plate_number}</a></div> |
|
|
<div className="new-item">所属车辆-{index + 1}</div><div className="new-value"><a>{e.plate_color}:{e.plate_number}</a></div> |
|
@ -1151,7 +1153,7 @@ function UserInfo() { |
|
|
> |
|
|
> |
|
|
<div> |
|
|
<div> |
|
|
<div className="eae-modal-item"> |
|
|
<div className="eae-modal-item"> |
|
|
<img src={bigPic} width={1550} /> |
|
|
|
|
|
|
|
|
<img src={bigPic} width={1500} /> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</Modal> |
|
|
</Modal> |
|
|