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