Commit 392aa7d830ea3b58d9b29361efbefc5385a58134

Authored by 莫红玲
1 parent a417e109

fix(coupon): 优惠券支持可叠加修改

src/pages/coupon/CouponConfig/components/FullReduce.tsx
... ... @@ -155,7 +155,7 @@ export default function FullReduce({ info, readonly, form, getCouponType, confNo
155 155 )}
156 156 {/* 全部默认不叠加false,立减券允许修改类型 */}
157 157 <Form.Item label="可与其他同类型优惠券叠加使用" name="superimposed" >
158   - <Radio.Group disabled={readonly || !!confNo || info.discountsType != 1}>
  158 + <Radio.Group disabled={readonly || info.discountsType != 1}>
159 159 <Radio key={1} value={true}>可叠加</Radio>
160 160 <Radio key={0} value={false}>不可叠加</Radio>
161 161 </Radio.Group>
... ...