Commit d75d1caf authored by Bill's avatar Bill

fix: 修改活动页价格bug

parent 75635388
......@@ -239,7 +239,7 @@ function useGetLayout() {
const props = _row.key === 'top' ? {
imageUrl: currentProps.imageUrl
} : {
visible: currentProps.visible || true,
visible: currentProps.visible ?? true,
theme: currentProps.theme || 0,
title: currentProps.title,
};
......
......@@ -93,7 +93,7 @@ const columns: ColumnsType<GoodListType[0]> = [
render: (_text, _record) => {
return (
<div className={styles.priceInfo}>
<span>{_record.activityPrice}</span>
<span>{_record.activityPrice || _record.plummetPrice}</span>
<span className={styles.unit}>({_record.unit})</span>
</div>
);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment