Commit 9e3d634f5c3053e4690583ef288d843229467868

Authored by 莫红玲
1 parent 9998e7e7

活动报名费支持变更

src/pages/mkt/ActivityCreate/ExternalPromotion/components/ActivityFlow/SignUp.tsx
... ... @@ -56,6 +56,8 @@ export default function index() {
56 56 // pa.awardConfigs.
57 57 }
58 58 changePa.joinLimitNum = pa.joinLimitNum;
  59 + changePa.signUpPrice = pa.signUpPrice;
  60 + changePa.saleOrderAmount = pa.saleOrderAmount;
59 61 changePa.awardConfigs = pa.awardConfigs;
60 62 changePa.activityNo = activityNo;
61 63 }
... ... @@ -141,7 +143,7 @@ export default function index() {
141 143 precision={2}
142 144 addonAfter="元"
143 145 style={{ width: "100%" }}
144   - disabled={readOnly}
  146 + disabled={readOnly && !changeEnable}
145 147 />
146 148 </Form.Item>
147 149 {bizType === 2 && (
... ... @@ -161,7 +163,7 @@ export default function index() {
161 163 precision={2}
162 164 addonAfter="元"
163 165 style={{ width: "100%" }}
164   - disabled={readOnly}
  166 + disabled={readOnly && !changeEnable}
165 167 />
166 168 </Form.Item>
167 169 )}
... ...