Browse Source

fix():修改计费规则管理详情查看

tags/PMS_Frontend_v1.0.6-develop
xingjx 1 year ago
parent
commit
04d695dd78
  1. 2
      src/pages/OutRoadMgm/OutSegmentMgm/ChargeRulesMgm/AddModal.jsx
  2. 2
      src/pages/OutRoadMgm/OutSegmentMgm/ChargeRulesMgm/Detail.jsx

2
src/pages/OutRoadMgm/OutSegmentMgm/ChargeRulesMgm/AddModal.jsx

@ -264,7 +264,7 @@ function AddModal(props) {
</Button>
</div>
<Divider />
{effectiveDateList.map((item, index) => {
{effectiveDateList?.map((item, index) => {
return (
<EffectiveDate
disable={item.status === "disable"}

2
src/pages/OutRoadMgm/OutSegmentMgm/ChargeRulesMgm/Detail.jsx

@ -85,7 +85,7 @@ function Detail(props) {
</Descriptions>
<Divider />
{effectiveDateList &&
effectiveDateList.map((item, index) => {
effectiveDateList?.map((item, index) => {
console.log(item);
return <EffectiveDetail record={item} key={index} />;
})}

Loading…
Cancel
Save